@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ==========================================
   DESIGN TOKENS — Emerald / Terracotta / Cream
   ========================================== */
:root {
    --emerald: #12634f;
    --emerald-dark: #0c4a3b;
    --emerald-light: #e6f0eb;
    --emerald-glow: rgba(18, 99, 79, 0.12);

    --terracotta: #d9784f;
    --terracotta-dark: #c15f37;
    --terracotta-light: #fbeee7;

    --gold: #c9a24b;

    --cream: #faf6ef;
    --cream-dark: #f2ebdf;
    --card: #ffffff;

    --ink: #22302b;
    --muted: #6b7770;
    --line: #e6e0d4;

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --shadow-sm: 0 2px 8px rgba(34, 48, 43, 0.06);
    --shadow: 0 10px 30px rgba(34, 48, 43, 0.08);
    --shadow-lg: 0 24px 50px rgba(34, 48, 43, 0.14);

    --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font-display: 'Fraunces', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 600; }

a { color: inherit; text-decoration: none; transition: var(--ease); }
img { max-width: 100%; display: block; }
button, input { font-family: inherit; font-size: inherit; border: none; outline: none; }
button { cursor: pointer; background: none; }
ul { list-style: none; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--emerald); border-radius: var(--radius-full); border: 2px solid var(--cream-dark); }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.text-accent { color: var(--terracotta); font-style: italic; }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 0.95rem; transition: var(--ease);
    white-space: nowrap;
}
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--emerald); color: #fff; box-shadow: 0 8px 20px var(--emerald-glow); }
.btn-primary:hover { background: var(--emerald-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(18,99,79,0.28); }

.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--emerald); color: var(--emerald); background: var(--emerald-light); }

