:root {
  /* text */
  --ink: #f5efe3; /* primary text (warm white) */
  --ink-soft: #d5cdbd; /* secondary text */
  --muted: #9d9384; /* muted text */
  /* gold accents */
  --gold: #d8b45c;
  --gold-deep: #c9a24e;
  /* surfaces (black base) */
  --cream: #0b0b0c; /* page base */
  --cream-2: #17140f; /* elevated surface / tints */
  --line: #2b2620; /* borders on dark */
  --white: #141110; /* card surface */
  /* dark-theme helpers */
  --panel: #100e0b; /* footer / newsletter / bars */
  --on-gold: #1a1206; /* text sitting on gold */
  --radius: 4px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", -apple-system, "Segoe UI", sans-serif;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Dark theme applies only on the home page (identified by the hero banner).
   All other pages keep the storefront's default light background. */
body:has(.hero-banner-root) {
  color: var(--ink);
  background: var(--cream);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* kicker / titles */
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.kicker-gold {
  color: var(--gold);
}

.sec-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.sec-title em {
  font-style: italic;
  color: var(--gold-deep);
}

.sec-intro {
  max-width: 540px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16px;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-sm {
  padding: 12px 20px;
  font-size: 12px;
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--on-gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--on-gold);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ---------------- utility bar ---------------- */
.utility {
  background: var(--panel);
  color: #cfc4b2;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 16px;
}

.utility-side {
  display: flex;
  gap: 10px;
  align-items: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.utility-side a:hover {
  color: #fff;
}

.u-sep {
  opacity: 0.4;
}

.utility-promise {
  flex: 1;
  text-align: center;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------------- header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 12, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 84px;
  transition: 0.3s;
}

.site-header.scrolled .header-inner {
  height: 66px;
}

.brand {
  flex-shrink: 0;
}

.brand-logo {
  height: 58px;
  width: auto;
  transition: 0.3s;
}

.site-header.scrolled .brand-logo {
  height: 46px;
}

.main-nav {
  display: flex;
  gap: 30px;
  margin: 0 auto;
}

.main-nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold-deep);
  transition: 0.25s;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: 0.2s;
}

.icon-btn:hover {
  background: var(--cream-2);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--gold-deep);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger {
  display: none;
}

/* ---------------- hero ---------------- */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 600px;
  padding: 48px 32px;
}

.hero-copy {
  max-width: 520px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-deep);
}

.hero-sub {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-meta li {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-left: 18px;
}

.hero-media {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 6px;
}

.hero-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(18, 16, 12, 0.9);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.hero-tag-name {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero-tag-price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-deep);
}

/* ---------------- hero v2 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â full-bleed model ---------------- */
.hero-v2 {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream-2);
}

.hero-v2 picture {
  display: block;
}

.hero-v2-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-v2-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 9, 0.96) 0%,
    rgba(8, 8, 9, 0.82) 26%,
    rgba(8, 8, 9, 0.4) 46%,
    rgba(8, 8, 9, 0) 64%
  );
}

.hero-v2-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-v2-copy {
  max-width: 500px;
}

/* ---------------- real glow community band ---------------- */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.rg-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.rg-card:hover {
  box-shadow: 0 16px 44px rgba(80, 55, 15, 0.14);
  transform: translateY(-3px);
}

.rg-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-2);
}

.rg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rg-card:hover .rg-img img {
  transform: scale(1.04);
}

.rg-stars {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  background: rgba(18, 16, 12, 0.85);
  padding: 5px 11px;
  border-radius: 20px;
}

.rg-card figcaption {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.rg-card figcaption p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink-soft);
  flex: 1;
}

.rg-name {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.rg-foot {
  text-align: center;
  margin-top: 28px;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ---------------- promise strip ---------------- */
.promise-strip {
  background: var(--panel);
  color: var(--ink);
}

.promise-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 18px 32px;
}

.promise-item {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e7ddcc;
}

.p-ico {
  color: var(--gold);
}

/* ---------------- generic section ---------------- */
.section {
  padding: 84px 0;
}

.section-tint {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}

.steps-sec {
  background: var(--white);
}

.sec-head {
  margin-bottom: 44px;
}

.sec-head-center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.sec-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.sec-link {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  white-space: nowrap;
}

.sec-link:hover {
  color: var(--gold-deep);
}

/* ---------------- categories ---------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}

.cat-tile {
  text-align: center;
  display: block;
}

.cat-frame {
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
}

.cat-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-tile:hover .cat-frame img {
  transform: scale(1.06);
}

.cat-name {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------------- product cards ---------------- */
.prod-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.prod-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: 0.3s;
}

