/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; }

/* ===== ANNOUNCEMENT ===== */
.announcement { background: #1a1a2e; color: #fff; padding: 10px 0; overflow: hidden; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }
.announcement-scroll { display: flex; gap: 60px; animation: scroll-left 20s linear infinite; white-space: nowrap; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.announcement-scroll span { flex-shrink: 0; }

/* ===== NAV ===== */
.nav { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid #f0ece6; }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1280px; margin: 0 auto; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; letter-spacing: 6px; text-align: center; color: #1a1a2e; }
.logo-sub { display: block; font-family: 'Inter', sans-serif; font-size: 9px; letter-spacing: 5px; font-weight: 400; color: #999; margin-top: -4px; }
.nav-right { display: flex; gap: 20px; align-items: center; }
.nav-icon { font-size: 20px; position: relative; }
.cart-count { position: absolute; top: -8px; right: -10px; background: #1a1a2e; color: #fff; font-size: 10px; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Inter'; }
.nav-links { display: flex; justify-content: center; gap: 36px; padding: 12px 0; border-top: 1px solid #f0ece6; }
.nav-links a { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; color: #555; transition: color 0.2s; }
.nav-links a:hover { color: #1a1a2e; }
.nav-highlight { color: #8b6b4a !important; font-weight: 600 !important; }
.nav-dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; top: 100%; left: -20px; background: #fff; padding: 16px 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border-radius: 8px; min-width: 180px; z-index: 100; }
.dropdown-content a { display: block; padding: 8px 0; font-size: 13px; border-bottom: 1px solid #f5f5f5; }
.nav-dropdown:hover .dropdown-content { display: block; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: #1a1a2e; transition: 0.3s; }

/* Mobile Menu */
.mobile-menu { display: none; position: fixed; inset: 0; background: #fff; z-index: 2000; padding: 24px; flex-direction: column; gap: 0; overflow-y: auto; }
.mobile-menu.active { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid #eee; margin-bottom: 16px; }
.mobile-menu a { font-size: 18px; padding: 14px 0; border-bottom: 1px solid #f5f5f5; letter-spacing: 1px; }
.mobile-highlight { color: #8b6b4a !important; font-weight: 600; }

/* ===== HERO ===== */
.hero { min-height: calc(100vh - 130px); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 130px); }
.hero-left { overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; min-height: 600px; }
.hero-right { display: flex; align-items: center; padding: 80px 60px; background: #faf8f5; }
.hero-content { max-width: 480px; }
.hero-season { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: #8b6b4a; margin-bottom: 24px; font-weight: 600; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; line-height: 1.05; margin-bottom: 24px; color: #1a1a2e; }
.hero h1 em { font-size: 76px; }
.hero p { font-size: 16px; color: #777; line-height: 1.7; margin-bottom: 40px; }
.btn-primary { display: inline-block; background: #1a1a2e; color: #fff; padding: 16px 40px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transition: all 0.3s; }
.btn-primary:hover { background: #2d2d4a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,46,0.2); }
.btn-secondary { display: inline-block; font-size: 14px; color: #8b6b4a; font-weight: 600; margin-left: 24px; transition: 0.2s; }
.btn-secondary:hover { color: #6b4f30; }
.btn-white { display: inline-block; background: #fff; color: #1a1a2e; padding: 14px 36px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transition: 0.3s; }
.btn-white:hover { background: #f5f5f5; transform: translateY(-2px); }
.hero-btns { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }

/* ===== CATEGORIES ===== */
.categories { padding: 60px 0; }
.cat-grid { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 10px; }
.cat-item { text-align: center; flex-shrink: 0; }
.cat-img-wrap { width: 180px; height: 180px; border-radius: 50%; overflow: hidden; margin-bottom: 14px; transition: 0.3s; border: 3px solid transparent; }
.cat-item:hover .cat-img-wrap { border-color: #8b6b4a; transform: scale(1.05); }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cat-item span { font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ===== SECTION HEADERS ===== */
.section-header-left { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.section-header-left h2 { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 400; }
.view-all { font-size: 14px; color: #8b6b4a; font-weight: 600; letter-spacing: 0.5px; transition: 0.2s; }
.view-all:hover { color: #6b4f30; }
.section-header-center { text-align: center; margin-bottom: 40px; }
.section-header-center h2 { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 400; margin-bottom: 10px; }
.section-header-center p { font-size: 15px; color: #999; }

/* ===== PRODUCTS ===== */
.products { padding: 80px 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { position: relative; }
.product-img-wrap { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 3/4; background: #f5f0eb; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge { position: absolute; top: 12px; left: 12px; background: #1a1a2e; color: #fff; padding: 4px 14px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; border-radius: 4px; }
.product-badge.sale { background: #c0392b; }
.product-badge.hot { background: #8b6b4a; }
.wishlist-btn { position: absolute; top: 12px; right: 12px; background: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 16px; cursor: pointer; opacity: 0; transition: 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.product-card:hover .wishlist-btn { opacity: 1; }
.wishlist-btn:hover { background: #1a1a2e; color: #fff; }
.quick-add { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(26,26,46,0.9); color: #fff; text-align: center; padding: 14px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transform: translateY(100%); transition: 0.3s; cursor: pointer; }
.product-card:hover .quick-add { transform: translateY(0); }
.product-info { padding: 16px 4px; }
.product-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.product-cat { font-size: 12px; color: #999; margin-bottom: 8px; }
.product-colors { display: flex; gap: 6px; margin-bottom: 8px; }
.color-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid #eee; cursor: pointer; transition: 0.2s; }
.color-dot:hover { border-color: #1a1a2e; transform: scale(1.15); }
.product-price { font-size: 16px; font-weight: 700; }
.old-price { text-decoration: line-through; color: #ccc; font-weight: 400; margin-right: 6px; }

/* ===== EDITORIAL ===== */
.editorial { padding: 0; }
.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; }
.editorial-img { position: relative; height: 600px; overflow: hidden; }
.editorial-img img { width: 100%; height: 100%; object-fit: cover; }
.editorial-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.65) 100%); }
.editorial-content { position: absolute; bottom: 50px; left: 50px; right: 50px; z-index: 2; color: #fff; }
.editorial-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.editorial-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; line-height: 1.1; margin-bottom: 16px; }
.editorial-content p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 24px; max-width: 350px; line-height: 1.6; }

/* ===== BRAND STORY ===== */
.brand-story { padding: 120px 0; background: #faf8f5; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-tag { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: #8b6b4a; margin-bottom: 20px; font-weight: 600; }
.story-grid h2 { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; line-height: 1.15; margin-bottom: 24px; }
.story-grid p { font-size: 15px; color: #777; line-height: 1.8; margin-bottom: 16px; }
.story-features { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.story-feat { display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 600; }
.story-feat span { font-size: 24px; }
.story-img-stack { position: relative; height: 550px; }
.story-img-1 { width: 75%; height: 80%; object-fit: cover; border-radius: 12px; position: absolute; top: 0; left: 0; }
.story-img-2 { width: 50%; height: 50%; object-fit: cover; border-radius: 12px; position: absolute; bottom: 0; right: 0; box-shadow: 0 20px 60px rgba(0,0,0,0.15); border: 5px solid #fff; }

/* ===== TRUST BAR ===== */
.trust-bar { padding: 60px 0; border-top: 1px solid #f0ece6; border-bottom: 1px solid #f0ece6; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-icon { font-size: 32px; }
.trust-item strong { font-size: 14px; display: block; margin-bottom: 2px; }
.trust-item p { font-size: 12px; color: #999; }

/* ===== INSTAGRAM ===== */
.instagram { padding: 80px 0; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta-item { aspect-ratio: 1; overflow: hidden; border-radius: 4px; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.insta-item:hover img { transform: scale(1.1); opacity: 0.85; }

/* ===== NEWSLETTER ===== */
.newsletter { padding: 80px 0; }
.newsletter-box { background: #1a1a2e; border-radius: 24px; padding: 80px 60px; text-align: center; color: #fff; }
.newsletter-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; margin-bottom: 16px; }
.newsletter-box p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 32px; max-width: 450px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 16px 20px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; color: #fff; font-size: 15px; font-family: 'Inter'; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: #8b6b4a; }
.newsletter-form button { padding: 16px 32px; background: #8b6b4a; color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'Inter'; transition: 0.2s; white-space: nowrap; }
.newsletter-form button:hover { background: #a07b54; }
.newsletter-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 16px; display: block; }

/* ===== FOOTER ===== */
.footer { background: #faf8f5; padding: 80px 0 30px; border-top: 1px solid #f0ece6; }
.footer-logo { margin-bottom: 16px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-col p { font-size: 14px; color: #999; line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: #777; margin-bottom: 10px; transition: 0.2s; }
.footer-col a:hover { color: #1a1a2e; }
.footer-socials { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.footer-socials a { font-size: 13px; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.payment-icons span { font-size: 11px; background: #fff; padding: 4px 10px; border-radius: 4px; border: 1px solid #eee; }
.footer-bottom { border-top: 1px solid #e8e4de; padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 12px; color: #bbb; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-left { height: 50vh; }
    .hero-right { padding: 40px 24px; }
    .hero h1 { font-size: 48px; }
    .hero h1 em { font-size: 52px; }
    .cat-img-wrap { width: 120px; height: 120px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .editorial-grid { grid-template-columns: 1fr; }
    .editorial-img { height: 400px; }
    .editorial-content h2 { font-size: 36px; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-img-stack { height: 400px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .newsletter-box { padding: 40px 24px; }
    .newsletter-box h2 { font-size: 32px; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-header-left h2 { font-size: 32px; }
    .brand-story { padding: 60px 0; }
}