.btn-light { background: #fff; color: var(--emerald); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ==========================================
   TOPBAR
   ========================================== */
.topbar { background: var(--emerald-dark); color: #fff; font-size: 0.82rem; padding: 9px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.topbar-links { display: flex; gap: 20px; }
.topbar-links a { opacity: 0.85; }
.topbar-links a:hover { opacity: 1; color: var(--gold); }

/* ==========================================
   HEADER / NAV
   ========================================== */
.header {
    position: sticky; top: 0; z-index: 900;
    background: rgba(250, 246, 239, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.navbar-wrapper { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.logo-icon { width: 40px; height: 40px; background: var(--emerald); color: #fff; border-radius: 12px; display: grid; place-items: center; font-size: 1.1rem; }
.logo-accent { color: var(--terracotta); }
.logo-light { color: #fff; }

.nav-menu { display: flex; gap: 34px; }
.nav-link { font-weight: 600; font-size: 0.95rem; color: var(--muted); position: relative; padding: 4px 0; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--terracotta); transition: var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--emerald); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { width: 42px; height: 42px; border-radius: var(--radius-full); display: grid; place-items: center; color: var(--ink); font-size: 1.05rem; transition: var(--ease); position: relative; }
.icon-btn:hover { background: var(--emerald-light); color: var(--emerald); }
.cart-count { position: absolute; top: 2px; right: 2px; background: var(--terracotta); color: #fff; font-size: 0.62rem; font-weight: 700; min-width: 17px; height: 17px; border-radius: var(--radius-full); display: grid; place-items: center; padding: 0 4px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; justify-content: center; align-items: center; }
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Search bar */
.search-bar { max-height: 0; overflow: hidden; transition: max-height var(--ease); border-top: 0 solid var(--line); }
.search-bar.open { max-height: 90px; border-top: 1px solid var(--line); }
.search-bar-inner { display: flex; align-items: center; gap: 14px; padding: 18px 0; }
.search-bar-inner i { color: var(--muted); font-size: 1.1rem; }
.search-bar-inner input { flex: 1; background: transparent; font-size: 1.05rem; color: var(--ink); }
.search-close { color: var(--muted); font-size: 1.1rem; }
.search-close:hover { color: var(--terracotta); }

/* Mobile nav */
.mobile-nav { position: fixed; top: 0; right: -320px; width: 320px; max-width: 85vw; height: 100vh; background: var(--cream); z-index: 1001; padding: 28px; box-shadow: var(--shadow-lg); transition: right var(--ease); display: flex; flex-direction: column; gap: 32px; }
.mobile-nav.open { right: 0; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-close { font-size: 1.4rem; color: var(--muted); }
.mobile-menu { display: flex; flex-direction: column; gap: 8px; }
.mobile-link { padding: 12px 14px; border-radius: var(--radius-sm); font-weight: 600; color: var(--ink); }
.mobile-link:hover, .mobile-link.active { background: var(--emerald-light); color: var(--emerald); }

.overlay { position: fixed; inset: 0; background: rgba(12, 74, 59, 0.4); backdrop-filter: blur(3px); z-index: 1000; opacity: 0; visibility: hidden; transition: var(--ease); }
.overlay.active { opacity: 1; visibility: visible; }

/* ==========================================
   HERO
   ========================================== */
.hero { padding: 70px 0 90px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.hero-badge { display: inline-block; background: var(--terracotta-light); color: var(--terracotta-dark); font-weight: 600; font-size: 0.82rem; padding: 7px 16px; border-radius: var(--radius-full); margin-bottom: 22px; }
.hero-title { font-size: 3.6rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 20px; }
.hero-desc { font-size: 1.12rem; color: var(--muted); max-width: 480px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 40px; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--emerald); }
.hero-stat strong i { color: var(--gold); font-size: 1.2rem; margin-left: 2px; }
.hero-stat span { font-size: 0.85rem; color: var(--muted); }

.hero-visual { position: relative; }
.hero-image-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/4.4; background: var(--cream-dark); }
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-main::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15); }

.hero-float-card { position: absolute; bottom: 30px; left: -30px; background: #fff; border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; animation: floaty 4s ease-in-out infinite; }
.hero-float-card .float-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--emerald-light); color: var(--emerald); display: grid; place-items: center; font-size: 1.2rem; }
.hero-float-card h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; }
.hero-float-card p { font-size: 0.78rem; color: var(--muted); }

.hero-price-tag { position: absolute; top: 26px; right: -18px; background: var(--terracotta); color: #fff; border-radius: var(--radius); padding: 14px 20px; box-shadow: var(--shadow); text-align: center; animation: floaty 5s ease-in-out infinite reverse; }
.hero-price-tag span { display: block; font-size: 0.72rem; opacity: 0.9; }
.hero-price-tag strong { font-family: var(--font-display); font-size: 1.4rem; }

/* ==========================================
   FEATURE STRIP
   ========================================== */
.feature-strip { background: var(--emerald); color: #fff; padding: 28px 0; }
.feature-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { display: flex; align-items: center; gap: 14px; }
.feature-item i { font-size: 1.5rem; color: var(--gold); }
.feature-item h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; }
.feature-item p { font-size: 0.82rem; opacity: 0.8; }

/* ==========================================
   SECTION SHARED
   ========================================== */
.section { padding: 90px 0; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.76rem; font-weight: 700; color: var(--terracotta); margin-bottom: 10px; }
.eyebrow-light { color: rgba(255,255,255,0.85); }
.section-title { font-size: 2.5rem; }
.section-sub { color: var(--muted); max-width: 560px; margin: 12px auto 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.section-head.center { flex-direction: column; text-align: center; align-items: center; }
.link-arrow { color: var(--emerald); font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }
.link-arrow:hover { gap: 12px; color: var(--terracotta); }

/* ==========================================
   CATEGORIES
   ========================================== */
.categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.category-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 14px; text-align: center; transition: var(--ease); cursor: pointer; }
.category-card:hover { transform: translateY(-6px); border-color: var(--emerald); box-shadow: var(--shadow); }
.category-ico { width: 60px; height: 60px; margin: 0 auto 14px; border-radius: var(--radius-full); background: var(--emerald-light); color: var(--emerald); display: grid; place-items: center; font-size: 1.5rem; transition: var(--ease); }
.category-card:hover .category-ico { background: var(--terracotta); color: #fff; }
.category-card h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; }
.category-card span { font-size: 0.78rem; color: var(--muted); }

/* ==========================================
   PRODUCTS
   ========================================== */
.product-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.filter-chip { padding: 9px 20px; border-radius: var(--radius-full); border: 1.5px solid var(--line); font-weight: 600; font-size: 0.88rem; color: var(--muted); transition: var(--ease); }
.filter-chip:hover { border-color: var(--emerald); color: var(--emerald); }
.filter-chip.active { background: var(--emerald); border-color: var(--emerald); color: #fff; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--ease); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream-dark); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-media img { transform: scale(1.07); }
.product-tag { position: absolute; top: 12px; left: 12px; background: var(--terracotta); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 5px 11px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.04em; }
.product-tag.tag-new { background: var(--emerald); }
.product-wish { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: var(--radius-full); background: rgba(255,255,255,0.9); color: var(--ink); display: grid; place-items: center; opacity: 0; transform: translateY(-6px); transition: var(--ease); }
.product-card:hover .product-wish { opacity: 1; transform: translateY(0); }
.product-wish:hover { background: var(--terracotta); color: #fff; }

.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }
.product-name { font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; margin: 5px 0 8px; }
.product-rating { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.product-rating i { color: var(--gold); }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { display: flex; flex-direction: column; }
.price-now { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--emerald); }
.price-old { font-size: 0.82rem; color: var(--muted); text-decoration: line-through; }
.add-btn { width: 42px; height: 42px; border-radius: 12px; background: var(--emerald-light); color: var(--emerald); display: grid; place-items: center; font-size: 1rem; transition: var(--ease); }
.add-btn:hover { background: var(--emerald); color: #fff; transform: scale(1.05); }

/* ==========================================
   PROMO BANNER
   ========================================== */
.promo-banner { background: var(--emerald-dark); color: #fff; overflow: hidden; }
.promo-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.promo-text { padding: 80px 0; }
.promo-text h2 { font-size: 2.8rem; margin-bottom: 16px; }
.promo-text p { color: rgba(255,255,255,0.8); max-width: 420px; margin-bottom: 28px; }
.promo-image { position: relative; align-self: stretch; min-height: 380px; }
.promo-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-discount { position: absolute; top: 40px; right: 40px; width: 90px; height: 90px; border-radius: var(--radius-full); background: var(--terracotta); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; box-shadow: var(--shadow-lg); }

/* ==========================================
   COLLECTIONS
   ========================================== */
.collections-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, 240px); gap: 20px; }
.collection-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.collection-card:hover img { transform: scale(1.06); }
.collection-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,74,59,0.85) 0%, rgba(12,74,59,0.1) 60%); }
.collection-info { position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2; color: #fff; }
.collection-info h3 { font-size: 1.4rem; margin-bottom: 4px; }
.collection-info span { font-size: 0.85rem; opacity: 0.85; }
.collection-info .link-arrow { color: #fff; margin-top: 8px; font-size: 0.85rem; }
.collection-card.featured { grid-row: span 2; }

/* ==========================================
   WHY US
   ========================================== */
.why-section { background: var(--emerald-light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { position: relative; }
.why-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3.4; object-fit: cover; }
.why-badge { position: absolute; bottom: -22px; right: -18px; background: var(--terracotta); color: #fff; border-radius: var(--radius); padding: 18px 24px; text-align: center; box-shadow: var(--shadow-lg); }
.why-badge strong { display: block; font-family: var(--font-display); font-size: 2rem; }
.why-badge span { font-size: 0.8rem; opacity: 0.9; }
.why-lead { color: var(--muted); font-size: 1.05rem; margin: 16px 0 22px; }
.why-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.why-list i { color: var(--emerald); font-size: 1.1rem; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: var(--ease); }
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); margin-bottom: 16px; }
.testimonial-text { font-size: 1rem; color: var(--ink); margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 46px; height: 46px; border-radius: var(--radius-full); object-fit: cover; }
.testimonial-author h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; }
.testimonial-author span { font-size: 0.8rem; color: var(--muted); }

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter { padding: 80px 0; }
.newsletter-inner { background: var(--terracotta); border-radius: var(--radius-lg); padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; color: #fff; }
.newsletter-text h2 { font-size: 2.2rem; margin-bottom: 10px; }
.newsletter-text p { opacity: 0.9; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input { flex: 1; padding: 15px 20px; border-radius: var(--radius-full); background: #fff; color: var(--ink); }
.newsletter-form .btn-primary { background: var(--emerald-dark); }
.newsletter-form .btn-primary:hover { background: var(--ink); }
.hidden-field { display: none; }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand p { margin: 18px 0; font-size: 0.92rem; max-width: 300px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 40px; height: 40px; border-radius: var(--radius-full); background: rgba(255,255,255,0.08); color: #fff; display: grid; place-items: center; }
.social-links a:hover { background: var(--terracotta); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-body); color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-col a { display: block; margin-bottom: 11px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ==========================================
   CART DRAWER
   ========================================== */
.cart-drawer { position: fixed; top: 0; right: -420px; width: 420px; max-width: 90vw; height: 100vh; background: var(--cream); z-index: 1002; box-shadow: var(--shadow-lg); transition: right var(--ease); display: flex; flex-direction: column; }
.cart-drawer.open { right: 0; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); }
.cart-header h3 { font-size: 1.3rem; }
.cart-close { font-size: 1.3rem; color: var(--muted); }
.cart-close:hover { color: var(--terracotta); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 0; }
.cart-empty i { font-size: 2.6rem; margin-bottom: 14px; color: var(--line); }
.cart-item { display: flex; gap: 14px; }
.cart-item img { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 700; }
.cart-item-info .ci-price { color: var(--emerald); font-weight: 700; font-size: 0.9rem; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.cart-item-qty button { width: 26px; height: 26px; border-radius: 7px; background: var(--emerald-light); color: var(--emerald); display: grid; place-items: center; font-size: 0.8rem; }
.ci-remove { color: var(--muted); font-size: 0.9rem; }
.ci-remove:hover { color: var(--terracotta); }
.cart-footer { padding: 22px 24px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 1.05rem; }
.cart-total strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--emerald); }

/* Toast */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(120px); background: var(--ink); color: #fff; padding: 14px 24px; border-radius: var(--radius-full); box-shadow: var(--shadow-lg); z-index: 1100; font-weight: 600; font-size: 0.9rem; opacity: 0; transition: var(--ease); display: flex; align-items: center; gap: 10px; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast i { color: var(--gold); }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.9rem; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .collections-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 220px); }
    .collection-card.featured { grid-row: span 1; grid-column: span 2; }
}

@media (max-width: 768px) {
    .topbar-links { display: none; }
    .nav-menu { display: none; }
    .menu-toggle { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 2.5rem; }
    .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
    .promo-inner { grid-template-columns: 1fr; }
    .promo-text { padding: 56px 0 0; text-align: center; }
    .promo-text p { margin-left: auto; margin-right: auto; }
    .promo-image { min-height: 300px; border-radius: var(--radius); overflow: hidden; }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-badge { right: 20px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .newsletter-inner { grid-template-columns: 1fr; padding: 40px 28px; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .section-title { font-size: 2rem; }
    .section { padding: 64px 0; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 480px) {
    .hero-stats { gap: 22px; }
    .products-grid { grid-template-columns: 1fr; }
    .collections-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); }
    .collection-card.featured { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   ANCHOR SCROLL OFFSET (sticky header)
   ========================================== */
#categories, #products, #collections, #about,
#cara-pemesanan, #faq, .faq-item { scroll-margin-top: 100px; }

/* ==========================================
   CARA PEMESANAN
   ========================================== */
.help-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.help-step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; position: relative; transition: var(--ease); }
.help-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--emerald); }
.help-num { display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--radius-full); background: var(--emerald-light); color: var(--emerald); font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 18px; }
.help-step:hover .help-num { background: var(--terracotta); color: #fff; }
.help-step h3 { font-family: var(--font-body); font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.help-step p { color: var(--muted); font-size: 0.92rem; }

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-section { background: var(--emerald-light); }
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--ease); }
.faq-item.open { border-color: var(--emerald); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 22px 24px; font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.faq-q i { flex-shrink: 0; width: 30px; height: 30px; display: grid; place-items: center; border-radius: var(--radius-full); background: var(--emerald-light); color: var(--emerald); font-size: 0.85rem; transition: var(--ease); }
.faq-item.open .faq-q i { transform: rotate(45deg); background: var(--terracotta); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--ease); }
.faq-a p { padding: 0 24px 24px; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 1024px) {
    .help-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .help-steps { grid-template-columns: 1fr; }
}
