/* ==========================================================
   UJVAL — Premium Lifestyle Store
   Palette: warm white · ivory · light gray · charcoal · black
   ========================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #FBf8F3;            /* warm white      */
  --bg-soft: #F3EDE3;       /* ivory           */
  --bg-card: #FFFFFF;
  --line: #E7E0D2;
  --line-soft: #F0EBE1;
  --ink: #1E1A14;           /* near-black text */
  --text: #6E6557;
  --text-soft: #9A9183;
  --accent: #B7A06F;        /* subtle beige    */
  --accent-deep: #967F4E;
  --star: #C9A45C;
  --dark: #1B1712;
  --dark-soft: #262119;
  --white: #FFFFFF;
  --shadow-sm: 0 6px 24px rgba(30, 26, 20, 0.06);
  --shadow-md: 0 14px 40px rgba(30, 26, 20, 0.10);
  --shadow-lg: 0 24px 64px rgba(30, 26, 20, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s var(--ease); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--accent-deep); color: #fff; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================
   TYPOGRAPHY / SECTION HEADINGS
   ========================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }

.eyebrow--light { color: var(--accent); }
.eyebrow--center { justify-content: center; }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}
.sec-head:has(.eyebrow) { align-items: flex-end; }
.sec-head--center { flex-direction: column; align-items: center; text-align: center; }
.sec-head--center .eyebrow::before { display: none; }

.sec-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.12;
  text-transform: uppercase;
  margin-top: 10px;
}
.sec-head.has-eyebrow-title .sec-title { margin-top: 10px; }
.sec-sub { color: var(--text); margin-top: 10px; max-width: 560px; }

.sec-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.sec-link i { transition: transform 0.3s var(--ease); }
.sec-link:hover { color: var(--accent-deep); border-color: var(--accent-deep); }
.sec-link:hover i { transform: translateX(4px); }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.32s var(--ease);
  line-height: 1;
}
.btn i { transition: transform 0.3s var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--outline { border-color: rgba(30, 26, 20, 0.35); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); }

.btn--sm { padding: 12px 22px; font-size: 0.68rem; }
.btn--block { width: 100%; }

/* ==========================================================
   IMAGE PLACEHOLDER SYSTEM  (reusable, replaceable)
   To use your own photo: drop an <img src="..." alt="...">
   inside any .img-ph div — the placeholder hides automatically.
   ========================================================== */
.img-ph {
  position: relative;
  width: 100%;
  background: linear-gradient(160deg, #EFE9DD 0%, #E6DFD1 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.img-ph--tall    { aspect-ratio: 3 / 4; }
.img-ph--square  { aspect-ratio: 1 / 1; }
.img-ph--wide    { aspect-ratio: 4 / 3; }
.img-ph--banner  { aspect-ratio: 21 / 9; }
.img-ph--thumb   { width: 88px; aspect-ratio: 1 / 1; flex: none; }

.img-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-ph--contain img { object-fit: contain; padding: 14px; background: #fff; }

.img-ph:has(img) { border-color: transparent; background: none; box-shadow: none; }
.img-ph:has(img) .img-ph-fallback { display: none; }

.img-ph-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  transition: transform 0.4s var(--ease);
}
.img-ph:hover .img-ph-fallback { transform: scale(1.04); }
.img-ph:has(img):hover .img-ph img { transform: scale(1.05); }
.img-ph img { transition: transform 0.6s var(--ease); }

.img-ph-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(30, 26, 20, 0.16);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.45);
}
.img-ph-icon svg { width: 24px; height: 24px; }

.img-ph-label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
}
.img-ph-dim { font-size: 0.66rem; letter-spacing: 0.08em; color: var(--text-soft); }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }

.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  transition: height 0.3s var(--ease);
}
.site-header.scrolled .header-row { height: 64px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 16px; height: 16px;
  background: var(--accent-deep);
  transform: rotate(45deg);
  display: inline-block;
}
.brand-name {
  font-family: 'Archivo', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  font-size: 1.25rem;
  color: var(--ink);
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
}

