@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700;900&display=swap');

/* ─────────────────────────────────────────────────────────────────── */
/* RESET & VARIABLES                                                    */
/* ─────────────────────────────────────────────────────────────────── */

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

:root {
    /* Colors */
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #3b82f6;
    --accent-dark: #1d4ed8;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gold: #f59e0b;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Spacing */
    --spacing: 1rem;

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.6;
    font-size: 16px;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ─────────────────────────────────────────────────────────────────── */
/* NAVBAR                                                               */
/* ─────────────────────────────────────────────────────────────────── */

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: bold;
}

.brand-highlight {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────────── */
/* MAIN CONTENT WRAPPER                                                 */
/* ─────────────────────────────────────────────────────────────────── */

.main-content-wrapper {
    min-height: 100vh;
    padding-top: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─────────────────────────────────────────────────────────────────── */
/* HERO SEARCH SECTION                                                  */
/* ─────────────────────────────────────────────────────────────────── */

.hero-search {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 4rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideDown 0.6s ease;
}

.badge-icon {
    font-size: 1.1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: slideDown 0.8s ease 0.1s backwards;
}

.highlight {
    background: linear-gradient(120deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: slideDown 0.8s ease 0.2s backwards;
}

/* ─────────────────────────────────────────────────────────────────── */
/* SEARCH CONTAINER                                                     */
/* ─────────────────────────────────────────────────────────────────── */

.search-container {
    animation: slideDown 0.8s ease 0.3s backwards;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.search-icon {
    font-size: 1.3rem;
    margin: 0 0.75rem;
}

.massive-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 0.75rem;
    font-size: 1rem;
    color: var(--primary);
}

.massive-search-input::placeholder {
    color: var(--gray-400);
}

.search-button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.search-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────────── */
/* FILTER SECTION                                                       */
/* ─────────────────────────────────────────────────────────────────── */

.filter-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    text-align: left;
}

.filter-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

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

.cat-icon {
    font-size: 1.1rem;
}

.clear-btn {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
}

.clear-btn:hover {
    background: rgba(239, 68, 68, 0.5);
}

/* ─────────────────────────────────────────────────────────────────── */
/* COMMON SEARCHES                                                      */
/* ─────────────────────────────────────────────────────────────────── */

.common-searches {
    text-align: center;
}

.common-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.search-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.search-chip {
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-chip:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ─────────────────────────────────────────────────────────────────── */
/* REVIEWS SECTION                                                      */
/* ─────────────────────────────────────────────────────────────────── */

.reviews-section {
    padding: 3rem 1.5rem;
    background: var(--gray-50);
}

.reviews-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .sidebar {
        order: -1;
    }
}

.feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.feed-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.active-filter {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────────── */
/* REVIEW CARD                                                          */
/* ─────────────────────────────────────────────────────────────────── */

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star {
    color: var(--gold);
    font-size: 1.1rem;
}

.star.empty {
    color: var(--gray-300);
}

.rating-value {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ─────────────────────────────────────────────────────────────────── */
/* REVIEW CONTENT                                                       */
/* ─────────────────────────────────────────────────────────────────── */

.review-content {
    margin-bottom: 1rem;
}

.review-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.review-text {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.review-meta-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.company-product {
    font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────────── */
/* REVIEW ACTIONS                                                       */
/* ─────────────────────────────────────────────────────────────────── */

.review-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.action-btn {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    color: var(--gray-600);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: var(--gray-100);
    border-color: var(--accent);
    color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────────── */
/* NO RESULTS & PLACEHOLDER                                             */
/* ─────────────────────────────────────────────────────────────────── */

.no-results-state,
.placeholder-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
}

.no-results-icon,
.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.no-results-state h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.no-results-state p,
.placeholder-state p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* ─────────────────────────────────────────────────────────────────── */
/* SIDEBAR & WIDGETS                                                    */
/* ─────────────────────────────────────────────────────────────────── */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.widget {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.widget h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* ─────────────────────────────────────────────────────────────────── */
/* REQUEST HELP WIDGET                                                  */
/* ─────────────────────────────────────────────────────────────────── */

.request-help-widget {
    background: linear-gradient(135deg, var(--accent), #1d4ed8);
    color: var(--white);
    border: none;
}

.widget-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.request-help-widget h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.request-help-widget p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-request-help {
    width: 100%;
    padding: 0.75rem;
    background: var(--white);
    color: var(--accent);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-request-help:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ─────────────────────────────────────────────────────────────────── */
/* STATS WIDGET                                                         */
/* ─────────────────────────────────────────────────────────────────── */

.stats-widget {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem 0;
    border-top: 1px solid var(--gray-200);
}

.stat-item:first-child {
    border-top: none;
    padding-top: 0;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────────── */
/* TRUST WIDGET                                                         */
/* ─────────────────────────────────────────────────────────────────── */

.trust-features {
    list-style: none;
}

.trust-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-features span {
    color: var(--success);
    font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────────── */
/* HOW SECTION                                                          */
/* ─────────────────────────────────────────────────────────────────── */

.how-section {
    padding: 4rem 1.5rem;
    background: var(--white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.how-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.how-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.how-step {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.how-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.how-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.how-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────────── */
/* CTA SECTION                                                          */
/* ─────────────────────────────────────────────────────────────────── */

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 4rem 1.5rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* ─────────────────────────────────────────────────────────────────── */
/* BUTTONS                                                              */
/* ─────────────────────────────────────────────────────────────────── */

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gray-200);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--gray-300);
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────────── */
/* MODAL                                                                */
/* ─────────────────────────────────────────────────────────────────── */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: var(--primary);
}

.modal-body {
    padding: 1.5rem;
}

.modal-intro {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ─────────────────────────────────────────────────────────────────── */
/* FORMS                                                                */
/* ─────────────────────────────────────────────────────────────────── */

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--primary);
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 1.5rem;
}

.modal-actions button {
    flex: 1;
}

.message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    border-left: 4px solid var(--success);
}

.message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border-left: 4px solid var(--error);
}

/* ─────────────────────────────────────────────────────────────────── */
/* RESPONSIVE                                                           */
/* ─────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .search-wrapper {
        flex-wrap: wrap;
    }

    .massive-search-input {
        width: 100%;
    }

    .category-buttons {
        justify-content: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
    }

    .modal-content {
        border-radius: var(--radius-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────────────── */
/* UTILITY CLASSES                                                      */
/* ─────────────────────────────────────────────────────────────────── */

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}