.prod-card:hover {
  box-shadow: 0 14px 40px rgba(80, 55, 15, 0.12);
  transform: translateY(-3px);
  border-color: transparent;
}

.prod-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-2);
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.prod-card:hover .prod-img img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 9px;
  border-radius: 3px;
  z-index: 2;
}

.badge-corner {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 9px;
  border-radius: 3px;
  z-index: 2;
  text-transform: uppercase;
}

.wish {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(18, 16, 12, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink);
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.25s;
}

.prod-card:hover .wish {
  opacity: 1;
  transform: translateY(0);
}

.add {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px;
  border-radius: 3px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.28s;
}

.prod-card:hover .add {
  opacity: 1;
  transform: translateY(0);
}

.prod-meta {
  padding: 16px 16px 18px;
}

.prod-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.prod-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.prod-price {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.prod-price .now {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
}

.prod-price .was {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

/* ---------------- combos ---------------- */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.combo-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
}

.combo-card:hover {
  box-shadow: 0 16px 44px rgba(80, 55, 15, 0.14);
  transform: translateY(-3px);
}

.combo-card-feature {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold) inset;
}

.combo-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--cream-2);
}

.combo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.combo-save {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 3px;
}

.combo-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.combo-count {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.combo-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
}

.combo-items {
  font-size: 13.5px;
  color: var(--muted);
  flex: 1;
}

.combo-card .prod-price {
  margin: 4px 0 14px;
}

.combo-card .btn {
  width: 100%;
}

/* ---------------- GCC ---------------- */
.gcc {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.gcc-banner {
  position: relative;
  flex: 0 0 30%;
  border-radius: 8px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}

.gcc-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gcc-cta {
  position: relative;
  z-index: 1;
  margin: 22px;
  background: rgba(18, 16, 12, 0.9);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 3px;
  transition: 0.25s;
}

.gcc-banner:hover .gcc-cta {
  background: var(--gold);
  color: var(--on-gold);
}

.gcc-products {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.gcc-head {
  margin-bottom: 24px;
}

.gcc-row {
  grid-template-columns: repeat(3, 1fr);
}

/* ---------------- steps ---------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.step {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.step-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.step {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.step-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------------- big banner ---------------- */
.bigbanner {
  background: radial-gradient(
    120% 140% at 80% 20%,
    #241d10 0%,
    var(--cream-2) 45%,
    #0b0b0c 100%
  );
  text-align: center;
}

.bigbanner-inner {
  padding: 96px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
}

.bigbanner-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.bigbanner-title em {
  font-style: italic;
  color: var(--gold-deep);
}

.bigbanner-sub {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 30px;
}

.bigbanner-foot {
  font-size: 11px;
  color: var(--muted);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ---------------- reels ---------------- */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.reel {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  background: var(--cream-2);
}

.reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.reel:hover img {
  transform: scale(1.06);
}

.reel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(26, 20, 10, 0.55) 100%
  );
}

.reel-play {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 16, 12, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink);
  z-index: 2;
  padding-left: 2px;
}

.reel-cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: 13.5px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* ---------------- why choose us ---------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 26px;
  text-align: center;
}

.why-ico {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
}

.why-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------------- certificates ---------------- */
.certs {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  overflow: hidden;
}

.certs-label {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
  font-weight: 700;
}

.certs-row {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: certScroll 25s linear infinite;
}

.certs:hover .certs-row {
  animation-play-state: paused;
}

.cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cert-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--white);
}

.cert-txt {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

@keyframes certScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------------- google reviews ---------------- */
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 42px;
  text-align: center;
}

.g-rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.g-logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.01em;
}

.g-reviews-label {
  font-size: 15px;
  color: var(--muted);
}

.g-score {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.g-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.g-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
}

.g-count {
  font-size: 13px;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink-soft);
}

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.rev-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--serif);
  font-size: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.rev-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card figcaption span {
  display: flex;
  flex-direction: column;
}

.review-card figcaption strong {
  font-size: 14px;
  font-weight: 500;
}

.review-card figcaption small {
  font-size: 11.5px;
  color: var(--muted);
}

/* ---------------- blog ---------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
}

.blog-card:hover {
  box-shadow: 0 14px 40px rgba(80, 55, 15, 0.12);
  transform: translateY(-3px);
}

.blog-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-2);
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-body {
  padding: 24px;
}

.blog-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.blog-body h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
  margin: 10px 0 8px;
}

.blog-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.read-more {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ---------------- story ---------------- */
.story {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 90px 32px;
}

.story-media {
  border-radius: 8px;
  overflow: hidden;
}

.story-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.story-copy {
  max-width: 520px;
}

.story-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 14px 0 22px;
}

