
        :root {
            --primary: #FF6B35;
            --primary-dark: #E85A2A;
            --primary-light: #FF8F66;
            --secondary: #2EC4B6;
            --secondary-dark: #25A99D;
            --accent: #FFBE0B;
            --dark: #1A1A2E;
            --dark-light: #2D2D44;
            --text: #4A4A68;
            --text-light: #7A7A8C;
            --light: #F8F9FD;
            --white: #FFFFFF;
            --success: #10B981;
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #3DD9C9 100%);
            --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
            --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
            --shadow-md: 0 8px 24px rgba(26, 26, 46, 0.1);
            --shadow-lg: 0 16px 48px rgba(26, 26, 46, 0.12);
            --shadow-primary: 0 8px 24px rgba(255, 107, 53, 0.3);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --radius-full: 50px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text);
            background-color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
        }
        
        .section-padding {
            padding: 100px 0;
        }
        
        .section-header {
            margin-bottom: 60px;
        }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 190, 11, 0.1) 100%);
            border-radius: var(--radius-full);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .section-title {
            font-size: 42px;
            margin-bottom: 16px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
        }
        
        .btn-primary-custom {
            background: var(--gradient-primary);
            border: none;
            color: var(--white);
            padding: 14px 32px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-primary);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
            color: var(--white);
        }
        
        .btn-secondary-custom {
            background: var(--white);
            border: 2px solid var(--dark);
            color: var(--dark);
            padding: 12px 30px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .btn-secondary-custom:hover {
            background: var(--dark);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .btn-outline-light-custom {
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white);
            padding: 12px 30px;
            border-radius: var(--radius-full);
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-light-custom:hover {
            background: var(--white);
            color: var(--primary);
        }
        
        /* ==================== NAVBAR ==================== */
        .navbar {
            padding: 16px 0;
            background: var(--white);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-md);
        }
        
        .navbar-brand {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 28px;
            color: var(--dark) !important;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .navbar-brand .brand-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text) !important;
            padding: 10px 20px !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--primary) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 20px;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: calc(100% - 40px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar .btn-primary-custom {
            padding: 10px 24px;
        }

        /* Cart Button Styling */
        .cart-nav-btn {
            position: relative;
            background: transparent;
            border: 2px solid rgba(26, 26, 46, 0.1);
            border-radius: var(--radius-md);
            padding: 10px 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text);
        }
        
        .cart-nav-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--gradient-primary);
            color: var(--white);
            font-size: 11px;
            font-weight: 700;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-primary);
            transition: transform 0.3s ease;
        }
        
        .cart-badge.bump {
            animation: cartBump 0.3s ease;
        }
        
        @keyframes cartBump {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.3); }
        }
        
        /* ==================== HERO SECTION ==================== */
        .hero-section {
            padding: 140px 0 100px;
            background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(46, 196, 182, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: var(--white);
            border-radius: var(--radius-full);
            box-shadow: var(--shadow-md);
            margin-bottom: 24px;
            font-weight: 600;
            font-size: 14px;
            color: var(--text);
        }
        
        .hero-badge .badge-icon {
            width: 24px;
            height: 24px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: 12px;
        }
        
        .hero-title {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
        }
        
        .hero-title .highlight {
            color: var(--primary);
            position: relative;
        }
        
        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background: rgba(255, 107, 53, 0.2);
            z-index: -1;
            border-radius: 4px;
        }
        
        .hero-description {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 32px;
            max-width: 480px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
            padding-top: 32px;
            border-top: 1px solid rgba(26, 26, 46, 0.08);
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
        }
        
        .stat-number span {
            color: var(--primary);
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text-light);
            margin-top: 4px;
        }
        
        .hero-image-wrapper {
            position: relative;
            z-index: 2;
        }
        
        .hero-image {
            width: 100%;
            max-width: 550px;
            border-radius: var(--radius-xl);
        }
        
        .hero-floating-card {
            position: absolute;
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 16px 20px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .hero-floating-card.delivery {
            bottom: 20%;
            left: -30px;
            animation: float 3s ease-in-out infinite;
        }
        
        .hero-floating-card.rating {
            top: 15%;
            right: -20px;
            animation: float 3s ease-in-out infinite 0.5s;
        }
        
        .floating-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .floating-icon.green {
            background: rgba(16, 185, 129, 0.1);
            color: var(--success);
        }
        
        .floating-icon.orange {
            background: rgba(255, 107, 53, 0.1);
            color: var(--primary);
        }
        
        .floating-text h6 {
            font-size: 14px;
            margin-bottom: 2px;
        }
        
        .floating-text p {
            font-size: 12px;
            color: var(--text-light);
            margin: 0;
        }
        
        .floating-text .stars {
            color: var(--accent);
            font-size: 12px;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        /* ==================== PARTNERS SECTION ==================== */
        .partners-section {
            padding: 60px 0;
            background: var(--white);
            border-top: 1px solid rgba(26, 26, 46, 0.06);
            border-bottom: 1px solid rgba(26, 26, 46, 0.06);
        }
        
        .partners-title {
            font-size: 14px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .partner-logo {
            height: 32px;
            opacity: 0.4;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }
        
        /* ==================== HOW IT WORKS ==================== */
        .how-it-works {
            background: var(--white);
        }
        
        .step-card {
            text-align: center;
            padding: 40px 30px;
            position: relative;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            margin: 0 auto 24px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .step-card:hover .step-number {
            background: var(--gradient-primary);
            color: var(--white);
            transform: scale(1.1);
        }
        
        .step-icon {
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 36px;
            height: 36px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 18px;
            box-shadow: var(--shadow-md);
        }
        
        .step-card h4 {
            font-size: 20px;
            margin-bottom: 12px;
        }
        
        .step-card p {
            color: var(--text-light);
            font-size: 15px;
            margin: 0;
        }
        
        .step-connector {
            position: absolute;
            top: 80px;
            right: -40%;
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
            opacity: 0.3;
        }
        
        /* ==================== FEATURED RESTAURANTS ==================== */
        .restaurants-section {
            background: var(--light);
        }
        
        .restaurant-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .restaurant-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        
        .restaurant-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .restaurant-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .restaurant-card:hover .restaurant-image img {
            transform: scale(1.08);
        }
        
        .restaurant-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 6px 12px;
            background: var(--white);
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .restaurant-favorite {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .restaurant-favorite:hover {
            color: var(--primary);
            transform: scale(1.1);
        }
        
        .restaurant-content {
            padding: 20px;
        }
        
        .restaurant-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
        }
        
        .restaurant-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            color: var(--text-light);
        }
        
        .restaurant-meta .rating {
            color: var(--accent);
        }
        
        .restaurant-content h5 {
            font-size: 18px;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }
        
        .restaurant-card:hover .restaurant-content h5 {
            color: var(--primary);
        }
        
        .restaurant-content p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 16px;
        }
        
        .restaurant-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .restaurant-tag {
            padding: 4px 12px;
            background: var(--light);
            border-radius: var(--radius-full);
            font-size: 12px;
            color: var(--text);
        }
        
        /* ==================== POPULAR DISHES ==================== */
        .dishes-section {
            background: var(--white);
        }
        
        .dish-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(26, 26, 46, 0.06);
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .dish-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        
        .dish-image {
            position: relative;
            height: 180px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 16px;
        }
        
        .dish-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .dish-card:hover .dish-image img {
            transform: scale(1.08);
        }
        
        .dish-discount {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 10px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
        }
        
        .dish-content h5 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        
        .dish-content p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 16px;
        }
        
        .dish-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .dish-price {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .dish-price .old-price {
            font-size: 14px;
            color: var(--text-light);
            text-decoration: line-through;
            margin-left: 8px;
            font-weight: 400;
        }
        
        .dish-add-btn {
            width: 44px;
            height: 44px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: var(#2D2D44);
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-primary);
        }
        
        .dish-add-btn:hover {
            transform: scale(1.1) rotate(90deg);
        }
        
        .dish-add-btn.added {
            background: var(--gradient-success);
        }
        
        /* ==================== APP FEATURES ==================== */
        .features-section {
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }
        
        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .features-content {
            position: relative;
            z-index: 2;
        }
        
        .features-section .section-badge {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }
        
        .features-section .section-title {
            color: var(--white);
        }
        
        .features-section .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .feature-item {
            display: flex;
            gap: 20px;
            margin-bottom: 32px;
        }
        
        .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            background: var(--gradient-primary);
            color: var(--white);
            transform: scale(1.1);
        }
        
        .feature-text h5 {
            font-size: 18px;
            color: var(--white);
            margin-bottom: 8px;
        }
        
        .feature-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }
        
        .app-mockup {
            position: relative;
        }
        
        .app-mockup img {
            width: 100%;
            max-width: 300px;
            border-radius: 40px;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
        }
        
        .app-mockup::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }
        
        /* ==================== TESTIMONIALS ==================== */
        .testimonials-section {
            background: var(--light);
        }
        
        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 32px;
            box-shadow: var(--shadow-sm);
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 80px;
            font-weight: 800;
            color: var(--light);
            line-height: 1;
        }
        
        .testimonial-rating {
            display: flex;
            gap: 4px;
            color: var(--accent);
            margin-bottom: 16px;
        }
        
        .testimonial-text {
            font-size: 16px;
            color: var(--text);
            margin-bottom: 24px;
            position: relative;
            z-index: 2;
            line-height: 1.7;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .author-image {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .author-info h6 {
            font-size: 16px;
            margin-bottom: 4px;
        }
        
        .author-info p {
            font-size: 13px;
            color: var(--text-light);
            margin: 0;
        }
        
        /* ==================== DOWNLOAD APP ==================== */
        .download-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .download-card {
            background: var(--gradient-primary);
            border-radius: var(--radius-xl);
            padding: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .download-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .download-card::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .download-content {
            position: relative;
            z-index: 2;
        }
        
        .download-content h2 {
            color: var(--white);
            font-size: 40px;
            margin-bottom: 16px;
        }
        
        .download-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            margin-bottom: 32px;
        }
        
        .download-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .store-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 24px;
            background: var(--dark);
            border-radius: var(--radius-md);
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .store-btn:hover {
            background: var(--white);
            color: var(--dark);
            transform: translateY(-3px);
        }
        
        .store-btn i {
            font-size: 28px;
        }
        
        .store-btn .store-text {
            text-align: left;
        }
        
        .store-btn .store-text span {
            font-size: 11px;
            display: block;
            opacity: 0.8;
        }
        
        .store-btn .store-text strong {
            font-size: 16px;
            font-weight: 600;
        }
        
        .download-image {
            position: relative;
            z-index: 2;
        }
        
        .download-image img {
            max-width: 350px;
            border-radius: 30px;
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
        }

        /* Cart Sidebar Styles */
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 46, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1040;
        }
        
        .cart-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 380px;
            max-width: 90vw;
            height: 100%;
            background: var(--white);
            box-shadow: -10px 0 40px rgba(0,0,0,0.15);
            z-index: 1050;
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
        }
        
        .cart-sidebar.active {
            right: 0;
        }
        
        .cart-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            border-bottom: 1px solid rgba(26, 26, 46, 0.08);
        }
        
        .cart-header h5 {
            margin: 0;
            font-size: 20px;
            font-weight: 700;
        }
        
        .cart-close-btn {
            background: transparent;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: var(--text-light);
            transition: color 0.3s ease;
        }
        
        .cart-close-btn:hover {
            color: var(--primary);
        }
        
        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 20px 24px;
        }
        
        .cart-empty {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-light);
        }
        
        .cart-empty i {
            font-size: 64px;
            margin-bottom: 16px;
            opacity: 0.3;
        }
        
        .cart-empty p {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text);
        }
        
        .cart-empty span {
            font-size: 14px;
        }
        
        .cart-item {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(26, 26, 46, 0.06);
            animation: slideIn 0.3s ease;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .cart-item-image {
            width: 70px;
            height: 70px;
            border-radius: var(--radius-md);
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .cart-item-details {
            flex: 1;
        }
        
        .cart-item-details h6 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
        }
        
        .cart-item-price {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .cart-item-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }
        
        .qty-btn {
            width: 28px;
            height: 28px;
            border: 1px solid rgba(26, 26, 46, 0.15);
            background: var(--white);
            border-radius: var(--radius-sm);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .qty-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .qty-value {
            font-weight: 600;
            min-width: 24px;
            text-align: center;
        }
        
        .cart-item-remove {
            background: transparent;
            border: none;
            color: #dc3545;
            cursor: pointer;
            font-size: 18px;
            padding: 8px;
            transition: transform 0.3s ease;
            align-self: flex-start;
        }
        
        .cart-item-remove:hover {
            transform: scale(1.2);
        }
        
        .cart-footer {
            padding: 20px 24px;
            border-top: 1px solid rgba(26, 26, 46, 0.08);
            background: var(--light);
        }
        
        .cart-total {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            font-size: 18px;
        }
        
        .cart-total strong {
            font-size: 24px;
            color: var(--primary);
        }
        
        /* ==================== CONTACT SECTION ==================== */
        .contact-section {
            background: var(--light);
        }
        
        .contact-info-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 40px;
            height: 100%;
            box-shadow: var(--shadow-sm);
        }
        
        .contact-info-card h3 {
            font-size: 28px;
            margin-bottom: 16px;
        }
        
        .contact-info-card > p {
            color: var(--text-light);
            margin-bottom: 32px;
        }
        
        .contact-item {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }
        
        .contact-icon {
            width: 52px;
            height: 52px;
            background: var(--light);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            background: var(--gradient-primary);
            color: var(--white);
        }
        
        .contact-details h6 {
            font-size: 16px;
            margin-bottom: 4px;
        }
        
        .contact-details p {
            font-size: 14px;
            color: var(--text-light);
            margin: 0;
        }
        
        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 32px;
        }
        
        .social-link {
            width: 44px;
            height: 44px;
            background: var(--light);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--gradient-primary);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .contact-form-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 40px;
            box-shadow: var(--shadow-sm);
        }
        
        .contact-form-card h3 {
            font-size: 28px;
            margin-bottom: 32px;
        }
        
        .form-floating {
            margin-bottom: 20px;
        }
        
        .form-floating > .form-control,
        .form-floating > .form-select {
            border: 2px solid var(--light);
            border-radius: var(--radius-md);
            padding: 16px;
            height: auto;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .form-floating > .form-control:focus,
        .form-floating > .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
        }
        
        .form-floating > label {
            padding: 16px;
            color: var(--text-light);
        }
        
        .form-floating > textarea.form-control {
            min-height: 140px;
        }
        
        .contact-form-card .btn-primary-custom {
            width: 100%;
            padding: 16px;
            font-size: 16px;
        }
        
        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--dark);
            padding-top: 80px;
        }
        
        .footer-brand {
            margin-bottom: 24px;
        }
        
        .footer-brand .navbar-brand {
            color: var(--white) !important;
        }
        
        .footer-brand .brand-icon {
            background: var(--gradient-primary);
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
            margin-bottom: 24px;
            max-width: 300px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--gradient-primary);
            transform: translateY(-3px);
        }
        
        .footer-title {
            color: var(--white);
            font-size: 18px;
            margin-bottom: 24px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-newsletter p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
            margin-bottom: 20px;
        }
        
        .newsletter-form {
            display: flex;
            gap: 12px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 14px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: var(--radius-full);
            color: var(--white);
            font-size: 14px;
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-form input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
        }
        
        .newsletter-form button {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            transform: scale(1.1);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 24px 0;
            margin-top: 60px;
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            margin: 0;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 24px;
            justify-content: flex-end;
        }
        
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: var(--primary);
        }
        
        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 48px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .hero-image-wrapper {
                margin-top: 60px;
            }
            
            .hero-floating-card.delivery {
                left: 0;
            }
            
            .hero-floating-card.rating {
                right: 0;
            }
            
            .step-connector {
                display: none;
            }
            
            .download-card {
                padding: 40px;
            }
            
            .download-image {
                margin-top: 40px;
                text-align: center;
            }
        }
        
        @media (max-width: 767.98px) {
            .section-padding {
                padding: 70px 0;
            }
            
            .hero-section {
                padding: 120px 0 70px;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .hero-stats {
                gap: 24px;
            }
            
            .stat-number {
                font-size: 28px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .hero-buttons .btn {
                width: 100%;
            }
            
            .footer-bottom-links {
                justify-content: flex-start;
                margin-top: 16px;
            }
            
            .download-buttons {
                flex-direction: column;
            }
            
            .store-btn {
                justify-content: center;
            }
        }
        
        /* ==================== BACK TO TOP ==================== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: var(--shadow-primary);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
        }

/* Dropdown hover */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
