:root {
    --cream: #F5F1EB;
    --espresso: #1A1612;
    --coffee-brown: #3D2B1F;
    --caramel: #C4A77D;
    --copper: #B87333;
    --milk-foam: #FAF8F5;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--espresso); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; color: var(--espresso); }
.container { width: 90%; max-width: 1400px; margin: 0 auto; }

.section-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; text-align: center; margin-bottom: 2rem; }
.subtitle { color: var(--copper); text-transform: uppercase; letter-spacing: 4px; font-size: 0.75rem; display: block; margin-bottom: 1rem; text-align: center; font-weight: 600; }
.text-center { text-align: center; }
.lead { font-size: 1.1rem; color: var(--coffee-brown); max-width: 600px; margin: 0 auto; font-weight: 300; opacity: 0.8; }

.btn { display: inline-block; padding: 1.2rem 2.5rem; border: 1px solid var(--espresso); color: var(--espresso); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem; transition: all 0.4s; cursor: pointer; background: transparent; font-family: var(--font-body); }
.btn:hover { background: var(--espresso); color: var(--cream); }
.btn-hero { border-color: var(--cream); color: var(--cream); }
.btn-hero:hover { background: var(--cream); color: var(--espresso); }
.btn-gold { background: var(--caramel); border-color: var(--caramel); color: var(--cream); }
.btn-gold:hover { background: var(--copper); border-color: var(--copper); }

#preloader { position: fixed; inset: 0; background: var(--espresso); z-index: 9999; display: flex; justify-content: center; align-items: center; flex-direction: column; transition: opacity 0.8s, visibility 0.8s; }
.loader-logo { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 0.3em; color: var(--cream); font-weight: 300; margin-bottom: 3rem; opacity: 0; animation: fadeUp 1s forwards 0.3s; }
.coffee-cup { width: 80px; height: 80px; position: relative; margin-bottom: 30px; opacity: 0; animation: fadeInCup 1s forwards 0.5s; }
.cup-body { width: 50px; height: 45px; border: 3px solid var(--caramel); border-radius: 0 0 15px 15px; position: absolute; bottom: 0; left: 15px; }
.cup-handle { width: 18px; height: 22px; border: 3px solid var(--caramel); border-left: none; border-radius: 0 12px 12px 0; position: absolute; right: -3px; top: 50%; transform: translateY(-50%); }
.steam { position: absolute; width: 3px; height: 18px; background: var(--caramel); border-radius: 50%; opacity: 0.7; animation: steam 2s ease-in-out infinite; }
.steam:nth-child(1) { left: 22px; top: -5px; }
.steam:nth-child(2) { left: 32px; top: -5px; animation-delay: 0.3s; }
.steam:nth-child(3) { left: 42px; top: -5px; animation-delay: 0.6s; }
.loader-text { color: var(--caramel); font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 20px; opacity: 0; animation: fadeUp 1s forwards 0.8s; }
.loading-dots span { animation: blink 1.4s infinite both; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInCup { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
@keyframes steam { 0% { transform: translateY(0) scaleX(1); opacity: 0.7; } 50% { transform: translateY(-15px) scaleX(1.2); opacity: 0.3; } 100% { transform: translateY(-30px) scaleX(0.8); opacity: 0; } }
@keyframes blink { 0%, 80%, 100% { opacity: 0; } 40% { opacity: 1; } }

header { position: fixed; top: 0; left: 0; width: 100%; padding: 0.8rem 4%; z-index: 1000; display: flex; justify-content: space-between; align-items: center; transition: all 0.4s; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
header.scrolled { padding: 0.6rem 4%; }
header.header-light { background: #fff; }
header.header-light .menu-toggle span { background: var(--espresso); }
header.header-light .brand { color: var(--espresso); }
header.header-light .cart-icon svg { stroke: var(--espresso); }

.menu-toggle { width: 40px; height: 40px; display: none; flex-direction: column; justify-content: center; gap: 6px; cursor: pointer; padding: 8px; background: transparent; border: none; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--espresso); transition: all 0.3s ease; }
.menu-toggle:hover span:nth-child(2) { width: 60%; }

.brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; letter-spacing: 0.15em; display: flex; align-items: center; color: var(--espresso); line-height: 1.2; }
.brand small { font-size: 0.55rem; letter-spacing: 0.3em; opacity: 0.6; text-transform: uppercase; }
.header-logo { height: 70px; width: auto; transition: all 0.3s; background: #fff; padding: 5px; }
header.scrolled .header-logo { height: 55px; }

.nav-menu { display: flex; gap: 35px; align-items: center; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-menu a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--espresso); position: relative; font-weight: 500; }
.nav-menu a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--caramel); transition: width 0.3s; }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--copper); }