.main-nav { justify-self: center; }
.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative;
  display: inline-block;
  padding: 12px 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--ink); }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 4px; }
.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  font-size: 1.05rem;
  color: var(--ink);
  border-radius: 50%;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.icon-btn:hover { background: var(--bg-soft); color: var(--accent-deep); }

.badge {
  position: absolute;
  top: 2px; right: 0;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--accent-deep);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Account dropdown */
.account-pop {
  position: absolute;
  top: calc(100% + 8px);
  right: 24px;
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.28s var(--ease);
}
.account-pop.open { opacity: 1; visibility: visible; transform: translateY(0); }
.account-pop-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--text-soft);
  padding: 8px 12px 4px;
  text-transform: uppercase;
}
.account-pop a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  font-size: 0.86rem;
  color: var(--text);
  border-radius: 4px;
}
.account-pop a:hover { background: var(--bg-soft); color: var(--ink); }
.account-pop a i { width: 18px; color: var(--accent-deep); }

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(27, 23, 18, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.32s var(--ease);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-panel { width: min(680px, 92vw); }
.search-form {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 12px;
  box-shadow: var(--shadow-lg);
}
.search-form > i { color: var(--text-soft); font-size: 1.1rem; }
.search-form input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  padding: 18px 0;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.search-form input::placeholder { color: var(--text-soft); }
.search-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  border-radius: 50%;
  transition: all 0.25s var(--ease);
}
.search-close:hover { background: var(--bg-soft); color: var(--ink); }
.search-hint { color: rgba(255,255,255,0.55); font-size: 0.74rem; letter-spacing: 0.14em; margin-top: 14px; text-align: center; }

/* Mobile nav scrim */
.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 1098;
  background: rgba(27, 23, 18, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}
.nav-scrim.open { opacity: 1; visibility: visible; }

body.no-scroll { overflow: hidden; }

/* Nav head / close (mobile) */
.nav-head { display: none; }
.nav-close { display: none; }
.nav-foot { display: none; }

/* ==========================================================
   HERO
   ========================================================== */
.hero { padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 6vw, 80px); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-eyebrow { animation: fadeUp 0.8s var(--ease) both; }
.hero-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.9rem, 6.4vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.98;
  text-transform: uppercase;
  margin: 22px 0 26px;
  animation: fadeUp 0.8s 0.08s var(--ease) both;
}
.hero-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}
.hero-sub {
  color: var(--text);
  font-size: 1.06rem;
  max-width: 420px;
  animation: fadeUp 0.8s 0.16s var(--ease) both;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; animation: fadeUp 0.8s 0.24s var(--ease) both; }

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.32s var(--ease) both;
}
.hero-scroll::after { content: ""; width: 56px; height: 1px; background: var(--text-soft); }

.hero-visual { position: relative; animation: fadeScale 0.9s 0.2s var(--ease) both; }

.hero-ring {
  position: absolute;
  width: 78%;
  height: 78%;
  top: -7%; right: -7%;
  border: 1px solid rgba(183, 160, 111, 0.5);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  z-index: 2;
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  animation: floatY 5s ease-in-out infinite;
}
.hero-orb--a { top: 4%; left: -5%; }
.hero-orb--b { bottom: 6%; right: -3%; font-size: 1.2rem; animation-delay: 1.2s; }

