:root{
  --indigo:#4f46e5; --indigo-dark:#4338ca;
  --ink:#1f2430; --muted:#6b7280; --line:#e5e7eb;
  --bg:#ffffff; --grey:#f6f7f9;
  --radius:14px; --shadow:0 8px 28px rgba(31,36,48,.08);
  --container:1180px;
  --head:"Plus Jakarta Sans", system-ui, sans-serif;
  --body:"Inter", system-ui, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--body);color:var(--ink);background:var(--bg);line-height:1.55}
img{max-width:100%;display:block;object-fit:cover}
a{color:inherit;text-decoration:none}
h1,h2,h3{font-family:var(--head);line-height:1.15;margin:0}
.container{max-width:var(--container);margin:0 auto;padding:0 22px}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}
.eyebrow{font-family:var(--head);text-transform:uppercase;letter-spacing:.12em;font-size:.72rem;font-weight:700;color:var(--indigo);margin:0 0 .6rem}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;font-family:var(--head);font-weight:700;font-size:.95rem;padding:.8rem 1.5rem;border-radius:999px;cursor:pointer;border:1.5px solid transparent;transition:transform .15s,background .15s}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--indigo);color:#fff}
.btn-primary:hover{background:var(--indigo-dark)}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.7)}
.btn-ghost:hover{background:rgba(255,255,255,.14)}
.btn-block{width:100%}