.cart-icon { position: relative; cursor: pointer; padding: 8px; background: transparent; border: none; }
.cart-icon svg { width: 26px; height: 26px; stroke: var(--espresso); stroke-width: 1.5; fill: none; }
.cart-count { position: absolute; top: 0; right: -2px; background: var(--copper); color: var(--cream); border-radius: 50%; width: 18px; height: 18px; display: none; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 600; }

.header-right { display: flex; align-items: center; gap: 0.5rem; }
.account-link { display: flex; align-items: center; gap: 0.5rem; color: var(--espresso); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.3s; }
.account-link:hover { color: var(--copper); }
.account-link svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.5; fill: none; }

.mobile-menu { position: fixed; top: 0; left: -100%; width: 100%; max-width: 350px; height: 100vh; background: var(--espresso); z-index: 2000; padding: 5rem 2.5rem; transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1); overflow-y: auto; }
.mobile-menu.active { left: 0; }
.mobile-menu-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--cream); font-size: 1.5rem; }
.mobile-menu-close:hover { background: var(--caramel); border-color: var(--caramel); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { color: var(--cream); text-decoration: none; transition: all 0.3s; }
.mobile-menu nav a:hover { color: var(--caramel); }
.mobile-menu nav a.menu-title { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; padding: 1.5rem 0 0.5rem; color: var(--caramel); opacity: 0.8; margin-top: 0.5rem; }
.mobile-menu nav a.menu-title:first-child { margin-top: 0; padding-top: 0; }
.mobile-menu nav a.menu-sub { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: var(--cream); }
.mobile-menu nav a.menu-sub:hover { padding-left: 0.5rem; color: var(--caramel); }
.mobile-menu nav a.menu-link { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: var(--cream); margin-top: 1rem; }
.mobile-menu nav a.menu-link:hover { padding-left: 0.5rem; color: var(--caramel); }
.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.4s; }
.menu-overlay.active { opacity: 1; visibility: visible; }

.hero-slider { position: relative; height: 100vh; min-height: 700px; overflow: hidden; }
.hero-slider .slide { position: absolute; inset: 0; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 1s ease; }
.hero-slider .slide.active { opacity: 1; }
.hero-slider .slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26, 22, 18, 0.3) 0%, rgba(26, 22, 18, 0.7) 100%); }
.hero-slider .hero-content { position: relative; z-index: 2; text-align: center; color: var(--cream); max-width: 900px; padding: 0 2rem; }
.hero-tagline { font-size: 0.8rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--caramel); margin-bottom: 2rem; }
.hero-slider .hero-title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; line-height: 1.1; margin-bottom: 2rem; color: var(--cream); }
.hero-slider .hero-title em { font-style: italic; color: var(--caramel); }
.hero-slider .hero-sub { font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; opacity: 0.8; }
.hero-cta { display: inline-flex; align-items: center; gap: 1rem; padding: 1.2rem 3rem; background: transparent; border: 1px solid var(--cream); color: var(--cream); font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.4s; }
.hero-cta:hover { background: var(--cream); color: var(--espresso); }
.hero-cta svg { width: 20px; height: 20px; }

.slider-nav button { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--cream); width: 50px; height: 50px; font-size: 1.2rem; cursor: pointer; transition: all 0.3s; border-radius: 50%; }
.slider-nav button:hover { background: var(--caramel); border-color: var(--caramel); }
.slider-prev { left: 30px; }
.slider-next { right: 30px; }
.slider-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; }
.slider-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
.slider-dots .dot.active, .slider-dots .dot:hover { background: var(--caramel); transform: scale(1.3); }

.hero { height: 100vh; min-height: 700px; width: 100%; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26, 22, 18, 0.3) 0%, rgba(26, 22, 18, 0.7) 100%); }
.hero .hero-content { position: relative; z-index: 2; text-align: center; color: var(--cream); max-width: 900px; padding: 0 2rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; margin-bottom: 1.5rem; color: var(--cream); }
.hero-sub { font-size: 1.1rem; margin-bottom: 2.5rem; opacity: 0.8; }

