.modal-no-scroll {
    overflow: hidden !important;
}

/* v999: Force vertical badge stacking by overriding absolute defaults */
.stacked-badges-helper {
    position: absolute !important;
    top: 12px !important; /* v1005: Increased from 8px to prevent clipping */
    left: 12px !important; /* v1005: Increased from 8px to prevent clipping */
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important; /* v1005: Increased gap for better definition */
}
.stacked-badges-helper .tier-badge,
.stacked-badges-helper .status-badge-inline,
.stacked-badges-helper .status-indicator {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
    padding: 3px 10px !important; /* Slightly larger padding */
    font-size: 0.75rem !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important; /* Added shadow for better contrast */
}

/* v1005: Specific fix for Spotlight Carousel Overlap */
.carousel-spotlight-item .stacked-badges-helper {
    top: 16px !important;
    left: 16px !important;
}

/* v1006: Position badges correctly in business modal to avoid overlap */
.modal-image-container .stacked-badges-helper {
    top: 25px !important;
}

/* ===== CSS Variables & Reset ===== */
:root {
    /* Primary Colors - Mediterranean inspired */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;

    /* Secondary Colors */
    --secondary: #0ea5e9;
    --secondary-dark: #0284c7;

    /* Accent Colors - Cyprus sunset inspired */
    --accent: #f59e0b;
    --accent-light: #fbbf24;

    /* Neutral Colors */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #1e293b;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --white: #ffffff;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
    /* Mediterranean Deep Sea v3.0 */
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-sunset: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-ocean: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #111827 50%, #000000 100%);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 250ms ease;
    --transition-slow: 350ms ease;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #fcfdfe;
    /* v271: Mediterranean Pearl */
    background-image:
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.02) 0px, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    overflow-x: hidden;
    background-attachment: fixed;
}

/* Ambient Background Blobs (v271) */
.ambient-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: blobFloat 30s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    left: -100px;
}

.blob-2 {
    width: 700px;
    height: 700px;
    background: var(--secondary);
    bottom: -250px;
    right: -150px;
    animation-delay: -7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: 40%;
    left: 30%;
    animation-delay: -15s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -70px) scale(1.2);
    }

    66% {
        transform: translate(-40px, 40px) scale(0.8);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.full-width {
    width: 100%;
}

/* ===== Button Styles ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

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

.btn-gradient {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

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

.btn-social {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-300);
    font-size: 1.25rem;
    color: var(--gray-700);
}

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

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-sunset);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.logo-highlight {
    color: var(--primary);
}

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

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--gray-700);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.mobile-menu-content {
    background: var(--white);
    padding: 1.5rem;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--gray-200);
}


.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
}


/* Menu Open State */
body.menu-open {
    overflow: hidden;
}



.mobile-link {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 1.5rem 60px;
    /* overflow: hidden; // v708: Removed to allow suggestions dropdown to overflow hero */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #1e1b4b, #312e81, #4338ca, #3730a3, #1e1b4b);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.4) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    animation: glowPulse 8s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(1px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
}

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: 5%;
    left: -50px;
    animation-delay: -7s;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent 70%);
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 35%;
    right: 10%;
    animation-delay: -14s;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(40px, -40px) rotate(5deg) scale(1.05);
    }

    50% {
        transform: translate(-30px, 30px) rotate(-5deg) scale(0.95);
    }

    75% {
        transform: translate(30px, 40px) rotate(3deg) scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Search Box */
.search-container {
    margin-bottom: 3rem;
    position: relative;
    /* v707: Ensure suggestions anchor correctly */
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    box-shadow: var(--shadow-xl);
    max-width: 1000px;
    margin: 0 auto;
    gap: 0.5rem;
    flex-wrap: nowrap;
    /* v171: Force single row */
}

.search-input-group {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    /* v171: Allow flex shrink */
    padding: 0.75rem 1rem;
    position: relative;
    /* v708: Anchor for suggestions */
}

.search-icon,
.location-icon {
    font-size: 1.25rem;
    color: var(--gray-400);
}

.location-group {
    border-left: 1px solid var(--gray-200);
    padding: 0 0.5rem 0 0.75rem;
    flex: 0 0 165px;
    /* v809: More compact */
    display: flex;
    align-items: center;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

/* v813: Removing broken legacy rule that caused syntax error */

/* v812: Modern Pill Selector */
#citySelect {
    border: 1px solid transparent;
    border-radius: 8px;
    outline: none;
    background-color: var(--gray-50);
    padding: 8px 32px 8px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1rem;
    transition: all 0.2s ease;
}

#citySelect:hover {
    background-color: var(--gray-100);
    color: var(--primary);
}