.hero-caption {
  position: absolute;
  left: 12px; bottom: -34px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.hero-caption span {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: var(--accent-deep);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* ==========================================================
   FEATURES
   ========================================================== */
.features { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 48px 32px;
  border-right: 1px solid var(--line);
}
.feature:last-child { border-right: none; }
.feature-ico {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(150, 127, 78, 0.4);
  color: var(--accent-deep);
  font-size: 1.1rem;
  border-radius: 50%;
}
.feature h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.feature p { color: var(--text); font-size: 0.88rem; margin-top: 6px; line-height: 1.6; }

/* ==========================================================
   PRODUCT SECTION + CARDS
   ========================================================== */
.products { padding: clamp(64px, 9vw, 110px) 0; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 26px; }

.pcard {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.pcard-media { position: relative; }
.pcard-media .img-ph { border-radius: 0; border: none; box-shadow: none; }
.pcard-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: var(--dark);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 2px;
}
.pcard-wish {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  font-size: 0.95rem;
  transition: all 0.28s var(--ease);
}
.pcard-wish:hover { transform: scale(1.08); color: var(--accent-deep); }
.pcard-wish.active { color: var(--accent-deep); }
.pcard-wish.active i { font-family: "Font Awesome 6 Free"; font-weight: 900; }

.pcard-body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.pcard-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.pcard-cat { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-soft); }
.pcard-rate { display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; color: var(--text); }
.pcard-rate .stars i { color: var(--star); font-size: 0.66rem; }
.pcard-name { font-family: 'Archivo', sans-serif; font-size: 1.02rem; font-weight: 700; line-height: 1.3; letter-spacing: 0.01em; }
.pcard-name a:hover { color: var(--accent-deep); }
.pcard-desc { color: var(--text); font-size: 0.85rem; margin-top: 8px; line-height: 1.55; flex: 1; }

.pcard-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.pcard-price .price { font-family: 'Archivo', sans-serif; font-size: 1.18rem; font-weight: 800; color: var(--ink); }
.pcard-price .old { font-size: 0.82rem; color: var(--text-soft); text-decoration: line-through; }
.pcard-price .off { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; color: var(--accent-deep); background: rgba(183, 160, 111, 0.16); padding: 3px 8px; border-radius: 2px; }

.pcard-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.pcard-actions .btn { padding: 13px 10px; font-size: 0.64rem; letter-spacing: 0.16em; }

/* ==========================================================
   PROMO BANNER
   ========================================================== */
.promo { padding: clamp(48px, 7vw, 90px) 0; background: var(--dark); }
.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 5vw, 64px);
  background: var(--dark-soft);
  border: 1px solid rgba(183, 160, 111, 0.18);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.promo-inner::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(183, 160, 111, 0.18);
  top: -120px; right: 26%;
}
.promo-copy { position: relative; z-index: 1; }
.promo-copy h2 { margin-top: 16px; }
.promo-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}
.promo-copy p { color: rgba(255, 255, 255, 0.55); margin-top: 16px; max-width: 420px; }
.promo-copy .btn { margin-top: 32px; }
.promo-ph { box-shadow: none; border-color: rgba(255, 255, 255, 0.08); }

/* ==========================================================
   CATEGORIES
   ========================================================== */