.categories-section { padding: 8rem 0; background: var(--cream); }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.category-card { position: relative; aspect-ratio: 4/5; overflow: hidden; cursor: pointer; text-decoration: none; }
.category-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26, 22, 18, 0.9) 0%, rgba(26, 22, 18, 0.3) 50%, transparent 100%); z-index: 1; transition: opacity 0.5s; }
.category-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.category-card:hover .category-img { transform: scale(1.1); }
.category-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; z-index: 2; color: var(--cream); }
.category-icon { width: 50px; height: 50px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.4s; }
.category-card:hover .category-icon { background: var(--caramel); border-color: var(--caramel); }
.category-icon svg { width: 24px; height: 24px; stroke: var(--cream); stroke-width: 1.5; fill: none; }
.category-name { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.5rem; color:white !important;}
.category-count { font-size: 0.8rem; opacity: 0.7; }

.products-section { padding: 8rem 0; background: var(--milk-foam); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 60px; }
.product-card { background: #fff; position: relative; transition: all 0.4s; overflow: hidden; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.product-img { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--cream); display: block; cursor: pointer; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge { position: absolute; top: 1rem; left: 1rem; right: auto; background: var(--espresso); color: var(--cream); padding: 0.5rem 1rem; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; }
.product-content { padding: 1.5rem; }
.product-origin { color: var(--copper); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 0.5rem; font-weight: 600; }
.product-name { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; }
.product-name a { text-decoration: none; color: inherit; }
.product-name a:hover { color: var(--copper); }
.product-desc { font-size: 0.85rem; color: var(--coffee-brown); opacity: 0.7; margin-bottom: 1rem; line-height: 1.5; }
.product-features { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.product-features span { padding: 0.3rem 0.6rem; background: var(--cream); font-size: 0.65rem; color: var(--coffee-brown); border-radius: 3px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.05); }
.product-price { font-size: 1.4rem; color: var(--coffee-brown); font-family: var(--font-display); }
.price-unit { font-size: 0.8rem; color: var(--coffee-brown); opacity: 0.6; }
.add-to-cart { background: transparent; border: 1px solid var(--espresso); color: var(--espresso); padding: 0.8rem 1.5rem; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; cursor: pointer; transition: all 0.3s; font-weight: 600; font-family: var(--font-body); }
.add-to-cart:hover { background: var(--espresso); color: var(--cream); }

.stats-section { padding: 6rem 0; background: var(--espresso); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; text-align: center; }
.stat-item { padding: 2rem; border: 1px solid rgba(255,255,255,0.1); }
.stat-number { font-size: 3.5rem; font-family: var(--font-display); color: var(--caramel); margin-bottom: 0.5rem; display: block; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.2em; }

.about-section { padding: 8rem 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image img { width: 100%; height: 500px; object-fit: cover; }
.about-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; line-height: 1.3; }
.about-content p { color: var(--coffee-brown); margin-bottom: 2rem; line-height: 1.9; opacity: 0.8; }

.newsletter-section { padding: 8rem 0; background: var(--milk-foam); text-align: center; }
.newsletter-form { display: flex; justify-content: center; gap: 1rem; max-width: 500px; margin: 2rem auto 0; }
.newsletter-form input { flex: 1; padding: 1.2rem 1.5rem; border: 1px solid rgba(0,0,0,0.1); background: white; font-family: var(--font-body); font-size: 0.95rem; }
.newsletter-form input:focus { outline: none; border-color: var(--caramel); }
.newsletter-form button { white-space: nowrap; }

.contact-section { padding: 8rem 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 2rem; }
.contact-list li { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.contact-list li svg { color: var(--copper); flex-shrink: 0; margin-top: 5px; }
.contact-list li strong { display: block; margin-bottom: 0.3rem; }
.contact-list li span { color: var(--coffee-brown); opacity: 0.8; }
.contact-form input, .contact-form textarea { width: 100%; padding: 1.2rem 1.5rem; border: 1px solid rgba(0,0,0,0.1); background: white; margin-bottom: 1.5rem; font-family: var(--font-body); font-size: 1rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--caramel); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-form button { width: 100%; }

footer { background: var(--espresso); color: var(--cream); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1rem; color: var(--cream); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer-social a:hover { background: var(--caramel); border-color: var(--caramel); }
.footer-social svg { width: 18px; height: 18px; stroke: var(--cream); stroke-width: 1.5; fill: none; }
.footer-links h4, .footer-col h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--cream); }
.footer-links a, .footer-col a { display: block; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer-links a:hover, .footer-col a:hover { color: var(--caramel); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; }

.cart-sidebar { position: fixed; right: -100%; top: 0; width: 100%; max-width: 450px; height: 100vh; background: #fff; box-shadow: -5px 0 30px rgba(0,0,0,0.2); z-index: 2001; transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1); display: flex; flex-direction: column; }
.cart-sidebar.active { right: 0; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.4s; }
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-header { padding: 2rem; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; justify-content: space-between; align-items: center; }
.cart-header h2 { font-family: var(--font-display); font-size: 1.5rem; }
.close-cart { width: 40px; height: 40px; border: 1px solid rgba(0,0,0,0.1); border-radius: 50%; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.close-cart:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
.cart-item { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.cart-item-img { width: 80px; height: 80px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.25rem; }
.cart-item-origin { font-size: 0.8rem; color: var(--copper); margin-bottom: 0.75rem; }
.cart-item-controls { display: flex; align-items: center; gap: 1rem; }
.qty-btn { width: 28px; height: 28px; border: 1px solid rgba(0,0,0,0.1); background: #fff; cursor: pointer; font-size: 1rem; }
.qty-btn:hover { background: var(--caramel); color: var(--cream); border-color: var(--caramel); }
.qty-display { min-width: 30px; text-align: center; font-weight: 600; }
.remove-item { margin-left: auto; background: transparent; border: none; color: #999; cursor: pointer; font-size: 1.2rem; }
.remove-item:hover { color: #e74c3c; }
.cart-item-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--coffee-brown); margin-top: 0.5rem; }
.cart-footer { padding: 2rem; border-top: 1px solid rgba(0,0,0,0.05); background: var(--cream); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 1.5rem; }
.cart-total-label { font-family: var(--font-display); font-size: 1.2rem; }
.cart-total-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--coffee-brown); }
.checkout-btn { display: block; text-align: center; width: 100%; padding: 1.3rem; background: var(--espresso); color: var(--cream); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; }
.checkout-btn:hover { background: var(--copper); }
.empty-cart { text-align: center; padding: 4rem 2rem; color: var(--coffee-brown); opacity: 0.6; }
.empty-cart svg { width: 60px; height: 60px; margin-bottom: 1rem; opacity: 0.3; }

.products-page { padding-top: 0; padding-bottom: 8rem; min-height: 100vh; background: var(--milk-foam); }
.page-hero { background: linear-gradient(rgba(26,22,18,0.6), rgba(26,22,18,0.7)), url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?q=80&w=1920') no-repeat center center/cover; padding: 10rem 0 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--cream); margin-bottom: 1rem; font-weight: 300; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.filter-section { padding: 2rem 0; background: var(--milk-foam); position: sticky; top: 72px; z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.05); }
.category-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.category-btn { padding: 0.8rem 1.8rem; border: 1px solid rgba(0,0,0,0.1); background: transparent; color: var(--coffee-brown); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; font-family: var(--font-body); }
.category-btn:hover { border-color: var(--caramel); color: var(--caramel); }
.category-btn.active { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }
.products-count { text-align: center; margin: 2rem 0 3rem; color: var(--coffee-brown); font-size: 0.9rem; opacity: 0.7; }
.products-count strong { color: var(--copper); }
.no-products { text-align: center; padding: 6rem 2rem; color: var(--coffee-brown); }
.no-products svg { width: 80px; height: 80px; margin-bottom: 1.5rem; opacity: 0.2; stroke: currentColor; }
.no-products h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }

@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(3, 1fr); } .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 992px) { 
    .products-grid { grid-template-columns: repeat(2, 1fr); } 
    .categories-grid { grid-template-columns: repeat(2, 1fr); } 
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 4rem; } 
    .stats-grid { grid-template-columns: repeat(2, 1fr); } 
    .footer-grid { grid-template-columns: 1fr 1fr; } 
    header { padding: 0.8rem 3%; }
    .nav-menu { display: none; }
    .menu-toggle { display: flex; }
    .brand { position: absolute; left: 50%; transform: translateX(-50%); }
    .header-logo { height: 55px; }
    header.scrolled .header-logo { height: 45px; }
    .account-link span { display: none; }
    .account-link { padding: 8px; }
}
@media (max-width: 768px) { .products-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; } .categories-grid { grid-template-columns: 1fr; } .stats-grid { grid-template-columns: 1fr; } .hero-title, .hero-slider .hero-title { font-size: 2.5rem; } .section-title { font-size: 2rem; } .cart-sidebar { max-width: 100%; } .newsletter-form { flex-direction: column; } .contact-form .form-row { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; text-align: center; } .footer-social { justify-content: center; } .slider-nav button { display: none; } .brand { font-size: 1.1rem; } .header-logo { height: 50px; } header.scrolled .header-logo { height: 40px; } .filter-section { top: 60px; } .category-btn { padding: 0.6rem 1.2rem; font-size: 0.75rem; } .page-hero {  padding-top: 150px; } }