.location-group {
    border-left: none;
    /* Removed border */
    padding: 0 0.5rem;
    flex: 0 0 170px;
}

/* v707: Search Suggestions Styling */
.search-suggestions {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    width: 100%;
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    /* v715: Smaller padding */
    gap: 0.75rem;
    cursor: pointer;
    transition: background var(--transition-fast);
    border-bottom: 1px solid var(--gray-100);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--gray-100);
}

.suggestion-item i {
    font-size: 1rem;
    /* v716 */
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.suggestion-info {
    display: flex;
    flex-direction: column;
}

.suggestion-text {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.875rem;
    /* v716: Smaller text */
}

.suggestion-type {
    font-size: 0.7rem;
    /* v716: Smaller type */
    color: var(--gray-500);
    text-transform: capitalize;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--gray-800);
}

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

.search-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

.location-select {
    border: none;
    outline: none;
    background: transparent;
    color: var(--gray-700);
    font-size: 1rem;
    cursor: pointer;
    min-width: 120px;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.85rem 1.25rem;
    /* v170: Reduced padding to fit better */
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Search Suggestions Autocomplete */
.search-container {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

.search-suggestions.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    transition: background var(--transition);
    border-bottom: 1px solid var(--gray-100);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--gray-50);
}

.suggestion-item i {
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.suggestion-info {
    display: flex;
    flex-direction: column;
}

.suggestion-text {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9375rem;
}

.suggestion-type {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* Quick Categories */
.quick-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.quick-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.quick-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.875rem;
    transition: all var(--transition);
}

.quick-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Steps - How It Works */
.hero-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.4));
    border-radius: 50%;
    color: white;
    font-size: 1rem;
}

.step-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.step-text strong {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
}

.step-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.step-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .hero-steps {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .hero-step {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Section Styling ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Categories Section ===== */
.categories-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.03), transparent);
    pointer-events: none;
}

.categories-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem;
}

/* Force parent category cards to be visible */
.parent-category {
    display: flex !important;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    /* Increased padding */
    cursor: pointer;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    border: none;
    box-shadow: var(--shadow-md);
    min-height: 140px;
}

.parent-category::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.parent-category>* {
    position: relative;
    z-index: 2;
}

.parent-category .category-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(5px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.parent-category h3 {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.parent-category p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.parent-category h3 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.parent-category .expand-icon {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

/* Children container - hidden until expanded */
.children-container {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
    padding: 0 1rem 1rem 1rem;
}

.children-container.expanded {
    display: grid !important;
}

/* Child Categories - Professional Pill Style */
/* Parent Container for Child Categories */
.children-container {
    display: flex !important;
    flex-wrap: wrap !important;
    /* CRITICAL: Allow wrapping */
    gap: 0.75rem;
    /* Space between items */
    justify-content: flex-start;
    margin-top: 1rem;
    width: 100%;
    /* Start hidden until expanded */
    display: none !important;
}

.children-container.expanded {
    display: flex !important;
}

.child-category {
    background: white;
    padding: 0.75rem 1.25rem;
    /* More padding */
    border-radius: 50px;
    /* Full rounded/pill shape */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Very subtle shadow */
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-direction: row;
    /* Horizontal layout */
    border: 1px solid #e2e8f0;
    cursor: pointer;
    min-width: fit-content;
    /* Allow fitting content */
    max-width: 100%;
    /* Flexible */
    justify-content: flex-start;
    flex: 0 0 auto;
    /* Don't shrink */
    padding: 0.5rem 1.25rem 0.5rem 0.5rem;
    /* v183: Tight left padding for avatar look */
}

.child-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
    background: #f8fafc;
}

.child-category:active {
    transform: translateY(0);
}

/* Icon style (fallback) */
.child-category i {
    font-size: 1.1rem;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 50%;
    transition: all 0.3s ease;
    filter: none;
    flex-shrink: 0;
}

/* Image style (new) */
.child-category img.child-img-avatar {
    width: 80px !important;
    /* v187: Forcing Size */
    height: 80px !important;
    min-width: 80px !important;
    /* Force min-width too */
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    margin: 0;
    /* v183: Reset margin */
}

.child-category:hover i {
    transform: none;
    background: #6366f1;
    color: white;
}

.child-category h4 {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 700;
    margin: 0;
    white-space: normal;
    /* Allow text to wrap! */
    overflow: visible;
    /* Show it! */
    text-overflow: clip;
    /* No dots! */
    letter-spacing: -0.01em;
    line-height: 1.2;
    /* Tight line height for wrapped text */
}

.child-category:hover h4 {
    color: #4f46e5;
}


.category-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

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

.category-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--white);
    transition: transform var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.375rem;
}

