:root {
    --cream: #FAF6EE;
    --charcoal: #1C1C1C;
    --warm-gray: #8A7A6A;
    --accent: #B5451B;
    --accent-light: #E8A070;
    --gold: #C09A3A;
    --border: #EAE2D6;
    --card-bg: #FFFFFF;
    --sand: #F0E8DA;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--charcoal); overflow-x: hidden; max-width: 100vw; }
html { overflow-x: hidden; }

/* ANNOUNCEMENT BAR */
.announcement-bar { background: var(--charcoal); color: #fff; font-size: 12px; letter-spacing: 0.08em; padding: 10px 0; text-align: center; }
.announcement-bar a { color: var(--accent-light); text-decoration: none; margin: 0 20px; }
.announcement-bar .social-icons a { color: #aaa; font-size: 14px; }
.announcement-bar .social-icons a:hover { color: #fff; }

/* HEADER */
.main-header { background: var(--cream); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(12px); }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; letter-spacing: 0.18em; color: var(--charcoal); text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.logo span { font-size: 10px; letter-spacing: 0.3em; font-family: 'DM Sans', sans-serif; font-weight: 400; color: var(--warm-gray); text-transform: uppercase; }
.search-bar { background: #fff; border: 1px solid var(--border); border-radius: 30px; padding: 10px 20px; display: flex; align-items: center; gap: 10px; transition: border-color 0.2s; position: relative; }
.search-bar:focus-within { border-color: var(--charcoal); }
.search-bar input { border: none; outline: none; background: transparent; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--charcoal); width: 100%; }
.search-bar input::placeholder { color: var(--warm-gray); }
.header-icons a { color: var(--charcoal); font-size: 13px; text-decoration: none; transition: color 0.2s; position: relative; }
.header-icons a:hover { color: var(--accent); }
.cart-badge { position: absolute; top: -6px; right: -6px; background: var(--accent); color: #fff; font-size: 9px; font-weight: 600; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* NAVBAR */
.main-nav { background: #fff; border-bottom: 1px solid var(--border); }
.main-nav .nav-link { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; color: var(--charcoal) !important; padding: 14px 18px !important; text-transform: uppercase; transition: color 0.2s; position: relative; }
.main-nav .nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 2px; background: var(--accent); transition: all 0.3s; }
.main-nav .nav-link:hover::after { left: 18px; right: 18px; }
.main-nav .nav-link:hover { color: var(--accent) !important; }
.main-nav .nav-link.sale { color: var(--accent) !important; font-weight: 600; }
.main-nav .dropdown-menu { border: 1px solid var(--border); border-radius: 0; box-shadow: 0 20px 60px rgba(0,0,0,0.08); padding: 8px 0; min-width: 200px; background: #fff; animation: dropIn 0.2s ease; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.main-nav .dropdown-item { font-size: 13px; padding: 10px 24px; color: var(--charcoal); transition: all 0.15s; }
.main-nav .dropdown-item:hover { background: var(--cream); color: var(--accent); padding-left: 30px; }

/* MOBILE CATS */
.mobile-cats { background: #fff; border-bottom: 1px solid var(--border); overflow-x: auto; white-space: nowrap; padding: 10px 16px; scrollbar-width: none; }
.mobile-cats::-webkit-scrollbar { display: none; }
.mobile-cat-item { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; margin-right: 20px; text-decoration: none; color: var(--charcoal); font-size: 11px; font-weight: 500; letter-spacing: 0.04em; }
.mobile-cat-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 22px; border: 2px solid transparent; transition: all 0.2s; }
.mobile-cat-item:hover .mobile-cat-icon { border-color: var(--accent); background: #fff; }

/* HERO */
.hero-section { position: relative; overflow: hidden; }
.hero-slide { position: relative; height: 90vh; min-height: 500px; display: flex; align-items: center; }
.hero-slide-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(28,20,10,0.72) 0%, rgba(28,20,10,0.25) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: 580px; }
.hero-eyebrow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 16px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 7vw, 88px); font-weight: 300; color: #fff; line-height: 1.05; margin-bottom: 20px; }
.hero-subtitle { color: rgba(255,255,255,0.75); font-size: 15px; font-weight: 300; margin-bottom: 36px; line-height: 1.7; }
.btn-hero { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--charcoal); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 36px; border: none; border-radius: 40px; text-decoration: none; transition: all 0.3s; }
.btn-hero:hover { background: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(181,69,27,0.35); }
.btn-hero-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); margin-left: 12px; }
.btn-hero-outline:hover { background: #fff; color: var(--charcoal); border-color: #fff; }
.hero-controls { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; z-index: 10; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; border: none; }
.hero-dot.active { background: #fff; width: 28px; border-radius: 4px; }
.carousel-arrow { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; backdrop-filter: blur(4px); }
.carousel-arrow:hover { background: rgba(255,255,255,0.3); }

/* SIDE OFFER */
.side-offer { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 999; writing-mode: vertical-rl; background: var(--accent); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 18px 10px; cursor: pointer; border-radius: 4px 0 0 4px; transition: all 0.3s; }
.side-offer:hover { background: var(--charcoal); }
.side-offer-panel { position: fixed; right: -340px; top: 0; bottom: 0; width: 340px; background: #fff; z-index: 1100; box-shadow: -20px 0 60px rgba(0,0,0,0.15); transition: right 0.4s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; }
.side-offer-panel.open { right: 0; }
.panel-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1099; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.panel-overlay.active { opacity: 1; pointer-events: all; }

/* SECTIONS */
section { padding: 80px 0; }
.section-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 10px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 300; color: var(--charcoal); line-height: 1.2; }
.section-title strong { font-weight: 600; }

/* CATEGORY CARDS */
.cat-card { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; display: block; text-decoration: none; }
.cat-card-img { width: 100%; height: 360px; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.cat-card:hover .cat-card-img { transform: scale(1.05); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,20,10,0.72) 0%, transparent 55%); transition: all 0.3s; }
.cat-card:hover .cat-card-overlay { background: linear-gradient(to top, rgba(28,20,10,0.82) 0%, rgba(28,20,10,0.1) 60%); }
.cat-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; transform: translateY(6px); transition: transform 0.3s; }
.cat-card:hover .cat-card-info { transform: translateY(0); }
.cat-card-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: #fff; margin-bottom: 6px; }
.cat-card-count { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.08em; }
.cat-card-btn { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 14px; opacity: 0; transform: translateY(8px); transition: all 0.3s 0.05s; }
.cat-card:hover .cat-card-btn { opacity: 1; transform: translateY(0); }
.cat-card-large .cat-card-img { height: 520px; }

/* PRODUCT CARDS */
.product-card { background: var(--card-bg); border-radius: 4px; overflow: hidden; position: relative; transition: box-shadow 0.3s; }
.product-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.product-img-wrap { position: relative; overflow: hidden; background: var(--sand); }
.product-img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); display: block; }
.product-card:hover .product-img { transform: scale(1.04); }
.product-badge { position: absolute; top: 14px; left: 14px; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 2px; text-transform: uppercase; background: var(--accent); }
.product-badge.new { background: var(--charcoal); }
.product-badge.hot { background: var(--gold); }
.product-actions { position: absolute; top: 14px; right: 14px; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(10px); transition: all 0.3s; }
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn { width: 38px; height: 38px; background: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--charcoal); cursor: pointer; box-shadow: 0 2px 12px rgba(0,0,0,0.12); transition: all 0.2s; }
.product-action-btn:hover { background: var(--accent); color: #fff; }
.product-body { padding: 18px 20px 22px; }
.product-cat { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 6px; }
.product-name { font-size: 15px; font-weight: 500; color: var(--charcoal); margin-bottom: 10px; line-height: 1.4; }
.product-price { font-size: 16px; font-weight: 600; color: var(--charcoal); }
.product-price .old { font-size: 13px; color: var(--warm-gray); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.product-price .sale { color: var(--accent); }
.product-size { font-size: 11px; color: var(--warm-gray); margin-top: 4px; letter-spacing: 0.05em; }
.btn-add-cart { width: 100%; background: var(--charcoal); color: #fff; border: none; padding: 12px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; border-radius: 0 0 4px 4px; opacity: 0; transform: translateY(100%); }
.product-card:hover .btn-add-cart { opacity: 1; transform: translateY(0); }
.btn-add-cart:hover { background: var(--accent); }

/* TAB FILTER */
.tab-filter { display: flex; gap: 0; border-bottom: 1px solid var(--border); }
.tab-btn { background: none; border: none; border-bottom: 2px solid transparent; padding: 12px 24px; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; color: var(--warm-gray); cursor: pointer; transition: all 0.2s; text-transform: uppercase; margin-bottom: -1px; }
.tab-btn.active { color: var(--charcoal); border-bottom-color: var(--charcoal); }
.tab-btn:hover { color: var(--charcoal); }

/* TECHNIQUE CARDS */
.technique-card { text-align: center; padding: 40px 24px; border: 1px solid var(--border); border-radius: 4px; background: #fff; height: 100%; transition: all 0.3s; }
.technique-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.technique-icon { font-size: 48px; margin-bottom: 20px; display: block; }
.technique-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.technique-desc { font-size: 14px; color: var(--warm-gray); line-height: 1.7; }

/* STORY SECTION */
.story-section { background: var(--sand); padding: 100px 0; }
.story-img-main { width: 100%; border-radius: 4px; box-shadow: 0 24px 60px rgba(0,0,0,0.15); }
.story-img-accent { position: absolute; bottom: -30px; right: -30px; width: 220px; border-radius: 4px; box-shadow: 0 16px 40px rgba(0,0,0,0.2); border: 6px solid var(--sand); }
.story-stat { text-align: center; padding: 24px; border-right: 1px solid var(--border); }
.story-stat:last-child { border-right: none; }
.story-stat-number { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 600; color: var(--charcoal); line-height: 1; }
.story-stat-label { font-size: 12px; color: var(--warm-gray); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }

/* TESTIMONIALS */
.testimonials { background: #fff; }
.testimonial-card { padding: 36px; border: 1px solid var(--border); border-radius: 4px; height: 100%; }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; line-height: 1.8; color: var(--charcoal); font-style: italic; margin-bottom: 20px; }
.testimonial-author { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--warm-gray); margin-top: 2px; }

/* NEWSLETTER */
.newsletter { background: var(--accent); padding: 80px 0; text-align: center; color: #fff; }
.newsletter-title { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; margin-bottom: 12px; }
.newsletter-form { display: flex; gap: 0; max-width: 440px; margin: 28px auto 0; }
.newsletter-input { flex: 1; border: none; padding: 14px 20px; font-family: 'DM Sans', sans-serif; font-size: 14px; border-radius: 40px 0 0 40px; outline: none; }
.newsletter-btn { background: var(--charcoal); color: #fff; border: none; padding: 14px 28px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 0 40px 40px 0; cursor: pointer; transition: all 0.2s; }
.newsletter-btn:hover { background: #000; }

/* FOOTER */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 80px 0 40px; }
.footer-tagline { font-size: 13px; line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.footer-socials a { color: rgba(255,255,255,0.4); font-size: 18px; margin-right: 16px; transition: color 0.2s; }
.footer-socials a:hover { color: #fff; }
.footer-heading { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 60px; padding-top: 28px; font-size: 12px; color: rgba(255,255,255,0.3); }

/* MOBILE MENU */
.mobile-menu-panel { position: fixed; left: -100%; top: 0; bottom: 0; width: 320px; background: #fff; z-index: 2000; transition: left 0.4s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; box-shadow: 20px 0 60px rgba(0,0,0,0.15); }
.mobile-menu-panel.open { left: 0; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.mobile-menu-item { display: block; padding: 16px 24px; font-size: 15px; font-weight: 500; color: var(--charcoal); text-decoration: none; border-bottom: 1px solid var(--border); transition: all 0.2s; }
.mobile-menu-item:hover { background: var(--cream); color: var(--accent); padding-left: 32px; }

/* BRANDS STRIP */
.brands-strip { background: var(--sand); padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brand-name { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-gray); opacity: 0.6; transition: opacity 0.2s; }
.brand-name:hover { opacity: 1; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.4,0,0.2,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* BTN ACCENT */
.btn-accent { background: var(--accent); color: #fff; border: none; padding: 14px 32px; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 40px; text-decoration: none; display: inline-block; transition: all 0.3s; cursor: pointer; }
.btn-accent:hover { background: var(--charcoal); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); padding: 13px 32px; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 40px; text-decoration: none; display: inline-block; transition: all 0.3s; cursor: pointer; }
.btn-outline:hover { background: var(--charcoal); color: #fff; }

/* BREADCRUMB */
.breadcrumb-area { background: var(--sand); padding: 16px 0; border-bottom: 1px solid var(--border); }
.breadcrumb-area .breadcrumb { margin: 0; font-size: 13px; }
.breadcrumb-item a { color: var(--warm-gray); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item.active { color: var(--charcoal); }

/* RESPONSIVE */
@media (max-width: 991px) {
    .desktop-nav { display: none !important; }
    section { padding: 56px 0; }
    .hero-slide { height: 70vh; }
    .story-img-accent { display: none; }
}
@media (min-width: 992px) {
    .mobile-menu-toggle, .mobile-cats { display: none !important; }
}
@media (max-width: 576px) {
    .cat-card-img { height: 220px; }
    .cat-card-large .cat-card-img { height: 300px; }
    .product-img { height: 200px; }
}

/* STICKY HEADER ON SCROLL UP */
.main-header, .main-nav.desktop-nav {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.main-header.header-hidden {
    transform: translateY(-100%);
}
.main-header.header-sticky {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 1040;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(0);
    background: #fff;
}
.main-nav.desktop-nav.header-sticky {
    position: fixed !important;
    top: 72px; left: 0; right: 0;
    z-index: 1039;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transform: translateY(0);
}
.main-nav.desktop-nav.header-hidden {
    transform: translateY(-200%);
}

/* STORY STATS MOBILE FIX */
@media (max-width: 575px) {
    .story-stat { padding: 12px 6px; }
    .story-stat-number { font-size: 26px; }
    .story-stat-label { font-size: 10px; letter-spacing: 0.04em; }
}

/* SIZE FILTER BADGE */
.size-filter-badge {
    display: inline-block;
    padding: 5px 12px;
    margin: 3px;
    font-size: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-decoration: none;
    color: var(--charcoal);
    background: #fff;
    transition: all 0.2s;
}
.size-filter-badge:hover, .size-filter-badge.active {
    background: var(--charcoal);
    color: #fff;
    border-color: var(--charcoal);
}

#currencySelect option{
    color: var(--charcoal);
}