/* =========================================================
   MT PARFUM — Design System
   Bảng màu & typography lấy từ bao bì sản phẩm Nomad Wood
   ========================================================= */

:root {
  /* --- Palette --- */
  --cream:      #EFE8DA;   /* nền chính kem ấm */
  --cream-2:    #E7DFCF;   /* nền phụ */
  --paper:      #FBF8F2;   /* trắng ngà (card, nhãn) */
  --sand:       #C9BBA0;   /* be đậm */
  --sand-deep:  #B7A688;   /* đất/be đậm hơn */
  --bronze:     #6E6355;   /* đồng/xám khói - nút, icon */
  --bronze-2:   #8A7E6C;   /* đồng nhạt - viền */
  --ink:        #232019;   /* chữ chính - đen than ấm */
  --ink-soft:   #4a4238;   /* chữ phụ */
  --muted:      #857c6d;   /* chú thích */
  --dark:       #241D18;   /* nền tối sang trọng */
  --dark-2:     #1b1611;
  --gold:       #B08D57;   /* ánh đồng/vàng gold */
  --gold-soft:  #c9a978;
  --line:       #d9cfbd;   /* đường kẻ mảnh */
  --line-dark:  rgba(255,255,255,.14);

  /* --- Typography --- */
  --serif: "Cormorant Garamond", "Marcellus", "Playfair Display", "Times New Roman", serif;
  --sans:  "Jost", "Inter", "Helvetica Neue", Arial, sans-serif;

  /* --- Layout --- */
  --maxw: 1280px;
  --gutter: clamp(18px, 5vw, 64px);
  --header-h: 76px;
  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --------------------- Reset --------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  letter-spacing: .01em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input { font-family: inherit; }

/* --------------------- Typography helpers --------------------- */
.serif { font-family: var(--serif); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: .02em; color: var(--ink); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--bronze);
}
.label-sm {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

/* --------------------- Layout --------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 130px); }
.center { text-align: center; }

/* --------------------- Buttons --------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 400;
  padding: 15px 34px; border-radius: var(--radius);
  transition: all .45s var(--ease); position: relative;
  white-space: nowrap;
}
.btn--solid { background: var(--bronze); color: var(--paper); }
.btn--solid:hover { background: var(--ink); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-soft); }
.btn--outline { border: 1px solid var(--bronze); color: var(--ink); }
.btn--outline:hover { background: var(--bronze); color: var(--paper); }
.btn--light { border: 1px solid rgba(255,255,255,.5); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn--block { width: 100%; }

.link-underline {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  padding-bottom: 4px; border-bottom: 1px solid var(--bronze-2); transition: opacity .3s;
}
.link-underline:hover { opacity: .6; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .5s var(--ease);
  background: transparent;
}
.header__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: var(--header-h);
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  transition: height .5s var(--ease);
}
.header__nav { display: none; gap: 34px; }
.header__nav a {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 400;
  position: relative; padding: 6px 0; color: var(--ink);
}
.header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width .4s var(--ease);
}
.header__nav a:hover::after, .header__nav a.is-active::after { width: 100%; }

.logo { text-align: center; justify-self: center; line-height: 1; }
.logo b { font-family: var(--serif); font-weight: 600; font-size: 25px; letter-spacing: .14em; display: block; }
.logo span { font-size: 9px; letter-spacing: .45em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 1px; }

.header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; position: relative; transition: opacity .3s; }
.icon-btn:hover { opacity: .55; }
.icon-btn svg { width: 21px; height: 21px; stroke: var(--ink); }
.cart-count {
  position: absolute; top: -7px; right: -9px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--bronze); color: #fff; border-radius: 999px;
  font-size: 10px; font-weight: 500; display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform .3s var(--ease);
}
.cart-count.show { transform: scale(1); }

.hamburger { display: inline-flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span { height: 1.5px; background: var(--ink); transition: .3s; }

/* scrolled state */
.header.scrolled { background: var(--cream); box-shadow: 0 1px 0 var(--line); }
.header.scrolled .header__inner { height: 62px; }

/* dark hero overlay state (top of home) */
.header.on-dark:not(.scrolled) .header__nav a,
.header.on-dark:not(.scrolled) .logo b,
.header.on-dark:not(.scrolled) .logo span { color: #fff; }
.header.on-dark:not(.scrolled) .icon-btn svg { stroke: #fff; }
.header.on-dark:not(.scrolled) .hamburger span { background: #fff; }

/* =========================================================
   MOBILE MENU
   ========================================================= */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--cream);
  transform: translateX(-100%); transition: transform .5s var(--ease);
  display: flex; flex-direction: column; padding: 26px var(--gutter);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
  font-family: var(--serif); font-size: 30px; padding: 12px 0;
  border-bottom: 1px solid var(--line); letter-spacing: .02em;
}
.mobile-menu__foot { margin-top: auto; font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.close-x { font-size: 26px; line-height: 1; }

.overlay {
  position: fixed; inset: 0; background: rgba(20,15,10,.5); z-index: 150;
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
  backdrop-filter: blur(2px);
}
.overlay.show { opacity: 1; visibility: visible; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  /* mobile: scrim dọc full-width để chữ luôn nổi */
  background: linear-gradient(180deg, rgba(20,15,10,.46) 0%, rgba(20,15,10,.28) 28%, rgba(20,15,10,.40) 60%, rgba(20,15,10,.66) 100%);
}
@media (min-width: 900px) {
  .hero__bg::after {
    /* desktop: top scrim cho nav + gradient cột trái cho tiêu đề */
    background:
      linear-gradient(180deg, rgba(20,15,10,.42) 0%, rgba(20,15,10,.10) 16%, transparent 30%),
      linear-gradient(96deg, rgba(26,20,14,.74) 0%, rgba(26,20,14,.52) 32%, rgba(26,20,14,.22) 54%, transparent 72%);
  }
}
.hero__content { position: relative; z-index: 2; max-width: 620px; color: #fff; padding-top: var(--header-h); }
.hero__content .eyebrow { color: rgba(255,255,255,.85); }
.hero h1 { color: #fff; font-size: clamp(44px, 8.5vw, 92px); font-weight: 500; letter-spacing: .01em; margin: 18px 0 22px; }
.hero p { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.9); max-width: 440px; margin-bottom: 34px; font-weight: 300; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: #fff; font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: .85;
}
.scroll-hint::after { content: ""; width: 1px; height: 46px; background: rgba(255,255,255,.6); animation: scrollline 2s var(--ease) infinite; }
@keyframes scrollline { 0%{transform:scaleY(0);transform-origin:top} 40%{transform:scaleY(1);transform-origin:top} 60%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* =========================================================
   MARQUEE / TRUST STRIP
   ========================================================= */
.strip { background: var(--dark); color: var(--cream); padding: 18px 0; overflow: hidden; }
.strip__row { display: flex; gap: 60px; align-items: center; white-space: nowrap; animation: marquee 26s linear infinite; }
.strip__row span { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-soft); display: inline-flex; align-items: center; gap: 60px; }
.strip__row span::after { content: "✦"; color: var(--bronze-2); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   SECTION HEADING
   ========================================================= */
.sec-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; margin-bottom: clamp(38px, 6vw, 66px); }
.sec-head h2 { font-size: clamp(30px, 5vw, 52px); }
.sec-head p { max-width: 520px; color: var(--ink-soft); font-size: 15px; }
.sec-head--left { align-items: flex-start; text-align: left; }

/* =========================================================
   PRODUCT GRID / CARDS
   ========================================================= */
.grid-products { display: grid; grid-template-columns: 1fr; gap: 30px; }
.card {
  position: relative; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .5s var(--ease), transform .5s var(--ease);
}
.card:hover { box-shadow: 0 26px 55px -30px rgba(35,25,15,.5); transform: translateY(-4px); }
.card__media { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--cream-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(251,248,242,.92); color: var(--bronze);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.card__quick {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  display: flex; gap: 8px; transform: translateY(14px); opacity: 0; transition: all .45s var(--ease);
}
.card:hover .card__quick { transform: translateY(0); opacity: 1; }
.card__quick .btn { flex: 1; padding: 13px 10px; font-size: 10.5px; letter-spacing: .12em; }
.qv-btn { background: rgba(251,248,242,.94); color: var(--ink); backdrop-filter: blur(4px); }
.qv-btn:hover { background: #fff; }
.card__body { padding: 22px 22px 26px; text-align: center; }
.card__body h3 { font-size: 25px; margin-bottom: 4px; }
.card__body .type { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.card__sizes { display: flex; gap: 6px; justify-content: center; margin-bottom: 14px; }
.card__sizes span { font-size: 10.5px; letter-spacing: .1em; padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); }
.card__price { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.card__price small { font-size: 13px; color: var(--muted); font-family: var(--sans); letter-spacing: .06em; }

/* =========================================================
   FEATURE / SPLIT SECTIONS
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch; }
.split__media { position: relative; min-height: 62vh; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px,8vw,90px) var(--gutter); }
.split__body h2 { font-size: clamp(30px, 4.6vw, 50px); margin: 16px 0 22px; }
.split__body p { color: var(--ink-soft); margin-bottom: 16px; max-width: 480px; }
.split__body.on-dark { background: var(--dark); color: var(--cream); }
.split__body.on-dark h2 { color: #fff; }
.split__body.on-dark p { color: rgba(255,255,255,.72); }
.split__body.on-dark .eyebrow { color: var(--gold-soft); }
.quote-serif { font-family: var(--serif); font-size: clamp(21px,2.6vw,28px); font-style: italic; line-height: 1.5; color: var(--ink); }
.on-dark .quote-serif { color: #fff; }

/* =========================================================
   BRAND STATEMENT (dark band)
   ========================================================= */
.statement { background: var(--dark); color: var(--cream); text-align: center; }
.statement .wrap { max-width: 820px; }
.statement .mark { font-family: var(--serif); font-size: 46px; letter-spacing: .1em; color: #fff; }
.statement .mark small { display: block; font-size: 12px; letter-spacing: .5em; color: var(--gold-soft); margin-top: 6px; }
.statement blockquote { font-family: var(--serif); font-size: clamp(24px, 3.6vw, 40px); line-height: 1.4; margin: 30px 0; color: #fff; font-weight: 400; }
.statement blockquote em { color: var(--gold-soft); font-style: italic; }
.statement .sign { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* =========================================================
   SIZE SPEC STRIP
   ========================================================= */
.specs { display: grid; grid-template-columns: 1fr; gap: 26px; }
.spec-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: var(--paper); text-align: center; transition: .4s var(--ease); }
.spec-card:hover { border-color: var(--bronze-2); background: #fff; }
.spec-card .vol { font-family: var(--serif); font-size: 40px; color: var(--ink); }
.spec-card .fl { font-size: 11px; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; margin-bottom: 14px; }
.spec-card ul { display: flex; flex-direction: column; gap: 7px; font-size: 13px; color: var(--ink-soft); }
.spec-card ul li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 6px; }

/* =========================================================
   THANK YOU CARD
   ========================================================= */
.thanks { background: var(--dark-2); color: var(--cream); }
.thanks__grid { display: grid; grid-template-columns: 1fr; gap: 0; align-items: center; }
.thanks__img { min-height: 56vh; position: relative; }
.thanks__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.thanks__note { padding: clamp(40px,7vw,80px) var(--gutter); }
.thanks__card {
  background: var(--paper); color: var(--ink); border-radius: var(--radius);
  padding: clamp(34px,5vw,54px); max-width: 460px; text-align: center;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6);
}
.thanks__card .ty { font-family: var(--serif); font-size: 30px; letter-spacing: .12em; margin-bottom: 20px; }
.thanks__card p { font-size: 15px; color: var(--ink-soft); line-height: 1.8; }
.thanks__card .sign { font-family: var(--serif); font-size: 26px; font-style: italic; margin-top: 22px; color: var(--ink); }
.thanks__card .role { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark); color: rgba(255,255,255,.72); padding-top: clamp(56px,7vw,88px); }
.footer a:hover { color: #fff; }
.footer__news { border-bottom: 1px solid var(--line-dark); padding-bottom: 48px; margin-bottom: 48px; text-align: center; }
.footer__news h3 { color: #fff; font-size: clamp(26px,4vw,40px); margin-bottom: 10px; }
.footer__news p { max-width: 440px; margin: 0 auto 26px; font-size: 14px; }
.news-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.news-form input {
  flex: 1; min-width: 200px; background: transparent; border: 1px solid var(--line-dark); color: #fff;
  padding: 14px 18px; border-radius: var(--radius); font-size: 14px; letter-spacing: .04em;
}
.news-form input::placeholder { color: rgba(255,255,255,.4); }
.news-form input:focus { outline: none; border-color: var(--gold-soft); }
.footer__cols { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
.footer__col h4 { color: #fff; font-family: var(--sans); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.footer__col .logo b { color: #fff; }
.footer__col .logo span { color: var(--gold-soft); }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.footer__col p { font-size: 14px; line-height: 1.8; }
.socials { display: flex; gap: 14px; margin-top: 16px; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: 999px; display: flex; align-items: center; justify-content: center; transition: .3s; }
.socials a:hover { background: var(--gold); border-color: var(--gold); }
.socials svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }
.footer__bottom { border-top: 1px solid var(--line-dark); padding: 26px 0; display: flex; flex-direction: column; gap: 10px; text-align: center; font-size: 12.5px; letter-spacing: .04em; }

/* =========================================================
   CART DRAWER
   ========================================================= */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); z-index: 250;
  background: var(--cream); transform: translateX(100%); transition: transform .5s var(--ease);
  display: flex; flex-direction: column; box-shadow: -20px 0 60px -30px rgba(0,0,0,.5);
}
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 24px var(--gutter); border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 20px; letter-spacing: .06em; }
.drawer__head .label-sm { margin-left: 8px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 10px var(--gutter); }
.drawer__empty { text-align: center; padding: 60px 0; color: var(--muted); }
.drawer__empty svg { width: 42px; height: 42px; stroke: var(--bronze-2); margin: 0 auto 18px; }
.cart-item { display: grid; grid-template-columns: 74px 1fr auto; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-item__img { width: 74px; height: 92px; object-fit: cover; background: var(--cream-2); border-radius: var(--radius); }
.cart-item__info h4 { font-family: var(--serif); font-size: 18px; }
.cart-item__info .meta { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 3px 0 10px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.qty button { width: 28px; height: 28px; font-size: 15px; color: var(--ink-soft); }
.qty span { min-width: 26px; text-align: center; font-size: 13px; }
.cart-item__right { text-align: right; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.cart-item__price { font-family: var(--serif); font-size: 17px; }
.remove { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid transparent; }
.remove:hover { color: var(--bronze); border-color: var(--bronze); }
.drawer__foot { padding: 22px var(--gutter) 26px; border-top: 1px solid var(--line); background: var(--paper); }
.drawer__row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 13px; color: var(--ink-soft); }
.drawer__total { display: flex; justify-content: space-between; align-items: baseline; margin: 12px 0 18px; }
.drawer__total b { font-family: var(--serif); font-size: 26px; }
.drawer__note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 12px; letter-spacing: .04em; }

/* =========================================================
   MODAL (quick view)
   ========================================================= */
.modal { position: fixed; inset: 0; z-index: 260; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: .4s; }
.modal.open { opacity: 1; visibility: visible; }
.modal__box { background: var(--cream); max-width: 880px; width: 100%; max-height: 90vh; overflow-y: auto; border-radius: var(--radius); position: relative; display: grid; grid-template-columns: 1fr; transform: translateY(20px); transition: transform .5s var(--ease); }
.modal.open .modal__box { transform: translateY(0); }
.modal__close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 38px; height: 38px; border-radius: 999px; background: rgba(251,248,242,.9); font-size: 20px; display: flex; align-items: center; justify-content: center; }
.modal__media { background: var(--cream-2); aspect-ratio: 1/1; }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__info { padding: clamp(28px,4vw,44px); display: flex; flex-direction: column; }

/* =========================================================
   PRODUCT DETAIL PAGE
   ========================================================= */
.pdp { padding-top: calc(var(--header-h) + 30px); }
.breadcrumb { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.breadcrumb a:hover { color: var(--ink); }
.pdp__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }

/* gallery */
.gallery__main { position: relative; aspect-ratio: 4/5; background: var(--cream-2); overflow: hidden; border-radius: var(--radius); cursor: zoom-in; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .5s, transform .6s var(--ease); }
.gallery__main.zoomed img { transform: scale(1.9); cursor: zoom-out; }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.gallery__thumbs button { flex: 0 0 74px; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); opacity: .6; transition: .3s; }
.gallery__thumbs button.active { opacity: 1; border-color: var(--bronze); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* info */
.pdp__info .type { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--bronze); margin-bottom: 10px; }
.pdp__info h1 { font-size: clamp(38px,6vw,60px); margin-bottom: 14px; }
.pdp__info .lead { color: var(--ink-soft); font-size: 16px; margin-bottom: 24px; max-width: 460px; }
.pdp__price { font-family: var(--serif); font-size: 34px; color: var(--ink); margin-bottom: 26px; }
.pdp__price small { font-size: 15px; color: var(--muted); font-family: var(--sans); letter-spacing: .04em; }
.opt-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.pills { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.pill { border: 1px solid var(--bronze-2); border-radius: 999px; padding: 12px 24px; font-size: 13px; letter-spacing: .08em; transition: .3s var(--ease); background: transparent; }
.pill:hover { border-color: var(--bronze); }
.pill.active { background: var(--bronze); color: var(--paper); border-color: var(--bronze); }
.pill small { display: block; font-size: 10px; color: inherit; opacity: .7; letter-spacing: .1em; }
.pdp__buy { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.pdp__buy .qty { border-color: var(--bronze-2); }
.pdp__buy .btn { flex: 1; }
.pdp__meta { display: flex; flex-direction: column; gap: 8px; margin: 24px 0; font-size: 13px; color: var(--ink-soft); }
.pdp__meta li { display: flex; gap: 10px; align-items: center; }
.pdp__meta svg { width: 17px; height: 17px; stroke: var(--bronze); flex: none; }

/* accordion */
.acc { border-top: 1px solid var(--line); margin-top: 12px; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__head { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; text-align: left; }
.acc__head .plus { font-size: 18px; transition: transform .4s var(--ease); color: var(--bronze); }
.acc__item.open .acc__head .plus { transform: rotate(45deg); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc__panel-inner { padding: 0 0 22px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.8; }
.acc__panel-inner ul { list-style: disc; padding-left: 18px; display: flex; flex-direction: column; gap: 5px; }

/* related */
.related { border-top: 1px solid var(--line); }

/* =========================================================
   PAGE HERO (subpages)
   ========================================================= */
.page-hero { padding: calc(var(--header-h) + 60px) 0 46px; text-align: center; background: var(--cream-2); }
.page-hero h1 { font-size: clamp(38px,6vw,64px); }
.page-hero p { color: var(--ink-soft); margin-top: 12px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea { width: 100%; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; font-size: 15px; color: var(--ink); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--bronze); }
.info-line { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-line svg { width: 22px; height: 22px; stroke: var(--bronze); flex: none; }
.info-line b { display: block; font-family: var(--serif); font-size: 18px; margin-bottom: 2px; }
.info-line span { font-size: 14px; color: var(--ink-soft); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__bg img { object-position: center; } * { animation: none !important; } }

/* toast */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(120%); z-index: 300; background: var(--ink); color: var(--paper); padding: 15px 26px; border-radius: 999px; font-size: 13px; letter-spacing: .06em; transition: transform .5s var(--ease); box-shadow: 0 14px 40px -14px rgba(0,0,0,.6); }
.toast.show { transform: translateX(-50%) translateY(0); }

.no-scroll { overflow: hidden; }

/* =========================================================
   RESPONSIVE — tablet & desktop
   ========================================================= */
@media (min-width: 640px) {
  .grid-products { grid-template-columns: repeat(2, 1fr); }
  .specs { grid-template-columns: repeat(3, 1fr); }
  .footer__cols { grid-template-columns: 1.4fr 1fr 1fr; }
  .modal__box { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .header__nav { display: flex; }
  .hamburger { display: none; }
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split--rev .split__media { order: 2; }
  .thanks__grid { grid-template-columns: 1fr 1fr; }
  .pdp__grid { grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; }
  .pdp__grid .gallery { position: sticky; top: calc(var(--header-h) + 20px); }
  .footer__cols { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .grid-products { gap: 36px; }
}
