      :root {
            --coffee-brown: #4B2E2E;
            --cream: #F5E6CC;
            --caramel: #C69C72;
            --black: #1C1C1C;
        }
        
        /* Custom Font */
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');
        html{
             overflow-x: hidden;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--black);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        h1, h2, h3, h4, .font-serif {
            font-family: 'Playfair Display', serif;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--cream);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--caramel);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--coffee-brown);
        }
        
        /* Navigation */
        .nav-open {
            transform: translateX(0%) !important;
        }
        
        /* Hero Section */
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }
        
        .grid-item {
            transition: all 0.3s ease;
        }
        
        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        /* Marquee */
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }
        
        .marquee {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }
        
        .marquee-reverse {
            animation: marquee-reverse 20s linear infinite;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-100%); }
        }
        
        @keyframes marquee-reverse {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(0%); }
        }
        
        /* Cart Notification */
        .cart-notification {
            position: fixed;
            top: 100px;
            right: 20px;
            background: var(--caramel);
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transform: translateX(150%);
            transition: transform 0.3s ease;
        }
        
        .cart-notification.show {
            transform: translateX(0);
        }
        
        /* Swiper */
        .swiper {
            width: 100%;
            height: 100%;
        }
        
        .swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Patterns */
        .zigzag-pattern {
            background: repeating-linear-gradient(
                45deg,
                var(--cream),
                var(--cream) 10px,
                var(--caramel) 10px,
                var(--caramel) 20px
            );
        }
        
        /* Coffee Process Section */
        .process-step {
            position: relative;
            padding-left: 80px;
            margin-bottom: 40px;
        }
        
        .process-step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 60px;
            height: 60px;
            background: var(--coffee-brown);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
        }
        
        /* Cart Modal */
        .cart-modal {
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }
        
        .cart-modal.open {
            transform: translateX(0);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.open {
            transform: translateX(0);
        }
        
        /* Loading Animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .loading-pulse {
            animation: pulse 2s infinite;
        }
        
        /* Floating Animation */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 3s ease-in-out infinite;
        }
        
        /* Coffee Steam Animation */
        .coffee-steam {
            position: relative;
        }
        
        .steam {
            position: absolute;
            height: 80px;
            width: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.7);
            opacity: 0;
        }
        
        .steam1 {
            top: -30px;
            left: 20px;
            animation: steam-anim 3s ease-out infinite;
            animation-delay: 0.5s;
        }
        
        .steam2 {
            top: -40px;
            left: 40px;
            animation: steam-anim 3s ease-out infinite;
            animation-delay: 1s;
        }
        
        .steam3 {
            top: -30px;
            left: 60px;
            animation: steam-anim 3s ease-out infinite;
            animation-delay: 1.5s;
        }
        
        @keyframes steam-anim {
            0% {
                transform: translateY(0) scale(1);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(-20px) scale(2);
                opacity: 0;
            }
        }

        /* New Professional Styles */
        .btn-primary {
            background: var(--coffee-brown);
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-primary:hover {
            background: #3a2323;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(75, 46, 46, 0.2);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--coffee-brown);
            border: 2px solid var(--coffee-brown);
            padding: 10px 22px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-secondary:hover {
            background: var(--coffee-brown);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(75, 46, 46, 0.2);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .text-shadow {
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .gradient-overlay {
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
        }
        
        .input-focus {
            transition: all 0.3s ease;
        }
        
        .input-focus:focus {
            box-shadow: 0 0 0 3px rgba(198, 156, 114, 0.3);
            border-color: var(--caramel);
        }
        
        .loading-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: var(--caramel);
            width: 0%;
            z-index: 9999;
            transition: width 0.4s ease;
        }
        
        .order-tracker {
            background: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .tracker-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 40px 0;
        }
        
        .tracker-steps::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 4px;
            background: #e2e8f0;
            z-index: 1;
        }
        
        .tracker-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .step-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        
        .step-active .step-icon {
            background: var(--caramel);
            color: white;
        }
        
        .step-complete .step-icon {
            background: var(--coffee-brown);
            color: white;
        }
        
        .step-label {
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
        }
        
        .step-active .step-label {
            color: var(--coffee-brown);
            font-weight: 600;
        }
        
        .step-complete .step-label {
            color: var(--coffee-brown);
        }
        
        @media (max-width: 768px) {
            .tracker-steps {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }
            
            .tracker-steps::before {
                width: 4px;
                height: 100%;
                top: 0;
                left: 20px;
            }
            
            .tracker-step {
                flex-direction: row;
                gap: 16px;
            }
            
            .step-label {
                margin-top: 0;
            }
        }
        /* Fix for testimonial cards */
 /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--coffee-brown);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 100;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--caramel);
            transform: translateY(-5px);
        }