.category-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== Featured Section ===== */
.featured-section {
    padding: 0.5rem 0 1rem 0;
    background: transparent;
    position: relative;
}

#featured .section-header {
    margin-bottom: 0.5rem;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background-image: radial-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.filter-tab:hover {
    background: var(--gray-100);
}

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

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.business-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.business-image {
    position: relative;
    width: 100%;
    height: 140px;
    background: #f8fafc;
    overflow: hidden;
}


.business-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8fafc;
    transition: transform var(--transition-slow);
}

.business-card:hover .business-image img {
    transform: scale(1.1);
}

.business-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.business-favorite {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition);
}

.business-favorite:hover,
.business-favorite.active {
    color: var(--error);
}

.business-content {
    padding: 1rem;
    /* Reduced from 1.5rem */
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.business-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.business-name {
    font-size: 0.95rem;
    /* Reduced from 1.1rem */
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.2rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    /* Clamp to 1 line for compactness */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
}


.business-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.business-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
    margin-top: 0.35rem;
    height: 1.5rem;
    /* Reduced to 1 line of tags */
    overflow: hidden;
    align-content: flex-start;
}


.tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(99, 102, 241, 0.05);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
}

.business-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
}

.business-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.easy-score {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.score-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: var(--success);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.score-badge i {
    font-size: 0.75rem;
}

.score-reviews {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.business-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    transition: all var(--transition);
}

.action-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* ===== EasyFix Section ===== */
.easyfix-section {
    padding: 6rem 0;
    background: var(--gray-100);
}

.easyfix-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 4rem;
    overflow: hidden;
    position: relative;
}

.easyfix-content {
    color: var(--white);
}

.easyfix-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-sunset);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.easyfix-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.easyfix-content p {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 400px;
}

.easyfix-image {
    position: relative;
    height: 300px;
}

.professional-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.pro-card {
    position: absolute;
    background: var(--white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    animation: float 6s infinite ease-in-out;
}

.pro-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.pro-card span {
    font-weight: 600;
    color: var(--dark);
}

.pro-card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.pro-card-2 {
    top: 40%;
    right: 10%;
    animation-delay: -2s;
}

.pro-card-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: -4s;
}

/* ===== Cities Section ===== */
.cities-section {
    padding: 6rem 0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
}

.city-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition);
}

.city-card:hover {
    transform: scale(1.02);
}

.city-card.city-large {
    grid-column: span 2;
    grid-row: span 2;
}

.city-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.city-card:hover .city-bg {
    transform: scale(1.1);
}

.city-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
}

.city-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.city-content p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.city-tag {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ===== About Section ===== */
.about-section {
    padding: 6rem 0;
    background: var(--gray-100);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-content>p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--dark);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    padding: 2rem 1.25rem;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.preview-header i {
    color: var(--accent);
}

.preview-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.preview-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.preview-card {
    height: 80px;
    background: linear-gradient(90deg, var(--gray-200) 0%, var(--gray-100) 100%);
    border-radius: var(--radius-md);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 6rem 0;
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.author-info h4 {
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-rating {
    margin-left: auto;
    color: var(--accent);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 6rem 0;
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
    color: var(--white);
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-card p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9375rem;
    max-width: 280px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-400);
    padding: 0.375rem 0;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-400);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===== Modal Styles ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0;
    /* v270: We use internal padding for cleaner scroll */
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-content.modal-large {
    max-width: 600px;
}

.modal-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-close:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 38px;
        height: 38px;
    }
}

.modal-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.modal-content>p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray-600);
}

.form-footer a {
    color: var(--primary);
    font-weight: 500;
}

