     :root {
            --coffee-brown: #4B2E2E;
            --cream: #F5E6CC;
            --caramel: #C69C72;
            --black: #1C1C1C;
            --light-brown: #8B5A2B;
            --dark-cream: #E8D5B5;
        }
        
        /* Custom Font */
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;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;
            background: linear-gradient(to bottom, var(--cream) 0%, #faf3e8 100%);
        }
        
        h1, h2, h3, h4, .font-serif {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--cream);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--caramel);
            border-radius: 10px;
            border: 2px solid var(--cream);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--coffee-brown);
        }
        
        /* Navigation */
        .nav-scrolled {
            background: rgba(75, 46, 46, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .mobile-menu.open {
            transform: translateX(0);
        }
        
        .btn-primary {
            background: linear-gradient(to right, var(--coffee-brown), var(--light-brown));
            color: white;
            padding: 14px 28px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(75, 46, 46, 0.2);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--coffee-brown);
            border: 2px solid var(--coffee-brown);
            padding: 12px 26px;
            border-radius: 8px;
            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(-3px);
            box-shadow: 0 10px 20px rgba(75, 46, 46, 0.2);
        }
        
        .section-padding {
            padding: 100px 0;
        }
        
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
        }
        
        .loading-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(to right, var(--caramel), var(--coffee-brown));
            width: 0%;
            z-index: 9999;
            transition: width 0.4s ease;
        }
        
        /* Checkout specific styles */
        .checkout-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .cart-item {
            transition: all 0.3s ease;
            border-bottom: 1px solid #eee;
            padding: 15px 0;
        }
        
        .cart-item:hover {
            background-color: rgba(245, 230, 204, 0.3);
        }
        
        .payment-method {
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .payment-method:hover, .payment-method.selected {
            border-color: var(--caramel);
            background-color: rgba(198, 156, 114, 0.05);
        }
        
        .payment-method.selected {
            box-shadow: 0 0 0 2px var(--caramel);
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--caramel);
            box-shadow: 0 0 0 3px rgba(198, 156, 114, 0.3);
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--coffee-brown);
        }
        
        .summary-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .summary-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--caramel), var(--coffee-brown));
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .summary-total {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--coffee-brown);
            border-bottom: none;
            padding-top: 15px;
        }
        
        /* Custom checkbox */
        .checkbox-container {
            display: flex;
            align-items: center;
            cursor: pointer;
            margin: 15px 0;
        }
        
        .custom-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid var(--caramel);
            border-radius: 4px;
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .checkbox-input:checked + .custom-checkbox {
            background-color: var(--caramel);
        }
        
        .checkbox-input:checked + .custom-checkbox::after {
            content: '✓';
            color: white;
            font-size: 14px;
        }
        
        .checkbox-input {
            display: none;
        }
        
        /* Animation for cart items */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .cart-item {
            animation: fadeIn 0.4s ease forwards;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .checkout-container {
                padding: 10px;
            }
            
            .summary-card {
                padding: 15px;
            }
        }
        
        /* Decorative Elements */
        .coffee-bean {
            position: absolute;
            opacity: 0.03;
            z-index: 0;
            pointer-events: none;
        }
        
        .bean-1 {
            top: 20%;
            left: 5%;
            width: 150px;
            height: 150px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 15 C75 15 85 40 85 50 C85 60 75 85 50 85 C25 85 15 60 15 50 C15 40 25 15 50 15 Z" fill="%234B2E2E"/></svg>');
            background-repeat: no-repeat;
        }
        
        .bean-2 {
            bottom: 10%;
            right: 8%;
            width: 120px;
            height: 120px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 15 C75 15 85 40 85 50 C85 60 75 85 50 85 C25 85 15 60 15 50 C15 40 25 15 50 15 Z" fill="%234B2E2E"/></svg>');
            background-repeat: no-repeat;
            transform: rotate(45deg);
        }
        
        /* 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);
        }
        
        /* Cart sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: right 0.4s ease;
            overflow-y: auto;
            padding: 20px;
        }
        
        .cart-sidebar.open {
            right: 0;
        }
        
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .cart-overlay.open {
            opacity: 1;
            visibility: visible;
        }
        
        /* Menu item grid */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .menu-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .menu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .menu-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .menu-item-content {
            padding: 15px;
        }
        
        .menu-item h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--coffee-brown);
        }
        
        .menu-item p {
            color: #666;
            margin-bottom: 12px;
            font-size: 14px;
        }
        
        .menu-item .price {
            font-weight: 600;
            color: var(--caramel);
            font-size: 18px;
        }
        
        .add-to-cart-btn {
            width: 100%;
            padding: 10px;
            background: var(--coffee-brown);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .add-to-cart-btn:hover {
            background: var(--light-brown);
        }
        
        /* Tabs */
        .tabs {
            display: flex;
            border-bottom: 2px solid #eee;
            margin-bottom: 20px;
        }
        
        .tab {
            padding: 12px 20px;
            cursor: pointer;
            font-weight: 500;
            color: #666;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .tab.active {
            color: var(--coffee-brown);
            border-bottom: 2px solid var(--coffee-brown);
        }
        
        /* Visual Cart Preview */
        .visual-cart {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .visual-cart.empty {
            background: rgba(255, 255, 255, 0.7);
        }
        
        .visual-cart-items {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 15px;
        }
        
        .visual-cart-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: var(--cream);
            border-radius: 8px;
            padding: 10px;
            width: 80px;
            transition: all 0.3s ease;
        }
        
        .visual-cart-item img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .visual-cart-item-name {
            font-size: 12px;
            margin-top: 5px;
            text-align: center;
        }
        
        .visual-cart-item-quantity {
            background: var(--caramel);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            position: absolute;
            top: -5px;
            right: -5px;
        }
        
        /* Order customization */
        .customization-options {
            background: rgba(245, 230, 204, 0.3);
            border-radius: 8px;
            padding: 15px;
            margin-top: 10px;
        }
        
        .option-group {
            margin-bottom: 15px;
        }
        
        .option-title {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--coffee-brown);
        }
        
        .option-items {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .option-item {
            background: white;
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 5px 12px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .option-item.selected {
            background: var(--coffee-brown);
            color: white;
            border-color: var(--coffee-brown);
        }
        
        /* Progress bar */
        .progress-bar {
            height: 6px;
            background: #e2e8f0;
            border-radius: 3px;
            overflow: hidden;
            margin: 20px 0;
        }
        
        .progress {
            height: 100%;
            background: linear-gradient(to right, var(--caramel), var(--coffee-brown));
            width: 33%;
            transition: width 0.5s ease;
        }
        
        /* Toast notifications */
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--coffee-brown);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            transform: translateX(150%);
            transition: transform 0.3s ease;
        }
        
        .toast.show {
            transform: translateX(0);
        }
        
        .toast-icon {
            margin-right: 10px;
            font-size: 20px;
        }
        
        /* Order timeline */
        .order-timeline {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            position: relative;
        }
        
        .order-timeline::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 2px;
            background: #e2e8f0;
            z-index: 1;
        }
        
        .timeline-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .timeline-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .timeline-step.active .timeline-circle {
            background: var(--caramel);
            color: white;
        }
        
        .timeline-step.completed .timeline-circle {
            background: var(--coffee-brown);
            color: white;
        }
        
        .timeline-label {
            font-size: 14px;
            color: #666;
        }
        
        .timeline-step.active .timeline-label {
            color: var(--coffee-brown);
            font-weight: 600;
        }
          body.dark-mode .filter-btn {
            border-color: #C69C72;
            color: #C69C72;
        }
        
        body.dark-mode .filter-btn.active, 
        body.dark-mode .filter-btn:hover {
            background: #C69C72;
            color: #121212;
        }
         body.dark-mode .search-container {
            background: #252525;
            color: #e0e0e0;
        }
          .dark-mode-toggle {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--coffee-brown);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
        }
        
        .dark-mode-toggle:hover {
            background: var(--dark-brown);
            transform: translateY(-3px);
        }
        
        /* Dark Mode Styles */
        body.dark-mode {
            background-color: #121212;
            color: #e0e0e0;
        }
        
        body.dark-mode .bg-white {
            background-color: #1e1e1e !important;
            color: #e0e0e0;
        }
        
        body.dark-mode .sidebar-widget {
            background-color: #252525;
            border-color: #333;
        }
        
        body.dark-mode .text-gray-600, 
        body.dark-mode .text-gray-500,
        body.dark-mode .text-gray-400 {
            color: #a0a0a0 !important;
        }
        
        body.dark-mode .blog-card {
            background-color: #252525;
        }
        
        body.dark-mode .popular-post {
            border-bottom-color: #333;
        }
         body.dark-mode .filter-btn {
            border-color: #C69C72;
            color: #C69C72;
        }
        
        body.dark-mode .filter-btn.active, 
        body.dark-mode .filter-btn:hover {
            background: #C69C72;
            color: #121212;
        }