.story-copy p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 16px;
}

.story-copy .btn {
  margin-top: 12px;
}

/* ---------------- faq ---------------- */
.faq-wrap {
  max-width: 820px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background: var(--gold-deep);
  transition: 0.25s;
}

.faq-plus::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.faq-plus::after {
  left: 7px;
  top: 0;
  width: 2px;
  height: 16px;
}

.faq-item[open] .faq-plus::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-a {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 680px;
}

/* ---------------- newsletter ---------------- */
.newsletter {
  background: var(--panel);
  color: var(--ink);
  text-align: center;
}

.news-inner {
  padding: 84px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  margin-bottom: 12px;
}

.news-sub {
  color: #cdbfa9;
  max-width: 480px;
  margin-bottom: 30px;
}

.news-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 480px;
}

.news-form input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 18px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
}

.news-form input::placeholder {
  color: #8a7e6e;
}

.news-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.news-form .btn-dark {
  background: var(--gold);
  color: var(--on-gold);
  border-color: var(--gold);
}

.news-form .btn-dark:hover {
  background: var(--gold-deep);
}

/* ---------------- trust strip ---------------- */
.trust {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.trust-ico {
  font-size: 26px;
}

.trust-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.trust-item span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------------- footer ---------------- */
.footer {
  background: var(--panel);
  color: #b7ad9c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 32px 48px;
}

.footer-logo {
  height: 42px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 11px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-base {
  border-top: 1px solid #332e26;
}

.footer-base-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}

.payments {
  letter-spacing: 0.06em;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .prod-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .gcc {
    flex-direction: column;
  }

  .gcc-banner {
    flex: none;
    width: 100%;
    min-height: 300px;
    aspect-ratio: 16/9;
  }

  .gcc-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    gap: 14px;
  }

  .brand {
    margin: 0 auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 32px;
  }

  .hero-media {
    order: -1;
  }

  .hero-img {
    height: 420px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .story-media {
    order: -1;
  }

  .story-media img {
    height: 420px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid,
  .blog-grid,
  .combo-grid,
  .rg-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .hero-v2 {
    display: block;
    min-height: 0;
  }

  .hero-v2-img {
    position: relative;
    height: auto;
  }

  .hero-v2-scrim {
    display: none;
  }

  .hero-v2-inner {
    padding: 30px 0 6px;
  }

  .hero-v2-copy {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .wrap {
    padding: 0 18px;
  }

  .section {
    padding: 56px 0;
  }

  .utility-side {
    display: none;
  }

  .utility-promise {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .prod-row,
  .prod-grid,
  .gcc-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .combo-grid,
  .reviews-grid,
  .blog-grid,
  .why-grid,
  .trust-grid,
  .reels-grid,
  .rg-grid {
    grid-template-columns: 1fr;
  }

  .sec-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .promise-grid {
    gap: 18px 28px;
    padding: 16px 18px;
  }

  .promise-item {
    font-size: 10.5px;
    letter-spacing: 0.08em;
  }

  .hero-title {
    font-size: clamp(40px, 13vw, 60px);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .add {
    opacity: 1;
    transform: none;
    position: static;
    margin-top: 0;
  }

  .prod-img .add {
    display: none;
  }

  .news-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1/-1;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .certs-row {
    gap: 26px;
  }

  .reviews-head {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 430px) {
  .prod-row,
  .prod-grid,
  .gcc-row,
  .cat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.section {
  padding: 5px 0px;
}

body:has(.hero-banner-root) .section {
  background-color: var(--cream);
}

.notice {
  padding: 0px;
}

.swiper-horizontal {
  touch-action: pan-y;
}

body:has(.hero-banner-root) .swiper-horizontal {
  background-color: var(--cream);
}

body:has(.hero-banner-root) .text-zinc-900 {
  display: none;
}

.sh-shoopy-html-page > div {
  width: 100%;
}

.sh-shoopy-html-page > div > div {
  border: none;
  padding-top: 0px;
}

.search-container {
  padding: 0px 10px;
  /*border: 1px solid var(--line);*/
  border-radius: 8px;
}

.search-container .input-container {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  width: 400px !important;
}

#desktop-search-bar {
  color: #fff !important;
}
/* Product cards are dark only on the home page; on all other pages
   (product listing, search, collections) they keep the default light look. */
body:has(.hero-banner-root) .custom-card {
  background: #0b0a0a;
}

/* Product-collection section headings default to dark text (theme), which is
   invisible on the black home page — make them readable there only. */
body:has(.hero-banner-root) .section-heading {
  color: var(--ink);
}

body:has(.hero-banner-root) .shop-all-link {
  color: var(--gold-deep);
}
