  :root {
            --coffee-brown: #4B2E2E;
            --cream: #F5E6CC;
            --caramel: #C69C72;
            --black: #1C1C1C;
            --dark-brown: #3a2323;
            --light-cream: #FDF8F0;
        }
         html{
             overflow-x: hidden;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--black);
            overflow-x: hidden;
            scroll-behavior: smooth;
            background-color: var(--light-cream);
        }
        
        h1, h2, h3, h4, .font-serif {
            font-family: 'Playfair Display', serif;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--cream);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--caramel);
            border-radius: 5px;
        }
        
        ::-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.1);
        }
        
        /* Hero Section */
        .hero-slider {
            position: relative;
            height: 80vh;
            overflow: hidden;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            color: white;
            text-align: center;
            padding-top: 20%;
        }
        
        .slider-indicators {
            position: absolute;
            bottom: 40px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
            z-index: 10;
        }
        
        .slider-indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .slider-indicator.active {
            background: white;
            transform: scale(1.3);
        }
        
        .slider-indicator::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .slider-indicator.active::after {
            opacity: 1;
        }
        
        /* Blog Styles */
        .blog-card {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }
        
        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
        }
        
        .blog-card:hover::before {
            opacity: 1;
        }
        
        .blog-category {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        
        .category-coffee {
            background: var(--coffee-brown);
            color: white;
        }
        
        .category-shakes {
            background: #8B4513;
            color: white;
        }
        
        .category-sandwiches {
            background: #D2691E;
            color: white;
        }
        
        .category-pastries {
            background: var(--caramel);
            color: white;
        }
        
        .category-guides {
            background: #5D4037;
            color: white;
        }
        
        .read-time {
            color: #6B7280;
            font-size: 0.9rem;
        }
        
        .author-info {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        
        .author-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 12px;
            border: 2px solid var(--cream);
        }
        
        /* Featured Post */
        .featured-post {
            position: relative;
            height: 550px;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .featured-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
            color: white;
        }
        
        /* Sidebar */
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 28px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .popular-post {
            display: flex;
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px solid rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        
        .popular-post:hover {
            transform: translateX(5px);
        }
        
        .popular-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .popular-post img {
            width: 85px;
            height: 85px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 15px;
        }
        
        .tag {
            display: inline-block;
            background: rgba(75, 46, 46, 0.1);
            color: var(--coffee-brown);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 8px;
            margin-bottom: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .tag:hover {
            background: var(--coffee-brown);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Newsletter Form */
        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }
        
        .newsletter-input {
            flex-grow: 1;
            padding: 12px 16px;
            border: 1px solid #ddd;
            border-radius: 8px 0 0 8px;
            outline: none;
            transition: border-color 0.3s ease;
        }
        
        .newsletter-input:focus {
            border-color: var(--coffee-brown);
        }
        
        .newsletter-btn {
            background: var(--coffee-brown);
            color: white;
            border: none;
            padding: 0 18px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background: var(--dark-brown);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        }
        
        .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;
        }
        
        /* Button Styles */
        .btn-primary {
            background: var(--coffee-brown);
            color: white;
            padding: 14px 28px;
            border-radius: 8px;
            transition: all 0.4s ease;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            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: left 0.7s ease;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            background: var(--dark-brown);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(75, 46, 46, 0.25);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--coffee-brown);
            border: 2px solid var(--coffee-brown);
            padding: 12px 26px;
            border-radius: 8px;
            transition: all 0.4s ease;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-secondary:hover {
            background: var(--coffee-brown);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(75, 46, 46, 0.2);
        }
        
        .section-padding {
            padding: 90px 0;
        }
        
        .text-shadow {
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hover-lift {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
        }
        
        /* Advanced Features */
        .reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: var(--caramel);
            z-index: 9999;
            transition: width 0.3s ease;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--coffee-brown);
            color: white;
            border-radius: 50%;
            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 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--dark-brown);
            transform: translateY(-3px);
        }
        
        .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;
        }
        
        /* Search Modal */
        .search-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 200;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .search-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .search-container {
            background: white;
            width: 90%;
            max-width: 600px;
            border-radius: 12px;
            padding: 30px;
            transform: translateY(-20px);
            transition: transform 0.3s ease;
        }
        
        .search-modal.active .search-container {
            transform: translateY(0);
        }
        
        body.dark-mode .search-container {
            background: #252525;
            color: #e0e0e0;
        }
        
        /* Article Reading Time */
        .reading-time {
            display: inline-flex;
            align-items: center;
            background: rgba(198, 156, 114, 0.1);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--caramel);
        }
        
        /* Premium Badge */
        .premium-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #C69C72, #8B4513);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        /* Filter Buttons */
        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
            justify-content: center;
        }
        
        .filter-btn {
            padding: 8px 16px;
            border: 1px solid var(--coffee-brown);
            background: transparent;
            color: var(--coffee-brown);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--coffee-brown);
            color: white;
        }
        
        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;
        }
        
        /* Social Share */
        .social-share {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: transform 0.3s ease;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
        }
        
        .facebook { background: #3b5998; }
        .twitter { background: #1da1f2; }
        .pinterest { background: #bd081c; }
        .linkedin { background: #0077b5; }