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

        :root {
            /* Brand Colors */
            --dusk-blue: #224e7d;
            --air-force-blue: #4f93b3;
            --amber-gold: #fdbf31;
            --pumpkin-spice: #fd721d;
            --blushed-brick: #b64a41;
            
            /* Extended Palette */
            --dusk-blue-light: #2d6499;
            --dusk-blue-dark: #1a3d61;
            --air-force-blue-light: #6ba8c4;
            --amber-gold-light: #fdd066;
            --pumpkin-spice-light: #fd8f4d;
            --blushed-brick-light: #c9625a;
            
            /* Backgrounds */
            --bg-dusk-blue: rgba(34, 78, 125, 0.08);
            --bg-air-force: rgba(79, 147, 179, 0.08);
            --bg-amber: rgba(253, 191, 49, 0.1);
            --bg-pumpkin: rgba(253, 114, 29, 0.08);
            --bg-brick: rgba(182, 74, 65, 0.08);
            
            /* Neutrals */
            --white: #FFFFFF;
            --gray-50: #FAFBFC;
            --gray-100: #F4F5F7;
            --gray-200: #E8EAED;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
            
            /* Semantic */
            --success: #10B981;
            --warning: var(--amber-gold);
            --error: var(--blushed-brick);
            --info: var(--air-force-blue);
            
            /* Shadows */
            --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
            --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
            
            /* Fonts */
            --font-display: 'Plus Jakarta Sans', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            
            /* Spacing */
            --container: 1280px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;
        }

        body {
            font-family: var(--font-body);
            background: var(--gray-50);
            color: var(--gray-800);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== CAMPAIGN POPUP MODAL ===== */
        .campaign-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

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

        .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
        }

        .modal-container {
            position: relative;
            background: var(--white);
            border-radius: var(--radius-xl);
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .campaign-modal.active .modal-container {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: var(--radius-full);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-600);
            z-index: 10;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: var(--white);
            color: var(--gray-900);
        }

        .modal-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        /* Modal Visual (Left Side) */
        .modal-visual {
            background: linear-gradient(135deg, var(--pumpkin-spice) 0%, var(--blushed-brick) 100%);
            padding: 48px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .modal-badge {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .modal-big-text {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .big-number {
            font-family: var(--font-display);
            font-size: 100px;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .big-dot {
            font-family: var(--font-display);
            font-size: 80px;
            font-weight: 800;
            color: var(--amber-gold);
            line-height: 1;
            margin: 0 4px;
            animation: pulse-dot 1s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .modal-event-name {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 4px;
        }

        /* Confetti Decorations */
        .confetti {
            position: absolute;
            width: 12px;
            height: 12px;
            border-radius: 2px;
            animation: confetti-fall 3s ease-in-out infinite;
        }

        .confetti-1 { background: var(--amber-gold); top: 10%; left: 15%; animation-delay: 0s; }
        .confetti-2 { background: var(--white); top: 20%; right: 20%; animation-delay: 0.5s; }
        .confetti-3 { background: var(--amber-gold); bottom: 30%; left: 10%; animation-delay: 1s; }
        .confetti-4 { background: var(--white); bottom: 15%; right: 15%; animation-delay: 1.5s; }
        .confetti-5 { background: var(--amber-gold); top: 40%; left: 25%; animation-delay: 2s; }

        @keyframes confetti-fall {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; }
            50% { transform: translateY(20px) rotate(180deg); opacity: 0.7; }
        }

        /* Sparkle Decorations */
        .sparkle {
            position: absolute;
            font-size: 24px;
            color: var(--amber-gold);
            animation: sparkle-pulse 2s ease-in-out infinite;
        }

        .sparkle-1 { top: 15%; right: 25%; animation-delay: 0s; }
        .sparkle-2 { bottom: 25%; left: 20%; animation-delay: 0.7s; }
        .sparkle-3 { top: 50%; right: 10%; animation-delay: 1.4s; }

        @keyframes sparkle-pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.5; }
        }

        /* Modal Info (Right Side) */
        .modal-info {
            padding: 48px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .discount-highlight {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .discount-upto {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 800;
            color: var(--pumpkin-spice);
            margin-top: 8px;
        }

        .discount-number {
            font-family: var(--font-display);
            font-size: 80px;
            font-weight: 800;
            color: var(--pumpkin-spice);
            line-height: 1;
        }

        .discount-text {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            color: var(--gray-700);
            margin-left: 8px;
            margin-top: 12px;
            line-height: 1.3;
        }

        .modal-description {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .modal-countdown {
            margin-bottom: 24px;
        }

        .modal-countdown .countdown-label {
            font-size: 13px;
            color: var(--gray-500);
            display: block;
            margin-bottom: 12px;
        }

        .countdown-boxes {
            display: flex;
            gap: 10px;
        }

        .countdown-box {
            background: var(--gray-100);
            border-radius: var(--radius-md);
            padding: 12px 16px;
            text-align: center;
            min-width: 60px;
        }

        .countdown-num {
            display: block;
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 800;
            color: var(--dusk-blue);
        }

        .countdown-txt {
            font-size: 11px;
            color: var(--gray-500);
            text-transform: uppercase;
        }

        .modal-cta {
            width: 100%;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--pumpkin-spice) 0%, var(--blushed-brick) 100%);
            color: var(--white);
            border: none;
            border-radius: var(--radius-full);
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.2s;
            margin-bottom: 16px;
        }

        .modal-cta:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(253, 114, 29, 0.4);
        }

        .modal-checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--gray-500);
            cursor: pointer;
        }

        .modal-checkbox input {
            width: 16px;
            height: 16px;
            accent-color: var(--pumpkin-spice);
        }

        /* Modal Responsive */
        @media (max-width: 768px) {
            .modal-container {
                max-width: 95%;
                max-height: 90vh;
                overflow-y: auto;
            }

            .modal-content {
                grid-template-columns: 1fr;
            }

            .modal-visual {
                padding: 28px 20px;
            }

            .big-number {
                font-size: 56px;
            }

            .big-dot {
                font-size: 44px;
            }

            .modal-event-name {
                font-size: 18px;
                letter-spacing: 2px;
            }

            .modal-badge {
                font-size: 12px;
                padding: 6px 14px;
            }

            .modal-info {
                padding: 28px 20px;
            }

            .discount-number {
                font-size: 48px;
            }

            .discount-upto {
                font-size: 20px;
            }

            .discount-text {
                font-size: 14px;
            }

            .modal-description {
                font-size: 14px;
            }

            .countdown-boxes {
                justify-content: center;
            }

            .countdown-box {
                padding: 8px 10px;
                min-width: 48px;
            }

            .countdown-num {
                font-size: 18px;
            }

            .countdown-txt {
                font-size: 9px;
            }

            .modal-cta {
                padding: 14px 24px;
                font-size: 15px;
            }

            .modal-close {
                top: 12px;
                right: 12px;
                width: 36px;
                height: 36px;
            }

            /* Hide some confetti on mobile */
            .confetti-3,
            .confetti-5,
            .sparkle-3 {
                display: none;
            }
        }

        @media (max-width: 400px) {
            .modal-container {
                max-width: 98%;
            }

            .modal-visual {
                padding: 24px 16px;
            }

            .big-number {
                font-size: 44px;
            }

            .big-dot {
                font-size: 36px;
            }

            .modal-event-name {
                font-size: 16px;
                letter-spacing: 1px;
            }

            .modal-info {
                padding: 24px 16px;
            }

            .discount-number {
                font-size: 40px;
            }

            .discount-upto {
                font-size: 18px;
            }

            .countdown-box {
                padding: 6px 8px;
                min-width: 42px;
            }

            .countdown-num {
                font-size: 16px;
            }
        }

        /* ===== HEADER ===== */
        .header {
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-top {
            padding: 12px 0;
            border-bottom: 1px solid var(--gray-100);
            background: var(--dusk-blue);
        }

        .header-top-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: rgba(255,255,255,0.8);
        }

        .header-top-left {
            display: flex;
            gap: 24px;
        }

        .header-top-left a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s;
        }

        .header-top-left a:hover {
            color: var(--amber-gold);
        }

        .header-top-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .header-top-right a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .header-top-right a:hover {
            color: var(--amber-gold);
        }

        .header-main {
            padding: 16px 0;
        }

        .header-main-inner {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--pumpkin-spice) 0%, var(--blushed-brick) 100%);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-icon {
            transform: rotate(10deg) scale(1.05);
        }

        .logo-text {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 800;
            color: var(--dusk-blue);
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color: var(--pumpkin-spice);
        }

        /* ===== ANIMATED LOGO ===== */
        .animated-logo {
            position: relative;
            display: inline-flex;
            overflow: hidden;
        }

        .animated-logo .letter {
            display: inline-block;
            color: var(--dusk-blue);
            animation: letterWave 0.6s ease backwards;
            animation-delay: calc(var(--i) * 0.08s);
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .animated-logo .letter-accent {
            color: var(--pumpkin-spice);
        }

        /* Initial Wave Animation */
        @keyframes letterWave {
            0% {
                opacity: 0;
                transform: translateY(-20px) rotateX(-90deg);
            }
            50% {
                transform: translateY(5px);
            }
            100% {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        /* Hover Bounce Effect */
        .logo:hover .animated-logo .letter {
            animation: letterBounce 0.4s ease;
            animation-delay: calc(var(--i) * 0.05s);
        }

        @keyframes letterBounce {
            0%, 100% {
                transform: translateY(0);
            }
            25% {
                transform: translateY(-8px);
            }
            50% {
                transform: translateY(3px);
            }
            75% {
                transform: translateY(-3px);
            }
        }

        /* Shine Effect */
        .logo-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            animation: shine 3s ease-in-out infinite;
            animation-delay: 2s;
        }

        @keyframes shine {
            0% {
                left: -100%;
            }
            20% {
                left: 150%;
            }
            100% {
                left: 150%;
            }
        }

        /* Continuous Subtle Pulse on Letters (Optional - Subtle) */
        .animated-logo .letter-accent {
            animation: letterWave 0.6s ease backwards, subtlePulse 4s ease-in-out infinite;
            animation-delay: calc(var(--i) * 0.08s), calc(var(--i) * 0.2s + 1s);
        }

        @keyframes subtlePulse {
            0%, 100% {
                filter: brightness(1);
            }
            50% {
                filter: brightness(1.2);
            }
        }

        /* Mobile Logo Animation Adjustments */
        @media (max-width: 768px) {
            .animated-logo .letter {
                animation-duration: 0.5s;
            }
            
            .logo-shine {
                animation-duration: 4s;
            }
        }

        /* Search Box */
        .search-box {
            flex: 1;
            max-width: 640px;
            position: relative;
        }

        .search-input-wrapper {
            display: flex;
            background: var(--gray-100);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.2s;
        }

        .search-input-wrapper:focus-within {
            background: var(--white);
            border-color: var(--air-force-blue);
            box-shadow: 0 0 0 4px var(--bg-air-force);
        }

        .search-category {
            padding: 14px 16px;
            border: none;
            background: transparent;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-700);
            cursor: pointer;
            border-right: 1px solid var(--gray-200);
            min-width: 140px;
        }

        .search-input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            background: transparent;
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--gray-800);
            outline: none;
        }

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

        .search-btn {
            padding: 14px 24px;
            background: var(--dusk-blue);
            border: none;
            color: var(--white);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            transition: background 0.2s;
        }

        .search-btn:hover {
            background: var(--dusk-blue-dark);
        }

        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-action-btn {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-md);
            border: none;
            background: var(--gray-100);
            color: var(--gray-600);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.2s;
        }

        .header-action-btn:hover {
            background: var(--bg-dusk-blue);
            color: var(--dusk-blue);
        }

        .header-action-btn svg {
            width: 22px;
            height: 22px;
            stroke: currentColor;
            stroke-width: 2;
        }

        .header-action-btn .badge {
            position: absolute;
            top: 2px;
            right: 2px;
            min-width: 18px;
            height: 18px;
            padding: 0 5px;
            background: var(--pumpkin-spice);
            color: var(--white);
            font-size: 10px;
            font-weight: 700;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-post-ad {
            padding: 12px 24px;
            background: var(--pumpkin-spice);
            color: var(--white);
            border: none;
            border-radius: var(--radius-md);
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }

        .btn-post-ad:hover {
            background: var(--blushed-brick);
        }

        .btn-post-ad svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            stroke-width: 2.5;
        }

        /* ===== HEADER DROPDOWNS ===== */
        .header-dropdown-wrapper {
            position: relative;
        }

        .header-dropdown {
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            width: 360px;
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 1000;
            overflow: hidden;
        }

        .header-dropdown-wrapper.active .header-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid var(--gray-100);
        }

        .dropdown-header h4 {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-900);
        }

        .dropdown-header a {
            font-size: 13px;
            color: var(--dusk-blue);
            text-decoration: none;
            font-weight: 500;
        }

        .dropdown-content {
            max-height: 400px;
            overflow-y: auto;
        }

        .dropdown-footer {
            padding: 12px 20px;
            border-top: 1px solid var(--gray-100);
            text-align: center;
        }

        .dropdown-footer a {
            font-size: 14px;
            color: var(--dusk-blue);
            text-decoration: none;
            font-weight: 600;
        }

        .dropdown-divider {
            height: 1px;
            background: var(--gray-100);
            margin: 8px 0;
        }

        /* Favorites Dropdown */
        .favorite-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 20px;
            text-decoration: none;
            transition: background 0.2s;
        }

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

        .favorite-image {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            overflow: hidden;
            flex-shrink: 0;
        }

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

        .favorite-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .favorite-title {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-800);
        }

        .favorite-price {
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 700;
            color: var(--dusk-blue);
        }

        /* Messages Dropdown */
        .message-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 20px;
            text-decoration: none;
            transition: background 0.2s;
            border-left: 3px solid transparent;
        }

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

        .message-item.unread {
            background: var(--bg-air-force);
            border-left-color: var(--air-force-blue);
        }

        .message-avatar {
            position: relative;
            width: 44px;
            height: 44px;
            flex-shrink: 0;
        }

        .message-avatar img {
            width: 100%;
            height: 100%;
            border-radius: var(--radius-full);
            object-fit: cover;
        }

        .online-dot {
            position: absolute;
            bottom: 2px;
            right: 2px;
            width: 10px;
            height: 10px;
            background: #22c55e;
            border: 2px solid var(--white);
            border-radius: var(--radius-full);
        }

        .message-info {
            flex: 1;
            min-width: 0;
        }

        .message-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }

        .message-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-900);
        }

        .message-time {
            font-size: 12px;
            color: var(--gray-500);
        }

        .message-preview {
            font-size: 13px;
            color: var(--gray-600);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Notifications Dropdown */
        .notifications-dropdown {
            width: 400px;
        }

        .dropdown-tabs {
            display: flex;
            gap: 4px;
            padding: 12px 20px;
            border-bottom: 1px solid var(--gray-100);
        }

        .dropdown-tab {
            padding: 8px 16px;
            background: var(--gray-100);
            border: none;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-600);
            cursor: pointer;
            transition: all 0.2s;
        }

        .dropdown-tab.active {
            background: var(--dusk-blue);
            color: var(--white);
        }

        .notification-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 20px;
            text-decoration: none;
            transition: background 0.2s;
            border-left: 3px solid transparent;
        }

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

        .notification-item.unread {
            background: var(--bg-pumpkin);
            border-left-color: var(--pumpkin-spice);
        }

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

        .notification-info {
            flex: 1;
            min-width: 0;
        }

        .notification-text {
            font-size: 13px;
            color: var(--gray-700);
            line-height: 1.5;
            margin-bottom: 4px;
        }

        .notification-text strong {
            color: var(--gray-900);
        }

        .notification-time {
            font-size: 12px;
            color: var(--gray-500);
        }

        /* User Dropdown */
        .user-dropdown {
            width: 320px;
        }

        .user-dropdown-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px;
            background: linear-gradient(135deg, var(--bg-dusk-blue) 0%, var(--bg-air-force) 100%);
        }

        .user-avatar {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-full);
            overflow: hidden;
            border: 3px solid var(--white);
        }

        .user-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .user-info {
            flex: 1;
        }

        .user-name {
            display: block;
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-900);
        }

        .user-email {
            font-size: 13px;
            color: var(--gray-600);
        }

        .user-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            background: var(--white);
            padding: 6px 10px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 700;
            color: var(--gray-800);
        }

        .user-stats {
            display: flex;
            border-bottom: 1px solid var(--gray-100);
        }

        .user-stat {
            flex: 1;
            text-align: center;
            padding: 14px;
            border-right: 1px solid var(--gray-100);
        }

        .user-stat:last-child {
            border-right: none;
        }

        .stat-num {
            display: block;
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 800;
            color: var(--dusk-blue);
        }

        .stat-label {
            font-size: 11px;
            color: var(--gray-500);
            text-transform: uppercase;
        }

        .user-menu-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 20px;
            text-decoration: none;
            color: var(--gray-700);
            transition: all 0.2s;
        }

        .user-menu-item:hover {
            background: var(--gray-50);
            color: var(--dusk-blue);
        }

        .user-menu-item span:first-of-type {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
        }

        .menu-badge {
            background: var(--dusk-blue);
            color: var(--white);
            padding: 2px 8px;
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 700;
        }

        .menu-balance {
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            color: var(--pumpkin-spice);
        }

        .user-menu-item.logout {
            color: var(--blushed-brick);
        }

        .user-menu-item.logout:hover {
            background: var(--bg-brick);
        }

        /* Mobile Dropdown Styles */
        @media (max-width: 768px) {
            .header-dropdown {
                position: fixed;
                top: auto;
                bottom: 0;
                left: 0;
                right: 0;
                width: 100%;
                max-height: 80vh;
                border-radius: var(--radius-xl) var(--radius-xl) 0 0;
                transform: translateY(100%);
            }

            .header-dropdown-wrapper.active .header-dropdown {
                transform: translateY(0);
            }

            .notifications-dropdown,
            .user-dropdown {
                width: 100%;
            }

            .header-dropdown-wrapper.active::before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.5);
                z-index: 999;
            }
        }

        /* Categories Nav */
        .categories-nav {
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
        }

        .categories-nav-inner {
            display: flex;
            gap: 4px;
            padding: 8px 0;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .categories-nav-inner::-webkit-scrollbar {
            display: none;
        }

        .cat-nav-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            color: var(--gray-700);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-radius: var(--radius-md);
            white-space: nowrap;
            transition: all 0.2s;
        }

        .cat-nav-item:hover {
            background: var(--gray-100);
            color: var(--dusk-blue);
        }

        .cat-nav-item .cat-icon {
            width: 32px;
            height: 32px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cat-nav-item.vasita .cat-icon { background: var(--bg-dusk-blue); color: var(--dusk-blue); }
        .cat-nav-item.emlak .cat-icon { background: var(--bg-air-force); color: var(--air-force-blue); }
        .cat-nav-item.elektronik .cat-icon { background: var(--bg-pumpkin); color: var(--pumpkin-spice); }
        .cat-nav-item.ev .cat-icon { background: var(--bg-amber); color: var(--amber-gold); }
        .cat-nav-item.giyim .cat-icon { background: var(--bg-brick); color: var(--blushed-brick); }
        .cat-nav-item.spor .cat-icon { background: var(--bg-dusk-blue); color: var(--dusk-blue); }
        .cat-nav-item.hizmet .cat-icon { background: var(--bg-air-force); color: var(--air-force-blue); }
        .cat-nav-item.is .cat-icon { background: var(--bg-pumpkin); color: var(--pumpkin-spice); }

        /* Mobile Search Bar */
        .mobile-search {
            display: none;
            padding: 12px 0;
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
        }

        .mobile-search-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--gray-100);
            border-radius: var(--radius-md);
            padding: 12px 16px;
        }

        .mobile-search-wrapper input {
            flex: 1;
            border: none;
            background: transparent;
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--gray-800);
            outline: none;
        }

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

        .mobile-search-filter {
            background: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            padding: 8px;
            color: var(--gray-600);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Search Suggestions */
        .search-suggestions {
            display: none;
            background: var(--white);
            border-radius: var(--radius-lg);
            margin-top: 12px;
            padding: 16px;
            box-shadow: var(--shadow-lg);
        }

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

        .suggestion-section {
            margin-bottom: 16px;
        }

        .suggestion-section:last-child {
            margin-bottom: 0;
        }

        .suggestion-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .suggestion-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .suggestion-tag {
            background: var(--gray-100);
            color: var(--gray-700);
            padding: 8px 14px;
            border-radius: var(--radius-full);
            font-size: 13px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .suggestion-tag:hover {
            background: var(--dusk-blue);
            color: var(--white);
        }

        .suggestion-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            color: var(--gray-700);
            text-decoration: none;
            border-bottom: 1px solid var(--gray-100);
        }

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

        .suggestion-item:hover {
            color: var(--dusk-blue);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none !important;
            order: -1;
        }

        .desktop-only {
            display: flex;
        }

        @media (max-width: 768px) {
            .mobile-search {
                display: block;
            }
            
            .mobile-menu-btn {
                display: flex !important;
            }
            
            .desktop-only {
                display: none !important;
            }
        }

        /* ===== MOBILE MENU OVERLAY ===== */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

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

        .mobile-menu {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 320px;
            max-width: 85vw;
            background: var(--white);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .mobile-menu-overlay.active .mobile-menu {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid var(--gray-100);
        }

        .mobile-menu-header .logo {
            gap: 8px;
        }

        .mobile-menu-header .logo-icon {
            width: 36px;
            height: 36px;
        }

        .mobile-menu-header .logo-text {
            font-size: 22px;
        }

        .mobile-menu-close {
            width: 40px;
            height: 40px;
            background: var(--gray-100);
            border: none;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-600);
            cursor: pointer;
        }

        /* Mobile Menu User Section */
        .mobile-menu-user {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px;
            background: linear-gradient(135deg, var(--bg-dusk-blue) 0%, var(--bg-air-force) 100%);
        }

        .mobile-user-avatar {
            width: 52px;
            height: 52px;
            background: var(--white);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dusk-blue);
        }

        .mobile-user-info {
            flex: 1;
        }

        .mobile-user-greeting {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-900);
            display: block;
            margin-bottom: 4px;
        }

        .mobile-user-actions {
            font-size: 13px;
            color: var(--gray-600);
        }

        .mobile-user-actions a {
            color: var(--dusk-blue);
            font-weight: 600;
            text-decoration: none;
        }

        .mobile-user-actions span {
            margin: 0 6px;
        }

        /* Quick Actions */
        .mobile-menu-quick {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            padding: 16px 20px;
            border-bottom: 1px solid var(--gray-100);
        }

        .quick-action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 12px 8px;
            background: var(--gray-50);
            border-radius: var(--radius-md);
            text-decoration: none;
            color: var(--gray-700);
            transition: all 0.2s;
        }

        .quick-action-btn:first-child {
            background: linear-gradient(135deg, var(--pumpkin-spice) 0%, var(--blushed-brick) 100%);
            color: var(--white);
        }

        .quick-action-btn span {
            font-size: 11px;
            font-weight: 500;
            text-align: center;
        }

        /* Mobile Menu Sections */
        .mobile-menu-section {
            padding: 16px 20px;
            border-bottom: 1px solid var(--gray-100);
        }

        .mobile-menu-title {
            font-size: 12px;
            font-weight: 700;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        /* Categories in Menu */
        .mobile-menu-categories {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-menu-cat {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            text-decoration: none;
            color: var(--gray-800);
            border-bottom: 1px solid var(--gray-50);
        }

        .mobile-menu-cat:last-child {
            border-bottom: none;
        }

        .mobile-menu-cat .cat-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .mobile-menu-cat .cat-name {
            flex: 1;
            font-weight: 500;
        }

        .mobile-menu-cat .cat-count {
            font-size: 12px;
            color: var(--gray-500);
            margin-right: 4px;
        }

        /* Links in Menu */
        .mobile-menu-links {
            display: flex;
            flex-direction: column;
        }

        .mobile-menu-link {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            text-decoration: none;
            color: var(--gray-700);
            border-bottom: 1px solid var(--gray-50);
        }

        .mobile-menu-link:last-child {
            border-bottom: none;
        }

        .mobile-menu-link:hover {
            color: var(--dusk-blue);
        }

        /* App Download in Menu */
        .mobile-menu-app {
            padding: 20px;
            background: var(--gray-50);
            margin-top: auto;
        }

        .mobile-menu-app span {
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-700);
            display: block;
            margin-bottom: 12px;
        }

        .app-store-icons {
            display: flex;
            gap: 10px;
        }

        .app-store-icons a {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px;
            background: var(--gray-900);
            color: var(--white);
            border-radius: var(--radius-md);
            font-size: 12px;
            font-weight: 500;
            text-decoration: none;
        }

        /* Mobile Categories Scroll */
        .mobile-categories {
            display: none;
            overflow-x: auto;
            gap: 12px;
            padding-bottom: 16px;
            margin-bottom: 16px;
            scrollbar-width: none;
        }

        .mobile-categories::-webkit-scrollbar {
            display: none;
        }

        .mobile-cat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            min-width: 64px;
        }

        .mobile-cat-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-cat-item span:last-child {
            font-size: 11px;
            font-weight: 500;
            color: var(--gray-700);
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .mobile-categories {
                display: flex;
            }
        }

        /* ===== HERO SECTION WITH SLIDER ===== */
        .hero {
            padding: 48px 0;
            background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 24px;
            align-items: stretch;
        }

        /* Slider Container */
        .hero-slider {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            min-height: 360px;
            height: 100%;
        }

        .slider-container {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        /* Individual Slides */
        .slide {
            min-width: 100%;
            height: 100%;
            min-height: 360px;
            padding: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            color: var(--white);
        }

        .slide::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Slide Themes */
        .slide-1 {
            background: linear-gradient(135deg, var(--dusk-blue) 0%, var(--dusk-blue-dark) 100%);
        }

        .slide-2 {
            background: linear-gradient(135deg, var(--blushed-brick) 0%, #8B2E27 100%);
        }

        .slide-3 {
            background: linear-gradient(135deg, var(--pumpkin-spice) 0%, var(--blushed-brick) 100%);
        }

        .slide-4 {
            background: linear-gradient(135deg, var(--dusk-blue) 0%, var(--air-force-blue) 100%);
        }

        .slide-5 {
            background: linear-gradient(135deg, var(--air-force-blue) 0%, var(--dusk-blue) 100%);
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 60%;
        }

        .slide-visual {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-icon {
            width: 160px;
            height: 160px;
            background: rgba(255,255,255,0.15);
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .discount-badge {
            width: 160px;
            height: 160px;
            background: var(--amber-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 800;
            color: var(--dusk-blue-dark);
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        }

        /* Hero Badge Variations */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(253, 191, 49, 0.2);
            color: var(--amber-gold);
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            width: fit-content;
        }

        .badge-hot {
            background: rgba(253, 191, 49, 0.3);
            color: var(--amber-gold);
        }

        .badge-tech {
            background: rgba(255,255,255,0.2);
            color: var(--white);
        }

        .badge-auto {
            background: rgba(253, 191, 49, 0.2);
            color: var(--amber-gold);
        }

        .badge-home {
            background: rgba(253, 191, 49, 0.2);
            color: var(--amber-gold);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .hero-subtitle {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 32px;
            max-width: 480px;
            position: relative;
            z-index: 1;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            position: relative;
            z-index: 1;
        }

        .btn-hero-primary {
            padding: 16px 32px;
            background: var(--pumpkin-spice);
            color: var(--white);
            border: none;
            border-radius: var(--radius-full);
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background 0.2s;
        }

        .btn-hero-primary:hover {
            background: var(--blushed-brick);
        }

        .btn-hero-secondary {
            padding: 16px 32px;
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: var(--radius-full);
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-hero-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }

        /* Slider Dots */
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: var(--radius-full);
            background: rgba(255,255,255,0.4);
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }

        .dot.active {
            width: 32px;
            background: var(--white);
        }

        .dot:hover:not(.active) {
            background: rgba(255,255,255,0.7);
        }

        /* Side Banners - 3 Cards */
        .hero-side-banners {
            display: flex;
            flex-direction: column;
            gap: 12px;
            height: 100%;
        }

        .side-card {
            flex: 1;
            border-radius: var(--radius-lg);
            padding: 20px;
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Trust Slider */
        .trust-slider {
            background: linear-gradient(135deg, var(--air-force-blue) 0%, var(--dusk-blue) 100%);
        }

        .trust-slider-track {
            position: relative;
            min-height: 50px;
            margin-bottom: 12px;
        }

        .trust-slide {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            gap: 14px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .trust-slide.active {
            opacity: 1;
        }

        .trust-icon {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.2);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .trust-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .trust-text strong {
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 700;
        }

        .trust-text span {
            font-size: 13px;
            opacity: 0.85;
        }

        .trust-dots {
            display: flex;
            gap: 6px;
        }

        .trust-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }

        .trust-dot.active {
            width: 18px;
            border-radius: 3px;
            background: var(--white);
        }

        /* Live Stats Card */
        .live-stats-card {
            background: linear-gradient(135deg, var(--pumpkin-spice) 0%, var(--blushed-brick) 100%);
        }

        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.2);
            padding: 4px 10px;
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 10px;
            width: fit-content;
        }

        .live-dot {
            width: 6px;
            height: 6px;
            background: #4ADE80;
            border-radius: 50%;
            animation: pulse-live 1.5s ease-in-out infinite;
        }

        @keyframes pulse-live {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .live-stats-content {
            position: relative;
            min-height: 46px;
        }

        .live-stat {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .live-stat.active {
            opacity: 1;
        }

        .live-number {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 2px;
        }

        .live-label {
            font-size: 12px;
            opacity: 0.9;
        }

        /* Promo Card */
        .promo-card {
            background: linear-gradient(135deg, var(--amber-gold) 0%, var(--pumpkin-spice) 100%);
            flex-direction: row;
            align-items: center;
            gap: 12px;
        }

        .promo-badge {
            background: rgba(255,255,255,0.25);
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .promo-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .promo-content strong {
            font-size: 14px;
            font-weight: 700;
        }

        .promo-content span {
            font-size: 12px;
            opacity: 0.9;
        }

        .promo-content b {
            font-weight: 700;
        }

        .promo-code {
            background: var(--white);
            color: var(--pumpkin-spice);
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.5px;
            flex-shrink: 0;
        }

        /* ===== CATEGORIES GRID ===== */
        .section {
            padding: 64px 0;
        }

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

        .section-title {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--gray-900);
        }

        .section-link {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--dusk-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.2s;
        }

        .section-link:hover {
            color: var(--air-force-blue);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .category-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 16px 20px;
            text-decoration: none;
            transition: all 0.2s;
            border: 1px solid var(--gray-200);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
        }

        .category-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        /* Renkler varsayılan olarak görünür */
        .category-card.vasita::before { background: var(--dusk-blue); }
        .category-card.emlak::before { background: var(--air-force-blue); }
        .category-card.elektronik::before { background: var(--pumpkin-spice); }
        .category-card.ev::before { background: var(--amber-gold); }
        .category-card.giyim::before { background: var(--blushed-brick); }
        .category-card.spor::before { background: var(--dusk-blue); }
        .category-card.hizmet::before { background: var(--air-force-blue); }
        .category-card.is::before { background: var(--pumpkin-spice); }

        /* Hover renk değişimi */
        .category-card.vasita:hover::before { background: var(--dusk-blue-dark); }
        .category-card.emlak:hover::before { background: var(--dusk-blue); }
        .category-card.elektronik:hover::before { background: var(--blushed-brick); }
        .category-card.ev:hover::before { background: var(--pumpkin-spice); }
        .category-card.giyim:hover::before { background: var(--pumpkin-spice); }
        .category-card.spor:hover::before { background: var(--air-force-blue); }
        .category-card.hizmet:hover::before { background: var(--dusk-blue); }
        .category-card.is:hover::before { background: var(--blushed-brick); }

        .category-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .category-card.vasita .category-icon { background: var(--bg-dusk-blue); color: var(--dusk-blue); }
        .category-card.emlak .category-icon { background: var(--bg-air-force); color: var(--air-force-blue); }
        .category-card.elektronik .category-icon { background: var(--bg-pumpkin); color: var(--pumpkin-spice); }
        .category-card.ev .category-icon { background: var(--bg-amber); color: var(--amber-gold); }
        .category-card.giyim .category-icon { background: var(--bg-brick); color: var(--blushed-brick); }
        .category-card.spor .category-icon { background: var(--bg-dusk-blue); color: var(--dusk-blue); }
        .category-card.hizmet .category-icon { background: var(--bg-air-force); color: var(--air-force-blue); }
        .category-card.is .category-icon { background: var(--bg-pumpkin); color: var(--pumpkin-spice); }

        .category-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .category-name {
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 700;
            color: var(--gray-900);
        }

        .category-count {
            font-size: 13px;
            color: var(--gray-500);
        }

        /* ===== FEATURED LISTINGS ===== */
        .listings-section {
            background: var(--white);
        }

        .listings-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 32px;
            border-bottom: 1px solid var(--gray-200);
            padding-bottom: 16px;
        }

        .tab-btn {
            padding: 12px 24px;
            background: transparent;
            border: none;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            color: var(--gray-500);
            cursor: pointer;
            border-radius: var(--radius-full);
            transition: all 0.2s;
        }

        .tab-btn.active {
            background: var(--dusk-blue);
            color: var(--white);
        }

        .tab-btn:not(.active):hover {
            background: var(--gray-100);
            color: var(--gray-700);
        }

        .listings-grid {
            display: none;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .listings-grid.tab-content.active {
            display: grid;
            animation: fadeIn 0.3s ease;
        }

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

        .listing-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: all 0.2s;
            text-decoration: none;
            display: block;
        }

        .listing-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .listing-image {
            position: relative;
            padding-top: 75%;
            background: var(--gray-100);
            overflow: hidden;
        }

        .listing-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .listing-card:hover .listing-image img {
            transform: scale(1.05);
        }

        .listing-badges {
            position: absolute;
            top: 12px;
            left: 12px;
            display: flex;
            gap: 6px;
        }

        .listing-badge {
            padding: 4px 10px;
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-featured {
            background: var(--pumpkin-spice);
            color: var(--white);
        }

        .badge-new {
            background: var(--air-force-blue);
            color: var(--white);
        }

        .badge-urgent {
            background: var(--blushed-brick);
            color: var(--white);
        }

        .listing-favorite {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: var(--white);
            border: none;
            border-radius: var(--radius-full);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            transition: all 0.2s;
            box-shadow: var(--shadow-sm);
        }

        .listing-favorite:hover {
            color: var(--blushed-brick);
        }

        .listing-favorite.active {
            color: var(--blushed-brick);
        }

        .listing-content {
            padding: 16px;
        }

        .listing-price {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 800;
            color: var(--dusk-blue);
            margin-bottom: 8px;
        }

        .listing-price small {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-500);
        }

        .listing-title {
            font-size: 15px;
            font-weight: 500;
            color: var(--gray-800);
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .listing-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--gray-500);
        }

        .listing-meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .listing-meta-item i {
            width: 14px;
            height: 14px;
        }

        /* ===== DEALS SECTION ===== */
        .deals-section {
            background: linear-gradient(135deg, var(--bg-pumpkin) 0%, var(--bg-amber) 100%);
        }

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

        .deals-title-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .deals-icon {
            width: 56px;
            height: 56px;
            background: var(--pumpkin-spice);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
        }

        .deals-countdown {
            display: flex;
            gap: 8px;
        }

        .countdown-item {
            background: var(--white);
            padding: 8px 16px;
            border-radius: var(--radius-md);
            text-align: center;
            min-width: 60px;
            box-shadow: var(--shadow-sm);
        }

        .countdown-value {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 800;
            color: var(--pumpkin-spice);
        }

        .countdown-label {
            font-size: 11px;
            color: var(--gray-500);
            text-transform: uppercase;
        }

        .deals-slider-wrapper {
            position: relative;
        }

        .deals-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 16px;
            scroll-behavior: smooth;
            scrollbar-width: none;
        }

        .deals-scroll::-webkit-scrollbar {
            display: none;
        }

        .deal-card {
            flex: 0 0 280px;
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            text-decoration: none;
            transition: box-shadow 0.2s;
        }

        .deal-card:hover {
            box-shadow: var(--shadow-lg);
        }

        .deal-image {
            position: relative;
            padding-top: 100%;
            background: var(--gray-100);
        }

        .deal-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .deal-discount {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--blushed-brick);
            color: var(--white);
            padding: 6px 12px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 700;
        }

        .deal-content {
            padding: 16px;
        }

        .deal-title {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-800);
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .deal-prices {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .deal-price-new {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 800;
            color: var(--blushed-brick);
        }

        .deal-price-old {
            font-size: 14px;
            color: var(--gray-400);
            text-decoration: line-through;
        }

        /* Deals Dots Navigation */
        .deals-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .deals-dot {
            width: 10px;
            height: 10px;
            border-radius: var(--radius-full);
            background: var(--gray-300);
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            padding: 0;
        }

        .deals-dot.active {
            width: 32px;
            background: var(--pumpkin-spice);
        }

        .deals-dot:hover:not(.active) {
            background: var(--gray-400);
        }

        /* ===== STORES SECTION ===== */
        .stores-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
        }

        .store-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 24px;
            text-align: center;
            text-decoration: none;
            border: 1px solid var(--gray-200);
            transition: all 0.2s;
        }

        .store-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .store-logo {
            width: 72px;
            height: 72px;
            border-radius: var(--radius-md);
            background: var(--gray-100);
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .store-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .store-name {
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .store-products {
            font-size: 13px;
            color: var(--gray-500);
            margin-bottom: 8px;
        }

        .store-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            font-size: 13px;
            font-weight: 600;
            color: var(--amber-gold);
        }

        .store-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--bg-air-force);
            color: var(--air-force-blue);
            padding: 4px 10px;
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 600;
            margin-top: 12px;
        }

        /* ===== STATS SECTION ===== */
        .stats-section {
            background: var(--dusk-blue);
            color: var(--white);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

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

        .stat-icon {
            width: 64px;
            height: 64px;
            background: rgba(255,255,255,0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--amber-gold);
        }

        .stat-value {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 8px;
            color: var(--white);
        }

        .stat-label {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
        }

        /* ===== APP PROMO ===== */
        .app-section {
            background: linear-gradient(135deg, var(--air-force-blue) 0%, var(--dusk-blue) 100%);
            color: var(--white);
            overflow: hidden;
        }

        .app-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .app-content h2 {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .app-content p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 32px;
        }

        .app-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 32px;
        }

        .app-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .app-feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .app-feature span {
            font-weight: 500;
        }

        .app-buttons {
            display: flex;
            gap: 16px;
        }

        .app-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--white);
            color: var(--gray-900);
            padding: 14px 24px;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all 0.2s;
        }

        .app-btn:hover {
            background: var(--gray-100);
        }

        .app-btn-icon {
            font-size: 28px;
        }

        .app-btn-text small {
            display: block;
            font-size: 11px;
            color: var(--gray-500);
        }

        .app-btn-text span {
            font-weight: 700;
            font-size: 16px;
        }

        .app-mockup {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .phone-mockup {
            width: 280px;
            height: 560px;
            background: var(--gray-900);
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 40px 80px rgba(0,0,0,0.4);
            position: relative;
        }

        .phone-mockup::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 24px;
            background: var(--gray-900);
            border-radius: var(--radius-full);
            z-index: 10;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: var(--white);
            border-radius: 32px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            font-size: 14px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--white);
            border-top: 1px solid var(--gray-200);
        }

        .footer-main {
            padding: 64px 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 48px;
        }

        .footer-brand p {
            color: var(--gray-500);
            font-size: 14px;
            margin: 16px 0 24px;
            line-height: 1.7;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: var(--gray-100);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-600);
            transition: all 0.2s;
        }

        .footer-social a:hover {
            background: var(--dusk-blue);
            color: var(--white);
        }

        .footer-title {
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray-600);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

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

        .footer-bottom {
            padding: 24px 0;
            border-top: 1px solid var(--gray-200);
        }

        .footer-bottom-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-size: 14px;
            color: var(--gray-500);
        }

        .footer-payments {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .footer-payments span {
            font-size: 13px;
            color: var(--gray-500);
            margin-right: 8px;
        }

        .payment-icon {
            width: 48px;
            height: 32px;
            background: var(--gray-100);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--gray-500);
            font-weight: 600;
        }

        /* Mobile Footer */
        .footer-mobile {
            display: none;
        }

        .footer-brand-mobile {
            text-align: center;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--gray-100);
            margin-bottom: 16px;
        }

        .footer-brand-mobile .logo {
            justify-content: center;
            margin-bottom: 12px;
        }

        .footer-brand-mobile p {
            font-size: 13px;
            color: var(--gray-500);
            margin-bottom: 16px;
        }

        .footer-brand-mobile .footer-social {
            justify-content: center;
        }

        /* Footer Accordion */
        .footer-accordion {
            border-bottom: 1px solid var(--gray-100);
        }

        .footer-accordion-item {
            border-top: 1px solid var(--gray-100);
        }

        .footer-accordion-btn {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            background: none;
            border: none;
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 600;
            color: var(--gray-800);
            cursor: pointer;
        }

        .footer-accordion-btn i {
            transition: transform 0.3s;
            color: var(--gray-400);
        }

        .footer-accordion-item.active .footer-accordion-btn i {
            transform: rotate(180deg);
        }

        .footer-accordion-content {
            display: none;
            padding-bottom: 16px;
        }

        .footer-accordion-item.active .footer-accordion-content {
            display: block;
        }

        .footer-accordion-content a {
            display: block;
            padding: 10px 0;
            color: var(--gray-600);
            text-decoration: none;
            font-size: 14px;
        }

        /* App Download Mobile */
        .footer-app-mobile {
            padding: 24px 0;
            text-align: center;
        }

        .footer-app-mobile > span {
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-700);
            display: block;
            margin-bottom: 16px;
        }

        .app-buttons-mobile {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .app-btn-mobile {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: var(--gray-900);
            color: var(--white);
            border-radius: var(--radius-md);
            text-decoration: none;
        }

        .app-btn-mobile div {
            text-align: left;
        }

        .app-btn-mobile small {
            font-size: 10px;
            opacity: 0.8;
            display: block;
        }

        .app-btn-mobile strong {
            font-size: 14px;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .footer-mobile {
                display: block;
            }
            
            .footer-grid {
                display: none;
            }
            
            .footer-main {
                padding: 32px 0;
            }
            
            .footer-bottom-inner {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
            
            .footer-payments {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .footer-payments span {
                width: 100%;
                margin-bottom: 8px;
            }
        }

        /* ===== MOBILE NAVIGATION ===== */
        .mobile-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            border-top: 1px solid var(--gray-200);
            padding: 8px 0;
            z-index: 1000;
            padding-bottom: env(safe-area-inset-bottom, 8px);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        }

        .mobile-nav-inner {
            display: flex;
            justify-content: space-around;
            align-items: flex-end;
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px 16px;
            color: var(--gray-500);
            text-decoration: none;
            font-size: 10px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .mobile-nav-item.active {
            color: var(--dusk-blue);
        }

        .mobile-nav-item:hover {
            color: var(--dusk-blue);
        }

        .mobile-nav-post {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--pumpkin-spice) 0%, var(--blushed-brick) 100%);
            border-radius: var(--radius-full);
            border: none;
            color: var(--white);
            margin-top: -26px;
            box-shadow: 0 4px 16px rgba(253, 114, 29, 0.4);
            cursor: pointer;
            transition: transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-nav-post:active {
            transform: scale(0.95);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .categories-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .listings-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .listings-grid.tab-content.active {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
            }
            
            .stores-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {
            .header-top {
                display: none;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-side-banners {
                flex-direction: row;
                height: auto;
            }
            
            .side-card {
                flex: 1;
            }
            
            .hero-slider {
                min-height: 320px;
            }
            
            .slide {
                padding: 32px;
            }
            
            .slide-content {
                max-width: 70%;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .visual-icon,
            .discount-badge {
                width: 120px;
                height: 120px;
            }
            
            .discount-badge {
                font-size: 36px;
            }
            
            .visual-icon i {
                width: 60px !important;
                height: 60px !important;
            }
            
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .listings-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stores-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .app-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .app-mockup {
                order: -1;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            
            /* Header Mobile */
            .header-main {
                padding: 12px 0;
            }
            
            .header-main-inner {
                gap: 12px;
            }
            
            .logo-icon {
                width: 36px;
                height: 36px;
            }
            
            .logo-text {
                font-size: 22px;
            }
            
            .search-box {
                display: none;
            }
            
            .search-category {
                display: none;
            }
            
            .header-actions {
                gap: 4px;
            }
            
            .header-action-btn {
                width: 38px;
                height: 38px;
            }
            
            .btn-post-ad span {
                display: none;
            }
            
            .btn-post-ad {
                padding: 10px;
                border-radius: var(--radius-md);
            }
            
            /* Categories Nav Mobile */
            .categories-nav {
                display: none;
            }
            
            /* Hero Mobile */
            .hero {
                padding: 24px 0;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .hero-slider {
                min-height: 260px;
                height: auto;
                border-radius: var(--radius-lg);
            }
            
            .slide {
                min-height: 260px;
                padding: 24px;
                flex-direction: column;
                text-align: center;
            }
            
            .slide-content {
                max-width: 100%;
            }
            
            .slide-visual {
                display: none;
            }
            
            .hero-badge {
                font-size: 11px;
                padding: 6px 12px;
                margin-bottom: 12px;
            }
            
            .hero-title {
                font-size: 24px;
                margin-bottom: 12px;
            }
            
            .hero-subtitle {
                font-size: 14px;
                margin-bottom: 20px;
            }
            
            .hero-cta {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 14px;
            }
            
            .slider-dots {
                bottom: 12px;
            }
            
            .dot {
                width: 8px;
                height: 8px;
            }
            
            .dot.active {
                width: 24px;
            }
            
            /* Side Cards Mobile */
            .hero-side-banners {
                flex-direction: column;
                gap: 12px;
                height: auto;
            }
            
            .side-card {
                padding: 16px;
                flex: none;
                border-radius: var(--radius-md);
            }
            
            .trust-slider-track {
                min-height: 44px;
                margin-bottom: 10px;
            }
            
            .trust-icon {
                width: 38px;
                height: 38px;
            }
            
            .trust-text strong {
                font-size: 14px;
            }
            
            .trust-text span {
                font-size: 12px;
            }
            
            .live-number {
                font-size: 24px;
            }
            
            .live-label {
                font-size: 11px;
            }
            
            .promo-card {
                flex-wrap: wrap;
            }
            
            .promo-content strong {
                font-size: 13px;
            }
            
            .promo-content span {
                font-size: 11px;
            }
            
            .promo-code {
                margin-top: 10px;
                width: 100%;
                text-align: center;
                padding: 8px;
            }
            
            /* Sections Mobile */
            .section {
                padding: 32px 0;
            }
            
            .section-header {
                margin-bottom: 20px;
            }
            
            .section-title {
                font-size: 20px;
            }
            
            .section-link {
                font-size: 13px;
            }
            
            /* Categories Mobile */
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .category-card {
                padding: 12px;
                gap: 10px;
            }
            
            .category-icon {
                width: 36px;
                height: 36px;
            }
            
            .category-icon i {
                width: 18px !important;
                height: 18px !important;
            }
            
            .category-name {
                font-size: 13px;
            }
            
            .category-count {
                font-size: 11px;
            }
            
            /* Listings Mobile */
            .listings-tabs {
                overflow-x: auto;
                gap: 6px;
                padding-bottom: 12px;
                margin-bottom: 20px;
            }
            
            .tab-btn {
                padding: 10px 16px;
                font-size: 13px;
                white-space: nowrap;
            }
            
            .listings-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .listings-grid.tab-content.active {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .listing-card {
                border-radius: var(--radius-md);
            }
            
            .listing-content {
                padding: 12px;
            }
            
            .listing-price {
                font-size: 16px;
                margin-bottom: 6px;
            }
            
            .listing-title {
                font-size: 13px;
                margin-bottom: 8px;
            }
            
            .listing-meta {
                font-size: 11px;
                gap: 8px;
            }
            
            .listing-badges {
                top: 8px;
                left: 8px;
            }
            
            .listing-badge {
                padding: 3px 8px;
                font-size: 9px;
            }
            
            .listing-favorite {
                top: 8px;
                right: 8px;
                width: 32px;
                height: 32px;
            }
            
            /* Deals Mobile */
            .deals-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
            
            .deals-icon {
                width: 44px;
                height: 44px;
            }
            
            .deals-countdown {
                display: none;
            }
            
            .deal-card {
                flex: 0 0 200px;
            }
            
            .deal-content {
                padding: 12px;
            }
            
            .deal-title {
                font-size: 12px;
            }
            
            .deal-price-new {
                font-size: 15px;
            }
            
            .deal-price-old {
                font-size: 12px;
            }
            
            .deals-dots {
                margin-top: 16px;
            }
            
            .deals-dot {
                width: 8px;
                height: 8px;
            }
            
            .deals-dot.active {
                width: 24px;
            }
            
            /* Stores Mobile */
            .stores-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .store-card {
                padding: 16px;
            }
            
            .store-logo {
                width: 56px;
                height: 56px;
                margin-bottom: 12px;
            }
            
            .store-name {
                font-size: 13px;
            }
            
            .store-products {
                font-size: 11px;
            }
            
            /* Stats Mobile */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .stat-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 12px;
            }
            
            .stat-value {
                font-size: 28px;
            }
            
            .stat-label {
                font-size: 12px;
            }
            
            /* App Section Mobile */
            .app-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }
            
            .app-mockup {
                order: -1;
            }
            
            .phone-mockup {
                width: 200px;
                height: 400px;
                border-radius: 30px;
            }
            
            .app-content h2 {
                font-size: 24px;
            }
            
            .app-content p {
                font-size: 14px;
            }
            
            .app-features {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            
            .app-feature {
                font-size: 12px;
            }
            
            .app-feature-icon {
                width: 32px;
                height: 32px;
            }
            
            .app-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .app-btn {
                width: 100%;
                max-width: 200px;
                justify-content: center;
            }
            
            /* Footer Mobile */
            .footer-main {
                padding: 40px 0;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .footer-brand {
                text-align: center;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .footer-title {
                font-size: 14px;
                margin-bottom: 16px;
            }
            
            .footer-links li {
                margin-bottom: 10px;
            }
            
            .footer-bottom-inner {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
            
            .footer-payments {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            /* Mobile Navigation */
            .mobile-nav {
                display: block;
            }
            
            .footer {
                padding-bottom: 80px;
            }
        }
        
        /* Extra Small Devices */
        @media (max-width: 400px) {
            .container {
                padding: 0 12px;
            }
            
            .logo-text {
                font-size: 20px;
            }
            
            .hero-title {
                font-size: 20px;
            }
            
            .hero-subtitle {
                font-size: 13px;
            }
            
            .categories-grid {
                gap: 8px;
            }
            
            .category-card {
                padding: 10px;
            }
            
            .category-icon {
                width: 32px;
                height: 32px;
            }
            
            .category-name {
                font-size: 12px;
            }
            
            .listings-grid {
                gap: 8px;
            }

            .listings-grid.tab-content.active {
                display: grid;
                gap: 8px;
            }
            
            .listing-price {
                font-size: 14px;
            }
            
            .listing-title {
                font-size: 12px;
            }
            
            .stores-grid {
                gap: 8px;
            }
            
            .stats-grid {
                gap: 16px;
            }
            
            .stat-value {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .hero-cta {
                flex-direction: column;
            }
            
            .deals-countdown {
                display: none;
            }
            
            .app-features {
                grid-template-columns: 1fr;
            }
            
            .app-buttons {
                flex-direction: column;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom-inner {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }
