/* Mobile-first CSS for Pizza Directory */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --secondary: #2a9d8f;
    --dark: #1d3557;
    --light: #f1faee;
    --gray: #6c757d;
    --success: #2ecc71;
    --warning: #f1c40f;
    --danger: #e74c3c;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.header-logo {
    width: 160px;
    height: 160px;
    max-width: 160px;
    max-height: 160px;
    object-fit: contain;
    border-radius: 10px;
    margin: 0 auto 6px;
    display: block;
}

.header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tagline {
    font-size: 14px;
    opacity: 0.9;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
}

.location-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.btn-find-nearby {
    background: white;
    color: #667eea;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-find-nearby:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-find-nearby:active:not(:disabled) {
    transform: translateY(0);
}

.btn-find-nearby:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.location-status {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.search-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.search-bar input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    transition: border-color 0.3s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-bar button {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0 16px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button:active {
    background: var(--primary-dark);
}

.filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    color: var(--dark);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.shop-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.shop-card:active {
    transform: scale(0.98);
    background: #f8f9fa;
}

.shop-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.shop-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.shop-address {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--light);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.rating-badge.high { background: #d4edda; color: #155724; }
.rating-badge.medium { background: #fff3cd; color: #856404; }
.rating-badge.low { background: #f8d7da; color: #721c24; }

.review-count {
    font-size: 12px;
    color: var(--gray);
}

.tomato-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.tomato-score {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.tomato-icon {
    font-size: 20px;
}

.shop-card-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.distance-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #e3f2fd;
    color: #1565c0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.website-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f3e5f5;
    color: #7b1fa2;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.website-badge a {
    color: #7b1fa2;
    text-decoration: none;
    transition: color 0.2s;
}

.website-badge a:hover {
    color: #9c27b0;
    text-decoration: underline;
}

.shop-preview {
    font-size: 14px;
    color: var(--gray);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.loading {
    text-align: center;
    padding: 40px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    border: 4px solid #e9ecef;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.no-results {
    text-align: center;
    padding: 40px 20px;
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 16px;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin-top: 40px;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f8f9fa;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.shop-detail-header {
    background: linear-gradient(135deg, var(--dark) 0%, #2d4a7c 100%);
    color: white;
    padding: 24px 16px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.shop-detail-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.shop-detail-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
}

.shop-detail-distance {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.shop-detail-info {
    padding: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.info-item a {
    text-decoration: none;
    word-break: break-all;
}

.info-item a:hover {
    text-decoration: underline;
}

.info-icon {
    font-size: 18px;
    min-width: 24px;
}

.reviews-section {
    padding: 0 20px 20px;
}

.reviews-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.review-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-user {
    font-weight: 600;
    font-size: 14px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.rating-form {
    padding: 0 20px 20px;
    background: #f8f9fa;
    margin: 0 16px 16px;
    border-radius: 12px;
    padding: 16px;
}

.rating-form-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.star-rating {
    display: flex;
    gap: 4px;
    font-size: 32px;
    cursor: pointer;
}

.star-rating .star {
    color: #e9ecef;
    transition: color 0.2s;
}

.star-rating .star.active {
    color: var(--warning);
}

.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn-submit:active {
    background: var(--primary-dark);
}

.btn-cancel {
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn-cancel:active {
    background: #5a6268;
}

/* Photo Upload Form */
.upload-form {
    padding: 24px;
}

.upload-form h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.upload-form input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 2px dashed #e9ecef;
    border-radius: 10px;
    margin-bottom: 16px;
    cursor: pointer;
    background: white;
}

.upload-form input[type="file"]::-webkit-file-upload-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* Photos Section */
.photos-section {
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.photos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.photos-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.btn-upload-photo {
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-upload-photo:active {
    background: #218c7e;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #f8f9fa;
}

.photo-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.photo-actions {
    display: flex;
    justify-content: space-around;
    padding: 8px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.photo-rating-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.photo-rating-btn:active {
    transform: scale(0.95);
    background: #e9ecef;
}

.photo-rating-btn .rating-count {
    color: var(--gray);
    font-weight: 600;
}

/* Shop Card Photo */
.shop-card-photo {
    width: 100%;
    height: 150px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    margin: -16px -16px 12px -16px;
    background: #f8f9fa;
}

.shop-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile optimizations for photos */
@media (max-width: 480px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .photo-item img {
        height: 120px;
    }

    .photo-rating-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

    .photos-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-upload-photo {
        width: 100%;
    }
}

/* Responsive improvements */
@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .shop-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .header-logo {
        width: 160px;
        height: 160px;
        max-width: 160px;
        max-height: 160px;
    }

    .header h1 {
        font-size: 32px;
    }
}

@media (max-width: 374px) {
    .header-logo {
        width: 160px;
        height: 160px;
        max-width: 160px;
        max-height: 160px;
    }

    .header h1 {
        font-size: 24px;
    }
}

/* Admin Button Styles */
.header-buttons {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-content {
    position: relative;
}

.btn-admin-login {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-admin-login:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.btn-admin-login.admin-logged-in {
    background: rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.8);
}

/* Add Shop Button */
.btn-add-shop {
    background: rgba(46, 204, 113, 0.2);
    border: 2px solid rgba(46, 204, 113, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: none;
}

.btn-add-shop:hover {
    background: rgba(46, 204, 113, 0.3);
    border-color: rgba(46, 204, 113, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

/* Admin Login Modal */
.admin-login-form {
    padding: 24px;
    max-width: 400px;
    margin: 0 auto;
}

.admin-login-form h2 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary);
}

/* Add Shop Form */
.add-shop-form {
    padding: 24px;
    max-width: 500px;
    margin: 0 auto;
}

.add-shop-form h2 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.add-shop-form .form-group {
    margin-bottom: 16px;
}

.add-shop-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.add-shop-form .form-group label span {
    color: var(--danger);
}

.add-shop-form .form-group input,
.add-shop-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.add-shop-form .form-group input:focus,
.add-shop-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.add-shop-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.add-shop-form .form-group input[type="number"] {
    -moz-appearance: textfield;
}

.add-shop-form .form-group input[type="number"]::-webkit-inner-spin-button,
.add-shop-form .form-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-shop-form .btn-submit {
    background: var(--success);
    border: none;
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.add-shop-form .btn-submit:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.add-shop-form .btn-submit:active {
    transform: translateY(0);
}

.add-shop-form .btn-cancel {
    background: #6c757d;
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.add-shop-form .btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* GPS coordinates helper text */
.add-shop-form .form-group p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin: 8px 0 0;
}

/* Delete Shop Button */
.btn-delete-shop {
    background: var(--danger);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-delete-shop:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.shop-admin-actions {
    margin-top: 12px;
    text-align: center;
}

/* Delete Review Button */
.btn-delete-review {
    background: var(--danger);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.btn-delete-review:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Shop Admin Section - at bottom of modal */
.shop-admin-section {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 0 16px 20px;
}

.admin-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-admin-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

@media (min-width: 768px) {
    .shop-admin-buttons {
        flex-direction: row;
    }
}

.btn-edit-shop-full {
    background: var(--warning);
    color: var(--dark);
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-edit-shop-full:hover {
    background: #f39c12;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.4);
}

.btn-edit-shop-full:active {
    transform: translateY(0);
    box-shadow: var(--shadow);
}

.btn-delete-shop-full {
    background: var(--danger);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-delete-shop-full:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-delete-shop-full:active {
    transform: translateY(0);
    box-shadow: var(--shadow);
}

/* Shop Detail Header - Simplified since delete button moved */
.shop-detail-header-content {
    /* Flex layout removed - no longer needed as delete button is repositioned */
}

/* Edit Shop Form */
.edit-shop-form {
    padding: 24px;
    max-width: 500px;
    margin: 0 auto;
}

.edit-shop-form h2 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--warning);
    font-size: 24px;
    font-weight: 700;
}

.edit-shop-form .form-group {
    margin-bottom: 16px;
}

.edit-shop-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.edit-shop-form .form-group label span {
    color: var(--danger);
}

.edit-shop-form .form-group input,
.edit-shop-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.edit-shop-form .form-group input:focus,
.edit-shop-form .form-group textarea:focus {
    outline: none;
    border-color: var(--warning);
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.1);
}

.edit-shop-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.edit-shop-form .form-group input[type="number"] {
    -moz-appearance: textfield;
}

.edit-shop-form .form-group input[type="number"]::-webkit-inner-spin-button,
.edit-shop-form .form-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.edit-shop-form .btn-submit {
    background: var(--warning);
    border: none;
    color: var(--dark);
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.edit-shop-form .btn-submit:hover {
    background: #f39c12;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.edit-shop-form .btn-submit:active {
    transform: translateY(0);
}

.edit-shop-form .btn-cancel {
    background: #6c757d;
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.edit-shop-form .btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* GPS coordinates helper text */
.edit-shop-form .form-group p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin: 8px 0 0;
}

@media (max-width: 600px) {
    .btn-delete-shop {
        width: 100%;
    }
}