.social-login {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.social-login p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.time-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.time-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.time-option input {
    width: auto;
}

.time-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

/* ===== Business Detail Modal ===== */
.business-detail-header {
    position: relative;
    height: 200px;
    margin: -2.5rem -2.5rem 0;
    background: var(--gray-200);
    overflow: hidden;
}

.business-detail-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-detail-body {
    padding-top: 1.5rem;
}

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

.business-detail-title h2 {
    margin-bottom: 0;
}

.business-detail-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.info-item i {
    color: var(--primary);
}

.business-detail-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.business-detail-description {
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 3000;
}

.toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast i {
    color: var(--success);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }

    .city-card.city-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .search-box {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .search-divider {
        width: 100%;
        height: 1px;
    }

    .search-btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .easyfix-card {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }

    .easyfix-image {
        display: none;
    }

    .cities-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .city-card,
    .city-card.city-large {
        grid-column: span 1;
        grid-row: span 1;
        height: 160px;
    }

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

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 100px 1rem 40px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .quick-categories {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .category-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 1.25rem;
    }

    .category-icon {
        width: 56px;
        height: 56px;
        margin: 0 1rem 0 0;
        font-size: 1.5rem;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== Cymply Specific Styles ===== */

/* Logo CY Icon */
.logo-cy {
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: -0.05em;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--accent);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cat-tab {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-300);
    transition: all var(--transition);
}

.cat-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cat-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* View All Container */
.view-all-container {
    text-align: center;
    margin-top: 2.5rem;
}

/* EasyFix Stats */
.easyfix-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.ef-stat strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.ef-stat span {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Pro Card Additional */
.pro-card-4 {
    top: 65%;
    left: 5%;
    animation-delay: -3s;
}

.pro-card small {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-left: auto;
}

/* Business Section */
.business-section {
    padding: 6rem 0;
}

.business-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.business-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.business-content>p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.business-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.biz-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.biz-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.biz-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.biz-feature p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.business-cta {
    display: flex;
    gap: 1rem;
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 400px;
}

.dash-header {
    background: var(--gray-100);
    padding: 1rem 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.dash-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dash-dot.red {
    background: #ef4444;
}

.dash-dot.yellow {
    background: #f59e0b;
}

.dash-dot.green {
    background: #22c55e;
}

.dash-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dash-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.dash-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.dash-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    flex: 1;
}

.dash-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.dash-change.up {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

/* Preview Logo */
.preview-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-sunset);
    border-radius: 4px;
    color: white;
    font-size: 0.625rem;
    font-weight: 800;
    margin-right: 0.5rem;
}

/* CTA Stats */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.cta-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Form Note */
.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

.form-note i {
    color: var(--success);
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .business-grid-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .business-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .category-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .cat-tab {
        white-space: nowrap;
    }

    .business-features {
        grid-template-columns: 1fr;
    }

    .business-cta {
        flex-direction: column;
    }

    .easyfix-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-item {
        flex: 1 1 40%;
    }
}

/* ===== Tier Badges ===== */
.tier-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.tier-badge.tier-premium {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

.tier-badge.tier-basic {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.tier-badge.tier-free {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Master override to prevent badges from collapsing their text nodes on mobile */
.tier-badge span,
.modal-tier-badge span {
    display: inline !important;
}

/* Premium card highlight */
.business-card.tier-premium {
    border: 2px solid #f97316;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
}

.business-card.tier-premium:hover {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.25);
}

/* Basic card highlight */
.business-card.tier-basic {
    border: 2px solid #6366f1;
}

/* Modal tier badges */
.modal-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.modal-tier-badge.premium {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.modal-tier-badge.basic {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

.modal-tier-badge.free {
    background: #10b981;
    color: white;
}

/* CTA buttons for Basic/Premium tiers */
.tier-cta-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.tier-cta-btn {
    flex: 1;
    min-width: 100px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.tier-cta-btn.whatsapp {
    background: #25d366;
    color: white;
}

.tier-cta-btn.book {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

.tier-cta-btn.order {
    background: #f97316;
    color: white;
}

.tier-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== Status Indicators ===== */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.status-indicator.open {
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-indicator.closed {
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-indicator.small {
    position: absolute;
    top: 8px;
    left: 8px;
    right: auto;
    z-index: 20;
    background: white;
    padding: 2px 6px;
    font-size: 0.65rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.open .status-dot {
    background-color: var(--success);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-indicator.closed .status-dot {
    background-color: var(--error);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* ===== Spotlight Carousel ===== */
.carousel-spotlight-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 420px;
    position: relative;
    perspective: 1000px;
}


.carousel-spotlight-item {
    position: absolute;
    width: 60%;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8) translateX(0);
}

.carousel-spotlight-item.spotlight-center {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
    border: 2px solid var(--primary);
}

.carousel-spotlight-item.spotlight-left {
    opacity: 0.6;
    transform: scale(0.85) translateX(-60%);
    z-index: 5;
    filter: grayscale(40%);
}

.carousel-spotlight-item.spotlight-right {
    opacity: 0.6;
    transform: scale(0.85) translateX(60%);
    z-index: 5;
    filter: grayscale(40%);
}

.carousel-spotlight-item.spotlight-hidden {
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

.spotlight-image-container {
    height: 180px;
    width: 100%;
    position: relative;
    overflow: visible;
}

.spotlight-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8fafc;
}

.spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* Status indicator in carousel should always be visible */
.carousel-spotlight-item .status-indicator.small {
    position: absolute;
    top: 8px;
    left: 8px;
    right: auto;
    z-index: 30;
    padding: 2px 6px;
    font-size: 0.6rem;
}

.spotlight-info {
    padding: 0.75rem 1rem;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-info h4 {
    margin: 0;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.spotlight-info p {
    margin: 0.2rem 0 0;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotlight-info p:last-child {
    color: var(--gray-500);
    font-size: 0.75rem;
}

/* ===== Carousel Spotlight Styles ===== */
.carousel-spotlight-container {
    position: relative;
    height: 420px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    margin: 2rem 0;
}


.carousel-spotlight-item {
    position: absolute;
    width: 60%;
    max-width: 400px;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    transform: scale(0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: white;
    pointer-events: none;
}

.carousel-spotlight-item.spotlight-center {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 10;
    pointer-events: auto;
}

.carousel-spotlight-item.spotlight-left {
    opacity: 0.6;
    transform: scale(0.85) translateX(-70%);
    z-index: 5;
    pointer-events: auto;
}

.carousel-spotlight-item.spotlight-right {
    opacity: 0.6;
    transform: scale(0.85) translateX(70%);
    z-index: 5;
    pointer-events: auto;
}

.carousel-spotlight-item.spotlight-hidden {
    opacity: 0;
    z-index: 0;
}

.spotlight-image-container {
    height: 180px;
    position: relative;
}

.spotlight-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-info {
    padding: 1rem;
    text-align: center;
}

.spotlight-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1e293b;
}

.spotlight-info p {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: #64748b;
}

/* ===== FIXES FOR USER REQUEST ===== */

/* 1. Child Category Images - Bigger & Rounded */
.child-img-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
    border: 2px solid var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.child-category {
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    /* Adjusted padding to accommodate bigger image */
    display: flex;
    align-items: center;
}

/* 2. Carousel Image Visibility Fix */
.spotlight-image-container {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.spotlight-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
}

/* 3. Modal Image Fix (If using img tag) */
.modal-image-container {
    height: 300px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #f1f5f9;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ===== Child Category Image Fix (Larger & Clearer) ===== */
.child-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform var(--transition);
    padding: 0.5rem;
    border-radius: var(--radius-md);
}

.child-category:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.child-img-avatar {
    width: 70px !important;
    /* Increased */
    height: 70px !important;
    /* Increased */
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--white);
    transition: all var(--transition);
}

.child-category:hover .child-img-avatar {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.child-category span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    line-height: 1.2;
}

/* ===== Cookie Banner (GDPR) ===== */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    background: #fef3c7;
    color: #d97706;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-text h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
    }
}

/* ===== v820: Modern Custom Dropdown ===== */
.custom-dropdown-container {
    position: relative;
    width: 220px;
    /* v821: Reduced width */
    font-family: 'Inter', sans-serif;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Space between text and chevron */
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    /* Light gray border */
    border-radius: 12px;
    /* Smooth rounded corners */
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    /* Subtle depth */
    user-select: none;
}

.dropdown-trigger:hover {
    border-color: var(--primary);
    /* Highlight on hover */
    background: #f8fafc;
}

.dropdown-trigger .selected-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-trigger i.fa-chevron-down {
    color: #94a3b8;
    font-size: 0.8rem;
    transition: transform 0.2s ease;
    margin-left: 10px;
}

/* Active State */
.custom-dropdown-container.active .dropdown-trigger {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    /* Focus ring */
}

.custom-dropdown-container.active .dropdown-trigger i.fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    min-width: 220px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 6px;
    z-index: 100;
    /* Above search button */

    /* v821: Fix "Too Long" Issue */
    max-height: 350px;
    overflow-y: auto;

    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-dropdown-container.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Groups & Items */
.dropdown-group-label {
    padding: 8px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.05em;
    margin-top: 4px;
    margin-bottom: 2px;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.dropdown-item i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    /* Color defined inline in HTML or falls back to inherited */
    transition: transform 0.15s ease;
}

.dropdown-item:hover {
    background: #f1f5f9;
    color: var(--primary);
}

.dropdown-item:hover i {
    color: var(--primary);
}

.dropdown-item.selected {
    background: #ecfdf5;
    /* Light green bg */
    color: var(--primary);
    font-weight: 600;
}

.dropdown-item.selected i {
    color: var(--primary);
}