/* Announcement */
.announcement{background:var(--ink);color:#fff;text-align:center}
.announcement p{margin:0;padding:.6rem 1rem;font-size:.85rem;letter-spacing:.02em}

/* Header */
.site-header{position:sticky;top:0;z-index:40;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.header-inner{display:flex;align-items:center;gap:1.5rem;height:70px}
.logo{font-family:var(--head);font-weight:800;font-size:1.4rem;letter-spacing:-.02em;color:var(--ink)}
.main-nav{display:flex;gap:1.6rem;margin-left:1rem}
.main-nav a{font-weight:500;font-size:.95rem;color:var(--ink)}
.main-nav a:hover{color:var(--indigo)}
.header-actions{margin-left:auto;display:flex;gap:.4rem;align-items:center}
.icon-btn{background:none;border:none;color:var(--ink);cursor:pointer;padding:.5rem;border-radius:10px;display:inline-flex;line-height:0}
.icon-btn:hover{background:var(--grey)}
.cart-btn{position:relative}
.cart-count{position:absolute;top:0;right:0;background:var(--indigo);color:#fff;font-size:.68rem;font-weight:700;min-width:18px;height:18px;border-radius:999px;display:flex;align-items:center;justify-content:center;padding:0 4px;font-family:var(--head)}
.menu-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.3rem}
.menu-toggle span{width:24px;height:2px;background:var(--ink);border-radius:2px;transition:.2s}

/* Hero */
.hero{position:relative;min-height:560px;display:flex;align-items:center;color:#fff;overflow:hidden}
.hero-bg{position:absolute;inset:0;width:100%;height:100%}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(110deg,rgba(31,36,48,.78),rgba(79,70,229,.45))}
.hero-content{position:relative;max-width:640px;padding-top:3rem;padding-bottom:3rem}
.hero-content .eyebrow{color:#c7d2fe}
.hero h1{font-size:clamp(2.2rem,5vw,3.6rem);font-weight:800;letter-spacing:-.02em}
.hero-sub{font-size:1.1rem;margin:1rem 0 1.8rem;color:#e8eaf0;max-width:48ch}
.hero-cta{display:flex;gap:.8rem;flex-wrap:wrap}

/* Sections */
.section{padding:72px 0}
.section-grey{background:var(--grey)}
.section-head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:2rem;gap:1rem}
.section-head h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:700}
.link-more{font-family:var(--head);font-weight:700;color:var(--indigo)}

/* Product grid */
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:26px}
.product-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;transition:transform .18s,box-shadow .18s}
.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.product-media{aspect-ratio:1/1;overflow:hidden}
.product-media img{width:100%;height:100%;transition:transform .4s}
.product-card:hover .product-media img{transform:scale(1.05)}
.product-info{padding:1rem 1.1rem 1.2rem;display:flex;flex-direction:column;gap:.35rem;flex:1}
.product-title{font-family:var(--head);font-weight:600;font-size:1rem}
.product-price{color:var(--muted);font-weight:600}
.product-price .compare{text-decoration:line-through;color:#b3b8c2;margin-left:.4rem;font-weight:500}
.product-card .btn{margin-top:auto}

/* Collections */
.collection-row{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.collection-card{position:relative;border-radius:var(--radius);overflow:hidden;aspect-ratio:6/7}
.collection-card img{width:100%;height:100%;transition:transform .4s}
.collection-card:hover img{transform:scale(1.05)}
.collection-name{position:absolute;left:0;right:0;bottom:0;padding:1rem;font-family:var(--head);font-weight:700;color:#fff;font-size:1.1rem;background:linear-gradient(transparent,rgba(31,36,48,.75))}

/* Image with text */
.image-with-text{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.iwt-media img{width:100%;border-radius:var(--radius);box-shadow:var(--shadow)}
.iwt-body h2{font-size:clamp(1.7rem,3vw,2.4rem);font-weight:700;margin-bottom:1rem}
.iwt-body p{color:var(--muted);font-size:1.05rem;margin-bottom:1.6rem}

/* Newsletter */
.newsletter{background:var(--ink);color:#fff;text-align:center}
.newsletter-inner{max-width:560px}
.newsletter h2{font-size:2rem;font-weight:700;margin-bottom:.6rem}
.newsletter p{color:#c8ccd6;margin-bottom:1.6rem}
.newsletter-form{display:flex;gap:.6rem;justify-content:center;flex-wrap:wrap}
.newsletter-form input{flex:1;min-width:240px;padding:.85rem 1.1rem;border-radius:999px;border:1px solid #3a4050;background:#2a3040;color:#fff;font-family:var(--body);font-size:.95rem}
.newsletter-form input::placeholder{color:#9aa1b1}
.newsletter-note{margin-top:1rem;color:#c7d2fe;font-weight:600}

/* Footer */
.site-footer{background:#fff;border-top:1px solid var(--line);padding-top:56px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:32px;padding-bottom:40px}
.footer-brand p{color:var(--muted);margin-top:.8rem;max-width:34ch}
.footer-col h3{font-family:var(--head);font-size:.95rem;font-weight:700;margin-bottom:.9rem}
.footer-col a{display:block;color:var(--muted);padding:.25rem 0;font-size:.92rem}
.footer-col a:hover{color:var(--indigo)}
.footer-bottom{display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;border-top:1px solid var(--line);padding:22px;color:var(--muted);font-size:.85rem}

/* Cart drawer */
.cart-drawer{position:fixed;top:0;right:0;height:100%;width:380px;max-width:90vw;background:#fff;z-index:60;transform:translateX(100%);transition:transform .28s;display:flex;flex-direction:column;box-shadow:-12px 0 40px rgba(0,0,0,.15)}
.cart-drawer.open{transform:translateX(0)}
.cart-drawer-head{display:flex;justify-content:space-between;align-items:center;padding:1.2rem 1.3rem;border-bottom:1px solid var(--line)}
.cart-drawer-head h3{font-family:var(--head)}
.cart-drawer-body{flex:1;overflow-y:auto;padding:1.2rem 1.3rem}
.cart-empty{color:var(--muted)}
.cart-line{display:flex;gap:.8rem;align-items:center;margin-bottom:1rem}
.cart-line img{width:56px;height:56px;border-radius:10px}
.cart-line .cl-info{flex:1}
.cart-line .cl-title{font-family:var(--head);font-weight:600;font-size:.9rem}
.cart-line .cl-price{color:var(--muted);font-size:.85rem}
.cart-drawer-foot{border-top:1px solid var(--line);padding:1.2rem 1.3rem}
.cart-total{display:flex;justify-content:space-between;font-family:var(--head);font-weight:700;margin-bottom:1rem}
.cart-backdrop{position:fixed;inset:0;background:rgba(31,36,48,.45);z-index:55}

/* Section head center variant + ghost-dark button */
.section-head.center{flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:.5rem}
.btn-outline{background:transparent;color:var(--ink);border-color:var(--line)}
.btn-outline:hover{background:var(--grey)}

/* Testimonials */
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.testimonial{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.6rem;margin:0}
.t-stars{color:#d4d8e0;font-size:1.05rem;letter-spacing:2px;margin-bottom:.8rem}
.t-stars .on{color:#f5b301}
.t-quote{font-size:1.02rem;margin:0 0 1rem;line-height:1.5}
.t-name{font-family:var(--head);font-weight:700;color:var(--muted);font-size:.92rem}

/* Instagram */
.ig-handle{display:inline-block;font-family:var(--head);font-weight:700;color:var(--indigo)}
.ig-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:12px}
.ig-item{aspect-ratio:1/1;overflow:hidden;border-radius:10px;display:block}
.ig-item img{width:100%;height:100%;transition:transform .35s}
.ig-item:hover img{transform:scale(1.08)}

/* FAQ */
.faq-list{max-width:760px;margin:0 auto;border-top:1px solid var(--line)}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{width:100%;display:flex;justify-content:space-between;align-items:center;gap:1rem;background:none;border:none;cursor:pointer;padding:1.1rem 0;font-family:var(--head);font-weight:600;font-size:1.05rem;text-align:left;color:var(--ink)}
.faq-icon{font-size:1.4rem;color:var(--indigo);transition:transform .2s;line-height:1}
.faq-q[aria-expanded="true"] .faq-icon{transform:rotate(45deg)}
.faq-a{padding:0 0 1.1rem;color:var(--muted)}

/* CTA band */
.cta-band{background:var(--indigo);color:#fff;text-align:center}
.cta-inner{max-width:640px;margin:0 auto}
.cta-band h2{font-size:clamp(1.7rem,3.4vw,2.6rem);font-weight:800;margin-bottom:.7rem}
.cta-band p{font-size:1.1rem;opacity:.92;margin-bottom:1.6rem}
.cta-band .btn-primary{background:#fff;color:var(--indigo)}
.cta-band .btn-primary:hover{background:#eef0ff}

/* Page header banner */
.page-banner{background:var(--grey);padding:48px 0;border-bottom:1px solid var(--line)}
.page-banner h1{font-size:clamp(1.9rem,4vw,2.8rem);font-weight:800}
.page-banner p{color:var(--muted);margin:.5rem 0 0}
.breadcrumb{font-size:.85rem;color:var(--muted);margin-bottom:.6rem}
.breadcrumb a:hover{color:var(--indigo)}

/* Shop layout with filters */
.shop-layout{display:grid;grid-template-columns:230px 1fr;gap:34px;align-items:start}
.filters{position:sticky;top:90px}
.filters h3{font-family:var(--head);font-size:.85rem;text-transform:uppercase;letter-spacing:.08em;margin:1.2rem 0 .6rem}
.filters label{display:flex;align-items:center;gap:.5rem;padding:.3rem 0;color:var(--muted);font-size:.95rem;cursor:pointer}
.filters input{accent-color:var(--indigo)}
.shop-toolbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.2rem;gap:1rem;flex-wrap:wrap}
.shop-toolbar select{padding:.5rem .8rem;border:1px solid var(--line);border-radius:10px;font-family:var(--body)}

/* Product detail page */
.pdp{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.pdp-gallery .pdp-main{width:100%;border-radius:var(--radius);aspect-ratio:1/1}
.pdp-thumbs{display:flex;gap:.6rem;margin-top:.8rem}
.pdp-thumbs img{width:74px;height:74px;border-radius:10px;cursor:pointer;border:2px solid transparent}
.pdp-thumbs img.active{border-color:var(--indigo)}
.pdp h1{font-size:2rem;font-weight:700;margin-bottom:.5rem}
.pdp-price{font-size:1.3rem;font-weight:700;color:var(--indigo);margin-bottom:1rem}
.pdp-desc{color:var(--muted);margin:1rem 0 1.5rem}
.pdp-row{display:flex;gap:.8rem;align-items:center;margin-bottom:1.2rem;flex-wrap:wrap}
.qty-stepper{display:inline-flex;align-items:center;border:1px solid var(--line);border-radius:999px;overflow:hidden}
.qty-stepper button{background:none;border:none;width:42px;height:42px;font-size:1.2rem;cursor:pointer;color:var(--ink)}
.qty-stepper button:hover{background:var(--grey)}
.qty-stepper input{width:44px;text-align:center;border:none;font-family:var(--head);font-weight:600;font-size:1rem;-moz-appearance:textfield}
.qty-stepper input::-webkit-outer-spin-button,.qty-stepper input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}

/* Cart page */
.cart-table{width:100%}
.cart-row{display:grid;grid-template-columns:80px 1fr auto auto auto;gap:1rem;align-items:center;padding:1.1rem 0;border-bottom:1px solid var(--line)}
.cart-row img{width:80px;height:80px;border-radius:10px}
.cart-row .ct-title{font-family:var(--head);font-weight:600}
.cart-row .ct-meta{color:var(--muted);font-size:.88rem;margin-top:.2rem}
.cart-remove{background:none;border:none;color:var(--muted);font-size:1.4rem;cursor:pointer;line-height:1}
.cart-summary{margin-top:1.6rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.cart-subtotal{font-family:var(--head);font-weight:700;font-size:1.25rem;display:flex;gap:1rem}

/* Contact / forms */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:46px;align-items:start}
.field{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1rem}
.field label{font-family:var(--head);font-weight:600;font-size:.9rem}
.field input,.field textarea{padding:.8rem .9rem;border:1px solid var(--line);border-radius:10px;font-family:var(--body);font-size:1rem}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--indigo)}
.field .error{color:#dc2626;font-size:.82rem;display:none}
.field.invalid input,.field.invalid textarea{border-color:#dc2626}
.field.invalid .error{display:block}
.form-success{background:#eef0ff;color:var(--indigo);border-radius:10px;padding:1rem;font-weight:600;margin-bottom:1rem}
.contact-info p{color:var(--muted);margin:.4rem 0}
.contact-info strong{color:var(--ink);font-family:var(--head)}

/* About */
.prose{max-width:720px;margin:0 auto}
.prose p{color:var(--muted);font-size:1.08rem;margin:0 0 1.1rem}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:2.5rem;text-align:center}
.stat b{display:block;font-family:var(--head);font-size:2rem;color:var(--indigo)}
.stat span{color:var(--muted);font-size:.92rem}

/* Blog */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.article-card{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff}
.article-card img{width:100%;aspect-ratio:3/2}
.article-body{padding:1.1rem}
.article-date{color:var(--muted);font-size:.82rem;margin:0 0 .4rem}
.article-title{font-size:1.15rem;font-weight:700;margin-bottom:.5rem}
.article-excerpt{color:var(--muted);font-size:.92rem;margin:0}

/* Related products */
.related{margin-top:64px}

/* Responsive */
@media(max-width:900px){
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .collection-row{grid-template-columns:repeat(2,1fr)}
  .image-with-text{grid-template-columns:1fr;gap:28px}
  .footer-grid{grid-template-columns:1fr 1fr}
  .testimonials-grid{grid-template-columns:1fr;max-width:560px;margin:0 auto}
  .ig-grid{grid-template-columns:repeat(3,1fr)}
  .shop-layout,.pdp,.form-grid{grid-template-columns:1fr;gap:28px}
  .filters{position:static}
  .blog-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:720px){
  .menu-toggle{display:flex}
  .main-nav{position:absolute;top:70px;left:0;right:0;background:#fff;flex-direction:column;gap:0;padding:.5rem 22px;border-bottom:1px solid var(--line);box-shadow:var(--shadow);display:none}
  .main-nav.open{display:flex}
  .main-nav a{padding:.7rem 0;border-bottom:1px solid var(--line)}
}
@media(max-width:560px){
  .product-grid{grid-template-columns:1fr 1fr;gap:16px}
  .footer-grid{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr}
  .section{padding:52px 0}
  .cart-row{grid-template-columns:60px 1fr auto;grid-template-areas:"m d r" "m q p";row-gap:.4rem}
}