.categories { padding: clamp(64px, 9vw, 110px) 0; background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.cat-card { position: relative; display: block; overflow: hidden; border-radius: 6px; }
.cat-card .cat-ph { border-radius: 6px; }
.cat-card .cat-ph .img-ph-icon, .cat-card .cat-ph .img-ph-label { transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }

.cat-label {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(251, 248, 243, 0.94);
  border-radius: 4px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.cat-label i { transition: transform 0.35s var(--ease); color: var(--accent-deep); }
.cat-card:hover .cat-label { transform: translateY(-4px); background: #fff; }
.cat-card:hover .cat-label i { transform: translateX(4px); }
.cat-card:hover .cat-ph img { transform: scale(1.07); }
.cat-card:hover .cat-ph .img-ph-fallback { transform: scale(1.05); }

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why { padding: clamp(64px, 9vw, 110px) 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-item {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.why-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-ico {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(150, 127, 78, 0.4);
  color: var(--accent-deep);
  font-size: 1.15rem;
  border-radius: 50%;
  margin-bottom: 20px;
}
.why-item h3 { font-family: 'Archivo', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.why-item p { color: var(--text); font-size: 0.88rem; margin-top: 10px; }

/* ==========================================================
   REVIEWS
   ========================================================== */
.reviews { padding: clamp(64px, 9vw, 110px) 0; background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.review-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 40px 32px 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-quote { position: absolute; top: 22px; right: 26px; color: var(--accent); font-size: 1.6rem; opacity: 0.5; }

.review-avatar { margin-bottom: 18px; }
.avatar-ph { width: 64px; height: 64px; border-radius: 50%; box-shadow: none; background: linear-gradient(160deg, #F1EBDF, #E4DCCB); }
.avatar-ph .img-ph-label { font-size: 0.44rem; letter-spacing: 0.14em; }
.avatar-ph .img-ph-icon { width: 30px; height: 30px; }
.avatar-ph .img-ph-icon svg { width: 16px; height: 16px; }
.avatar-ph .img-ph-fallback { gap: 6px; padding: 8px; }
.avatar-ph img { border-radius: 50%; }

.review-name { font-family: 'Archivo', sans-serif; font-size: 1rem; font-weight: 700; }
.review-stars { display: inline-flex; gap: 3px; margin: 8px 0 12px; color: var(--star); font-size: 0.8rem; }
.review-text { color: var(--text); font-size: 0.92rem; line-height: 1.7; }

/* ==========================================================
   FINAL CTA
   ========================================================== */
.cta-final { padding: clamp(72px, 10vw, 130px) 0 clamp(56px, 8vw, 96px); background: var(--dark); position: relative; overflow: hidden; }
.cta-final::before {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(183, 160, 111, 0.14);
  top: -220px; left: -160px;
}
.cta-final::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(183, 160, 111, 0.14);
  bottom: -180px; right: -120px;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
  margin: 20px 0 24px;
}
.cta-inner p { color: rgba(255, 255, 255, 0.55); }
.cta-inner .btn { margin-top: 36px; }
.cta-ph { margin-top: clamp(40px, 6vw, 64px); position: relative; z-index: 1; box-shadow: none; border-color: rgba(255, 255, 255, 0.1); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { background: #151109; color: rgba(255, 255, 255, 0.72); padding-top: 40px; }
.footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 48px;
}
.footer-strip-item { display: inline-flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.footer-strip-item i { color: var(--accent); }
.footer-strip-item a:hover { color: #fff; }

.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; transform: translateY(-3px); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 18px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.5); max-width: 300px; }

.newsletter { margin-top: 28px; }
.newsletter-label { display: block; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); margin-bottom: 12px; }
.newsletter-form { display: flex; gap: 10px; max-width: 360px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  color: #fff;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.25s var(--ease);
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.newsletter-form .btn--dark { background: var(--accent-deep); }
.newsletter-form .btn--dark:hover { background: var(--accent); }

.footer-col h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-col a i { width: 18px; color: var(--accent); font-size: 0.9rem; }
.footer-col a:hover { color: #fff; padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-payments { display: inline-flex; gap: 14px; font-size: 1.6rem; color: rgba(255, 255, 255, 0.35); }

/* ==========================================================
   INNER PAGES · PAGE HEAD
   ========================================================== */
.page-head { padding: 56px 0 8px; }
.page-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-top: 18px;
}
.page-sub { color: var(--text); margin-top: 10px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.breadcrumb span { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--accent-deep); }

/* ==========================================================
   PRODUCT DETAIL PAGE
   ========================================================== */
.pd-main { padding: clamp(28px, 4vw, 48px) 0 60px; }
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.pd-gallery { position: sticky; top: 100px; }
.pd-gallery-main { box-shadow: var(--shadow-md); }
.pd-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.pd-thumb {
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 4px;
  background: var(--bg-card);
  transition: border-color 0.25s var(--ease), opacity 0.25s var(--ease);
  opacity: 0.8;
}
.pd-thumb .img-ph { border: none; box-shadow: none; border-radius: 2px; }
.pd-thumb:hover { opacity: 1; border-color: var(--line); }
.pd-thumb.active { border-color: var(--accent-deep); opacity: 1; }

.pd-cat { color: var(--accent-deep); }
.pd-name {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.12;
  text-transform: uppercase;
  margin: 14px 0 14px;
}
.pd-rating { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; color: var(--text); font-size: 0.82rem; }
.pd-rating .stars i { color: var(--star); font-size: 0.8rem; }
.pd-avail { color: var(--accent-deep); font-weight: 600; }

.pd-price { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin: 22px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pd-price .price { font-family: 'Archivo', sans-serif; font-size: 2rem; font-weight: 800; }
.pd-price .old { color: var(--text-soft); text-decoration: line-through; }
.pd-price .off { font-size: 0.72rem; font-weight: 700; color: var(--accent-deep); background: rgba(183, 160, 111, 0.16); padding: 4px 10px; border-radius: 3px; }

.pd-desc { color: var(--text); font-size: 0.98rem; line-height: 1.75; }
.pd-desc p + p { margin-top: 12px; }

.pd-variants { margin-top: 26px; }
.pd-label { font-family: 'Archivo', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink); display: block; margin-bottom: 12px; }
.variant-row { display: flex; flex-wrap: wrap; gap: 10px; }
.variant-btn {
  min-width: 58px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-card);
  font-size: 0.8rem;
  color: var(--text);
  transition: all 0.25s var(--ease);
}
.variant-btn:hover { border-color: var(--ink); }
.variant-btn.active { border-color: var(--ink); background: var(--ink); color: #fff; }

.pd-qty { margin-top: 26px; display: flex; align-items: center; gap: 18px; }

.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: var(--bg-card); }
.qty-stepper button { width: 44px; height: 48px; font-size: 1.05rem; color: var(--ink); transition: background 0.25s var(--ease); }
.qty-stepper button:hover { background: var(--bg-soft); }
.qty-stepper span { min-width: 40px; text-align: center; font-family: 'Archivo', sans-serif; font-weight: 700; }

.pd-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.pd-actions .btn { flex: 1; min-width: 190px; }
.wish-add { flex: 0 0 auto; width: 54px; padding: 0; }
.wish-add i { transition: transform 0.25s var(--ease); }
.wish-add:hover i { transform: scale(1.15); }
.wish-add.active { color: var(--accent-deep); }
.wish-add.active i { font-weight: 900; }

.pd-trust { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.84rem; color: var(--text); }
.trust-item i { color: var(--accent-deep); font-size: 1.1rem; width: 22px; text-align: center; }

/* Extras: tabs, specs, services, reviews, related */
.pd-extras { padding-bottom: clamp(64px, 9vw, 110px); }
.pd-tabs { border-top: 1px solid var(--line); }
.pd-tab-bar { display: flex; gap: 4px; border-bottom: 1px solid var(--line); overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
.pd-tab-bar::-webkit-scrollbar { display: none; }
.pd-tab {
  padding: 20px 26px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pd-tab:hover { color: var(--ink); }
.pd-tab.active { color: var(--ink); border-bottom-color: var(--accent-deep); }

.pd-panel { display: none; padding: 40px 0 24px; }
.pd-panel.active { display: block; animation: fadeUp 0.4s var(--ease) both; }
.pd-panel > p { color: var(--text); line-height: 1.8; max-width: 760px; }

.spec-table { max-width: 640px; }
.spec-row { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.92rem; }
.spec-row dt { color: var(--text-soft); font-weight: 600; }
.spec-row dd { color: var(--ink); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 8px 0 16px; }
.service-card { padding: 26px; border: 1px solid var(--line-soft); border-radius: 6px; background: var(--bg-card); }
.service-card i { color: var(--accent-deep); font-size: 1.3rem; }
.service-card h4 { font-family: 'Archivo', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin: 16px 0 8px; }
.service-card p { color: var(--text); font-size: 0.85rem; line-height: 1.6; }

.pd-reviews { margin-top: 56px; padding-top: 56px; border-top: 1px solid var(--line); }
.review-summary { margin-bottom: 32px; }
.review-score { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.review-score strong { font-family: 'Archivo', sans-serif; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.review-score .review-stars { margin: 0; font-size: 1rem; }
.review-score > span:last-child { color: var(--text-soft); font-size: 0.84rem; }

.product-reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.p-review { padding: 28px; border: 1px solid var(--line-soft); border-radius: 6px; background: var(--bg-card); }
.p-review-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.p-review-head strong { font-family: 'Archivo', sans-serif; font-size: 0.92rem; }
.p-review-head time { color: var(--text-soft); font-size: 0.76rem; }
.p-review .review-stars { margin: 0 0 10px; }
.p-review p { color: var(--text); font-size: 0.9rem; line-height: 1.7; }

.related { margin-top: 64px; }

/* ==========================================================
   CART PAGE
   ========================================================== */
.cart-page { padding: 40px 0 clamp(64px, 9vw, 110px); }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }

.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto auto auto;
  align-items: center;
  gap: 22px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  transition: box-shadow 0.3s var(--ease);
}
.cart-item:hover { box-shadow: var(--shadow-sm); }
.ci-thumb .img-ph { box-shadow: none; border-color: var(--line-soft); }

.ci-info { min-width: 0; }
.ci-name { font-family: 'Archivo', sans-serif; font-size: 0.98rem; font-weight: 700; line-height: 1.35; }
.ci-name:hover { color: var(--accent-deep); }
.ci-meta { color: var(--text-soft); font-size: 0.8rem; margin-top: 6px; display: flex; gap: 12px; flex-wrap: wrap; }
.ci-meta strong { color: var(--text); font-weight: 600; }

.qty-stepper--sm button { width: 34px; height: 38px; font-size: 0.95rem; }
.qty-stepper--sm span { min-width: 34px; }

.ci-total { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.05rem; text-align: right; white-space: nowrap; }
.ci-remove {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-soft);
  transition: all 0.25s var(--ease);
}
.ci-remove:hover { background: #f3e3e0; color: #a1432f; }

.cart-empty {
  text-align: center;
  padding: 80px 24px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: var(--bg-card);
}
.cart-empty .ce-icon {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft);
  font-size: 1.7rem;
}
.cart-empty h3 { font-family: 'Archivo', sans-serif; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.02em; }
.cart-empty p { color: var(--text); margin: 10px 0 26px; }
.cart-empty .continue { padding: 16px 34px; }

.cart-summary {
  position: sticky;
  top: 104px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.cs-title { font-family: 'Archivo', sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 22px; }
.cs-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; font-size: 0.9rem; color: var(--text); }
.cs-row .cs-amount { font-family: 'Archivo', sans-serif; font-weight: 700; color: var(--ink); }
.cs-row.cs-free .cs-amount { color: var(--accent-deep); }
.cs-divider { height: 1px; background: var(--line-soft); margin: 12px 0; }
.cs-total { display: flex; align-items: center; justify-content: space-between; padding: 14px 0 22px; }
.cs-total span { font-size: 0.9rem; color: var(--text); }
.cs-total strong { font-family: 'Archivo', sans-serif; font-size: 1.5rem; font-weight: 900; }
.cs-btns { display: flex; flex-direction: column; gap: 12px; }
.cs-note { font-size: 0.78rem; color: var(--text-soft); text-align: center; margin-top: 14px; }
.cs-note i { color: var(--accent-deep); }

/* ==========================================================
   CHECKOUT PAGE
   ========================================================== */
.checkout-page { padding: 40px 0 clamp(64px, 9vw, 110px); }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }

.checkout-forms { display: flex; flex-direction: column; gap: 26px; }
.checkout-field {
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: var(--bg-card);
  padding: 28px;
}
.checkout-field legend {
  font-family: 'Archivo', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 10px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.field-row.center { grid-template-columns: 1fr; }
.field-row > label:only-child { grid-column: 1 / -1; }

.checkout-field > label,
.checkout-field > .field-row > label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 16px;
}
.checkout-field input[type="text"],
.checkout-field input[type="email"],
.checkout-field input[type="tel"] {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.checkout-field input:focus { border-color: var(--accent-deep); box-shadow: 0 0 0 3px rgba(150, 127, 78, 0.12); }
.checkout-field input.invalid { border-color: #c05543; }

/* Payment methods */
.pay-methods { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 18px; }
.pay-method { cursor: pointer; }
.pay-method input { position: absolute; opacity: 0; pointer-events: none; }
.pay-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  transition: all 0.25s var(--ease);
}
.pay-card i { font-size: 1.25rem; color: var(--accent-deep); width: 24px; }
.pay-card strong { display: block; font-family: 'Archivo', sans-serif; font-size: 0.82rem; letter-spacing: 0.04em; }
.pay-card small { color: var(--text-soft); font-size: 0.72rem; }
.pay-method:hover .pay-card { border-color: var(--ink); }
.pay-method input:checked + .pay-card { border-color: var(--accent-deep); box-shadow: 0 0 0 3px rgba(150, 127, 78, 0.12); }

/* Coupon */
.coupon-row { display: flex; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.coupon-row input {
  flex: 1;
  min-width: 180px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.coupon-row input:focus { border-color: var(--accent-deep); }
.coupon-status { font-size: 0.8rem; font-weight: 600; color: var(--accent-deep); width: 100%; }
.coupon-status.bad { color: #c05543; }

/* Order summary */
.order-summary {
  position: sticky;
  top: 104px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.order-summary h3 { font-family: 'Archivo', sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
.os-items { display: flex; flex-direction: column; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--line-soft); }
.os-item { display: flex; align-items: center; gap: 14px; }
.os-item .img-ph { width: 52px; flex: none; border: none; background: var(--bg-soft); box-shadow: none; }
.os-item .img-ph-fallback { gap: 2px; padding: 4px; }
.os-item .img-ph-icon { width: 20px; height: 20px; }
.os-item .img-ph-icon svg { width: 12px; height: 12px; }
.os-item .img-ph-label { font-size: 0.36rem; letter-spacing: 0.1em; }
.os-item-info { flex: 1; min-width: 0; }
.os-item-info strong { display: block; font-size: 0.86rem; line-height: 1.35; }
.os-item-info small { color: var(--text-soft); font-size: 0.76rem; }
.os-item-price { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 0.9rem; }

.os-totals { padding-top: 18px; }
.os-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; font-size: 0.88rem; color: var(--text); }
.os-row span:last-child { font-weight: 700; color: var(--ink); }
.os-good { color: var(--accent-deep) !important; }
.os-row--total { border-top: 1px solid var(--line-soft); margin-top: 12px; padding-top: 16px; }
.os-row--total span:last-child { font-family: 'Archivo', sans-serif; font-size: 1.5rem; font-weight: 900; }
.os-secure { font-size: 0.78rem; color: var(--text-soft); text-align: center; margin-top: 16px; }
.os-secure i { color: var(--accent-deep); }

.order-success { text-align: center; max-width: 560px; margin: 40px auto 0; padding: 60px 40px; background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: 8px; box-shadow: var(--shadow-sm); }
.os-icon {
  width: 76px; height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(183, 160, 111, 0.16);
  color: var(--accent-deep);
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
}
.order-success h2 { font-family: 'Archivo', sans-serif; font-size: 1.9rem; text-transform: uppercase; letter-spacing: -0.01em; }
.order-success p { color: var(--text); margin: 14px 0 30px; line-height: 1.8; }
.order-success .btn { margin-top: 6px; }

/* ==========================================================
   TOAST
   ========================================================== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 80px);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: #fff;
  padding: 14px 26px;
  border-radius: 40px;
  font-size: 0.86rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  max-width: 92vw;
}
.toast i { color: var(--accent); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }

/* Staggered reveal for grids */
.product-grid .pcard:nth-child(2), .categories-grid .cat-card:nth-child(2),
.features-grid .feature:nth-child(2), .why-grid .why-item:nth-child(2),
.reviews-grid .review-card:nth-child(2) { transition-delay: 0.05s; }
.product-grid .pcard:nth-child(3), .categories-grid .cat-card:nth-child(3),
.features-grid .feature:nth-child(3), .why-grid .why-item:nth-child(3),
.reviews-grid .review-card:nth-child(3) { transition-delay: 0.1s; }
.product-grid .pcard:nth-child(4), .categories-grid .cat-card:nth-child(4),
.features-grid .feature:nth-child(4), .why-grid .why-item:nth-child(4),
.reviews-grid .review-card:nth-child(4) { transition-delay: 0.15s; }
.product-grid .pcard:nth-child(5), .why-grid .why-item:nth-child(5) { transition-delay: 0.2s; }
.product-grid .pcard:nth-child(6), .why-grid .why-item:nth-child(6) { transition-delay: 0.25s; }
.product-grid .pcard:nth-child(7) { transition-delay: 0.3s; }
.product-grid .pcard:nth-child(8) { transition-delay: 0.35s; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .promo-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { border-bottom: 1px solid var(--line); }
  .feature:nth-child(even) { border-right: none; }
  .feature:nth-child(3), .feature:nth-child(4) { border-bottom: none; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 84px; }

  .header-row { grid-template-columns: auto 1fr auto; height: 66px; }
  .site-header.scrolled .header-row { height: 60px; }

  .menu-toggle { display: flex; justify-self: start; }
  .header-row .main-nav { display: none; }

  .main-nav {
    position: fixed;
    top: 0; left: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    z-index: 1099;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(-102%);
    transition: transform 0.38s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  body.menu-open .main-nav { transform: translateX(0); }

  .nav-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .brand--nav .brand-name { font-size: 1.1rem; }
  .nav-close {
    display: flex;
    width: 42px; height: 42px;
    align-items: center; justify-content: center;
    font-size: 1.15rem;
    color: var(--ink);
    border-radius: 50%;
  }
  .nav-close:hover { background: var(--bg-soft); }

  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; margin-top: 18px; flex: 1; overflow-y: auto; }
  .nav-link { padding: 15px 4px; font-size: 0.9rem; border-bottom: 1px solid var(--line-soft); }
  .nav-link::after { display: none; }

  .nav-foot { display: block; padding-top: 20px; }
  .nav-foot > span { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--text-soft); }

  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 72px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-scroll { display: none; }
  .hero-orb--a { left: 0; }
  .hero-orb--b { right: 0; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-methods { grid-template-columns: 1fr; }

  .cta-ph { aspect-ratio: 4 / 3; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }

  .header-actions { gap: 0; }
  .icon-btn { width: 38px; height: 38px; }
  #accountBtn { display: none; }
  .brand-name { font-size: 1.1rem; letter-spacing: 0.22em; }

  .sec-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .sec-link { align-self: flex-start; }

  .features-grid { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: none; }

  .product-grid { grid-template-columns: 1fr; gap: 22px; }
  .pcard-actions { grid-template-columns: 1fr 1fr; }

  .categories-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-strip { justify-content: center; text-align: center; }
  .footer-strip-item { flex-wrap: wrap; justify-content: center; }

  .service-grid { grid-template-columns: 1fr; }
  .product-reviews { grid-template-columns: 1fr; }
  .pd-tabs { border-top: 1px solid var(--line); }
  .pd-tab { padding: 16px 18px; }

  .field-row { grid-template-columns: 1fr; }
  .pay-methods { grid-template-columns: 1fr; }

  .cart-item {
    grid-template-columns: 78px 1fr auto;
    grid-template-areas:
      "thumb info remove"
      "thumb qty  total";
    gap: 14px 18px;
  }
  .ci-thumb { grid-area: thumb; }
  .ci-info { grid-area: info; }
  .ci-remove { grid-area: remove; justify-self: end; }
  .ci-steps { grid-area: qty; }
  .ci-total { grid-area: total; justify-self: end; }

  .pd-actions { flex-direction: column; }
  .pd-actions .btn { min-width: 0; width: 100%; }
  .wish-add { width: 100%; }
  .pd-trust { grid-template-columns: 1fr; }
  .hero-ring { width: 90%; height: 90%; top: -4%; right: -6%; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}