@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
  /* ── Neutral Palette ── */
  --bg:            #FFFFFF;
  --surface:       #FAFAFA;
  --surface-alt:   #F4F4F5;
  --text:          #09090B;
  --text-2:        #52525B;
  --text-3:        #71717A;
  --text-faint:    #A1A1AA;
  --border:        #E4E4E7;
  --border-strong: #D4D4D8;
  --success:       #16a34a;
  --success-bg:    #f0fdf4;

  /* ── Accent: Ink & Slate monochrome ── */
  --accent:        #16181D;
  --accent-hover:  #000000;
  --accent-pale:   #F5F5F6;
  --accent-border: #E4E4E7;

  /* ── Typography ── */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);

  /* ── Layout ── */
  --max-w:  1100px;
  --nav-h:  60px;
  --radius: 10px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Backward-compat: keeps all inline var() references working ── */
  --navy:          var(--text);
  --navy-mid:      #27272A;
  --copper:        var(--text-2);
  --copper-hover:  var(--text);
  --copper-pale:   var(--surface-alt);
  --copper-border: var(--border);
  --muted:         var(--text-2);
  --font-display:  var(--font);
  --font-body:     var(--font);
  --font-serif:    var(--font);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

a { color: var(--text); text-decoration: none; transition: color 0.15s var(--ease); }
a:hover { color: var(--text-2); }

p { color: var(--text-2); line-height: 1.72; }

img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--text-2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: var(--surface-alt); }
.nav-links a.active { color: var(--accent); }

.nav-cart {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: var(--text) !important;
  color: white !important;
  padding: 7px 16px !important;
  border-radius: var(--radius) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  transition: opacity 0.15s !important;
}
.nav-cart:hover { opacity: 0.85 !important; color: white !important; background: var(--text) !important; }

.cart-badge {
  background: white;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  line-height: 1;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 12px; }
  .nav-cart { width: 100% !important; justify-content: center !important; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.15s var(--ease);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1;
}

.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); color: white; }

/* btn-copper maps to the accent in the refreshed design */
.btn-copper { background: var(--accent); color: white; }
.btn-copper:hover { background: var(--accent-hover); color: white; }
.btn-copper::after { display: none; }

/* Secondary buttons: soft-tinted fill (no bare outline chrome) */
.btn-outline {
  background: var(--accent-pale);
  color: var(--accent-hover);
  border: none;
}
.btn-outline:hover { background: var(--accent-border); color: var(--accent-hover); }

.btn-ghost { background: transparent; color: var(--text-2); }
.btn-ghost:hover { color: var(--text); background: var(--surface-alt); }

/* Text + arrow link — replaces flat outline buttons for inline secondary CTAs */
.btn-link {
  background: transparent;
  color: var(--accent);
  border: none;
  padding: 10px 4px;
  font-weight: 600;
}
.btn-link:hover { background: transparent; color: var(--accent-hover); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.btn-link .btn-arrow { background: transparent; width: auto; height: auto; margin-left: 2px; color: currentColor; }
.btn-link:hover .btn-arrow { transform: translateX(3px); }
.btn-link.btn-lg { padding: 12px 4px; }
.btn-link.btn-sm { padding: 6px 4px; }

/* Solid button for use on coloured panels (e.g. teal help panel) */
.btn-on-accent { background: #fff; color: var(--accent); }
.btn-on-accent:hover { background: rgba(255,255,255,0.9); color: var(--accent-hover); }

/* Keep a text link from stretching inside flex product-actions rows */
.product-actions .btn-link { flex: 0 0 auto; }

/* Filter toggle chips (shop) — soft pill, not an outline button */
.filter-chip {
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: none;
  background: var(--surface-alt);
  color: var(--text-2);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.filter-chip:hover { background: var(--border); color: var(--text); }
.filter-chip.active { background: var(--accent); color: #fff; }

.btn-sm  { padding: 7px 14px; font-size: 13px; }
.btn-lg  { padding: 13px 28px; font-size: 15px; }
.btn-full { width: 100%; }

/* ── CARDS ── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-strong); }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.product-card { display: flex; flex-direction: column; position: relative; cursor: pointer; }

/* Product card image */
.product-card-header {
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}

.product-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-header img {
  transform: scale(1.04);
}

/* Product detail page image */
.product-image-wrap {
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.product-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-2);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.product-card:hover .product-tag { background: var(--border); color: var(--text); border-color: var(--border-strong); }

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}

.product-subtitle {
  font-size: 12.5px;
  color: var(--text-3);
  margin-bottom: 14px;
}

.product-size-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  width: fit-content;
}

.product-desc {
  font-size: 13.5px;
  color: var(--text-2);
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.65;
  font-family: var(--font);
  font-style: normal;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.product-price sup { font-size: 0.6em; font-weight: 700; vertical-align: super; letter-spacing: 0; }
.product-price small { font-size: 0.45em; font-weight: 400; color: var(--text-3); margin-left: 4px; letter-spacing: 0; }

.product-actions { display: flex; gap: 8px; }
.product-actions .btn { flex: 1; }

/* ── HERO ── */
.hero {
  background: var(--surface);
  color: var(--text);
  padding: 96px 0 108px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Framer/Linear style grid-line background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero::after { display: none; }

/* Clean-spotlight hero — no grid, no scattered decoration */
.hero--clean { background: var(--bg); }
.hero--clean::before { display: none; }

/* Canvas particle layer */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Floating radial glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: heroGlowDrift 14s ease-in-out infinite;
}
.hero-glow-a {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(22,24,29,0.05) 0%, transparent 68%);
  top: -180px; left: -120px;
}
.hero-glow-b {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22,24,29,0.04) 0%, transparent 68%);
  top: 10px; right: -80px;
  animation-delay: -6s;
  animation-duration: 11s;
}
@keyframes heroGlowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(36px, 24px) scale(1.06); }
  70%       { transform: translate(-20px, 32px) scale(0.96); }
}

/* Word-by-word headline reveal */
@keyframes wordReveal {
  from { opacity: 0; transform: translateY(22px); filter: blur(5px); }
  to   { opacity: 1; transform: translateY(0);   filter: blur(0); }
}
.hero-word {
  display: inline-block;
  animation: wordReveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--d, 0) * 85ms);
}

/* Other hero elements entrance */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim {
  animation: heroSlideUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--d, 0) * 85ms);
}

.hero-content { position: relative; z-index: 1; max-width: 680px; }

/* Minimal eyebrow label — understated, no pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: none;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero h1 em { color: var(--text-2); font-style: normal; }

.hero > .container > .hero-content > p {
  color: var(--text-2);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.72;
}

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 20px 36px;
  border-right: 1px solid var(--border);
  transition: background 0.15s;
  cursor: default;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--surface-alt); }

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { color: var(--text-2); }

@media (max-width: 680px) {
  .trust-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; padding: 16px 24px; }
  .trust-item:last-child { border-bottom: none; }
}

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 48px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 12px 3px 7px;
  margin-bottom: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-2);
  flex-shrink: 0;
}

.section-header h2 { margin-bottom: 10px; }
.section-header p { max-width: 540px; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}

.about-inner h2 { margin-bottom: 12px; }
.about-inner p { max-width: 540px; }

@media (max-width: 680px) {
  .about-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ── FOOTER ── */
.footer {
  background: #09090B;
  color: white;
  padding: 64px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-logo { font-weight: 800; font-size: 1.05rem; color: white; letter-spacing: -0.02em; }
.footer-logo span { color: rgba(255,255,255,0.4); }

.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.4); max-width: 270px; margin-top: 14px; line-height: 1.7; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.52); transition: color 0.15s; }
.footer-col a:hover { color: white; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,0.26); line-height: 1.6; }
.disclaimer { max-width: 560px; font-size: 11px !important; }

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

label { font-size: 13px; font-weight: 600; color: var(--text); }

input[type="text"],
input[type="email"],
input[type="number"],
select, textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
textarea { resize: vertical; min-height: 120px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A1A1AA' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}

/* ── NOTICE BOXES ── */
.notice {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 13.5px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}

.notice-copper { background: var(--surface-alt); border: 1px solid var(--border); color: var(--text-2); }
.notice-blue   { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.notice-green  { background: var(--success-bg); border: 1px solid #86efac; color: #15803d; }
.notice-icon   { flex-shrink: 0; margin-top: 1px; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 44px 0 36px;
}
.page-header h1 { margin-bottom: 6px; }
/* Product-page banner title — visually an h1 but demoted so the product's
   main title is the single semantic <h1> on the page */
.page-header .ph-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 6px;
}
.page-header p { font-size: 1rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-3);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb-sep { color: var(--border-strong); user-select: none; }

/* ── TOAST ── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: var(--text);
  color: white;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.25s var(--ease) both, toastOut 0.25s var(--ease) 2.6s forwards;
  max-width: 300px;
}

.toast-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }

@keyframes toastIn { from { opacity: 0; transform: translateX(12px) scale(0.95); } to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes toastOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.95) translateX(8px); } }

/* ── CART PAGE ── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: flex-start;
}

.cart-table {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cart-table-header {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px;
  padding: 12px 24px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }

.cart-item-product { display: flex; align-items: center; gap: 14px; min-width: 0; }
.cart-item-thumb {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: 8px; border: 1px solid var(--border);
  background: var(--surface-alt); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cart-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.cart-thumb-ph { font-weight: 700; color: var(--text-3); font-size: 1.15rem; }
.cart-item-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 3px; letter-spacing: -0.01em; }
.cart-item-info span { font-size: 12.5px; color: var(--text-3); }

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 36px;
}

.qty-btn {
  background: none;
  border: none;
  padding: 0 11px;
  cursor: pointer;
  font-size: 15px;
  color: var(--text);
  transition: background 0.12s;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
}
.qty-btn:hover { background: var(--surface-alt); }

.qty-value {
  padding: 0 10px;
  font-size: 14px;
  font-weight: 600;
  min-width: 34px;
  text-align: center;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 36px;
  color: var(--text);
}

.cart-item-price { font-weight: 700; font-size: 1rem; color: var(--text); text-align: right; letter-spacing: -0.02em; }

.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  padding: 4px;
  font-size: 18px;
  line-height: 1;
  transition: color 0.12s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.cart-remove-btn:hover { color: #ef4444; }

.order-summary-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.order-summary-box h3 { font-size: 0.95rem; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); letter-spacing: -0.01em; }

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-2);
  padding: 8px 0;
}

.summary-divider { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0;
}
.summary-total-label { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.summary-total-amt   { font-weight: 800; font-size: 1.45rem; color: var(--text); letter-spacing: -0.03em; }

.cart-empty { text-align: center; padding: 72px 24px; }
.cart-empty svg { color: var(--border); margin: 0 auto 16px; }
.cart-empty h3 { margin-bottom: 6px; }

@media (max-width: 860px) { .cart-layout { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .cart-table-header { display: none; }
  .cart-item { grid-template-columns: 1fr auto; grid-template-rows: auto auto; }
  .cart-item-price { grid-column: 2; grid-row: 1; }
  .qty-control { grid-column: 1; grid-row: 2; }
  .cart-remove-btn { grid-column: 2; grid-row: 2; }
}

/* ── CHECKOUT ── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: flex-start;
}

.checkout-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
}

.checkout-panel h3 { font-size: 0.95rem; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); letter-spacing: -0.01em; }

.etransfer-box {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.etransfer-box-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.etransfer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.etransfer-row:last-child { border-bottom: none; }
.etransfer-row-label { color: var(--text-2); font-weight: 500; font-size: 13px; }
.etransfer-row-value { color: var(--text); font-weight: 700; }

.confirmation-block {
  text-align: center;
  padding: 56px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.confirmation-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--success-bg); border: 2px solid #86efac; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.confirmation-block h2 { margin-bottom: 10px; }
.confirmation-block p { max-width: 420px; margin: 0 auto 24px; }

@media (max-width: 860px) { .checkout-layout { grid-template-columns: 1fr; } }

/* ── PRODUCT DETAIL ── */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-detail-image-col {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.product-image-note {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.5;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  margin-top: 14px;
}

.product-detail-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.product-detail-tag { margin-bottom: 14px; }
.product-detail-h1 { margin-bottom: 4px; letter-spacing: -0.03em; }
.product-detail-subtitle { font-size: 1rem; color: var(--text-2); margin-bottom: 20px; }

.product-detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.product-detail-size { font-size: 13px; color: var(--text-3); margin-bottom: 24px; }

.detail-block { margin-bottom: 28px; }
.detail-block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-block-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Reset old serif overrides */
.product-desc,
.detail-block p,
.product-detail-layout > div > p { font-family: var(--font); font-size: 14.5px; font-style: normal; }

.benefit-list { display: flex; flex-direction: column; gap: 10px; }
.benefit-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}
.benefit-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-strong);
  flex-shrink: 0;
  margin-top: 6px;
}

.info-box {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
}

.purchase-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }

.purchase-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.purchase-box-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.purchase-box-size { font-size: 13px; color: var(--text-3); margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }

.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.qty-row > label { font-size: 13px; color: var(--text-2); font-weight: 400; }

.purchase-disclaimer { font-size: 11.5px; color: var(--text-3); margin-top: 14px; line-height: 1.6; text-align: center; }

@media (max-width: 860px) {
  .product-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .purchase-sidebar { position: static; }
  .product-detail-image-col { position: static; }
}

/* ── CALCULATOR ── */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.calc-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.calc-panel h3 { margin-bottom: 4px; letter-spacing: -0.02em; }
.calc-panel > p { font-size: 13px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }

.calc-result {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-top: 18px;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.calc-result-row:last-child { border-bottom: none; }
.calc-result-label { color: var(--text-2); }
.calc-result-value { font-weight: 700; color: var(--text); font-size: 1rem; }

.calc-result-highlight .calc-result-value { color: var(--text); font-size: 1.2rem; font-weight: 800; }

@media (max-width: 680px) { .calc-grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-list { max-width: 740px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  gap: 24px;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.12s;
  letter-spacing: -0.01em;
}
.faq-trigger:hover { color: var(--text-2); }

.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.faq-chevron svg { transition: transform 0.25s var(--ease); color: var(--text-3); }
.faq-trigger:hover .faq-chevron { background: var(--border); border-color: var(--border-strong); }

.faq-item.open .faq-chevron { background: var(--text); border-color: var(--text); }
.faq-item.open .faq-chevron svg { transform: rotate(180deg); color: white; }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s var(--ease);
}
.faq-body p { padding-bottom: 22px; font-size: 14px; line-height: 1.75; color: var(--text-2); }
.faq-item.open .faq-body { max-height: 400px; }

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: flex-start;
}

.contact-sidebar {
  background: #09090B;
  border-radius: var(--radius);
  padding: 32px;
  color: white;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.contact-sidebar h3 { color: white; margin-bottom: 8px; }
.contact-sidebar > p { color: rgba(255,255,255,0.52); font-size: 14px; margin-bottom: 28px; }

.contact-detail-item { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-detail-item:last-child { border-bottom: none; }

.contact-detail-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 13.5px; color: rgba(255,255,255,0.72); }
.contact-detail-value a { color: rgba(255,255,255,0.72); transition: color 0.15s; }
.contact-detail-value a:hover { color: white; }

.contact-form-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-form-panel h3 { margin-bottom: 24px; }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
}

/* ── UTILITIES ── */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.text-center { text-align: center; }
.text-muted { color: var(--text-2) !important; }

.mt-8  { margin-top: 8px; }  .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.48s var(--ease) both; }
.delay-1 { animation-delay: 0.06s; }
.delay-2 { animation-delay: 0.12s; }
.delay-3 { animation-delay: 0.18s; }
.delay-4 { animation-delay: 0.24s; }
.delay-5 { animation-delay: 0.30s; }

/* ── CART BADGE POP ── */
@keyframes badgePop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.cart-badge.popping { animation: badgePop 0.35s var(--ease); }

/* ── FOCUS ── */
*:focus { outline: none; }
*:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; border-radius: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 72px; }
  .hero-actions { flex-direction: column; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.35rem; }
}

/* ── PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════════════════════════════════
   PACK SELECTOR — shop cards & detail pages
══════════════════════════════════════════ */

/* Pill toggles used on shop cards */
.pack-pills {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.pack-pill {
  flex: 1;
  padding: 7px 6px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  background: var(--bg);
  color: var(--text-2);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  user-select: none;
  position: relative;
  z-index: 2;
  line-height: 1.35;
}

.pack-pill:hover { border-color: var(--border-strong); color: var(--text); }

.pack-pill.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.pack-pill .save-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 3px;
}

.pack-pill.active .save-tag {
  color: #bbf7d0;
  background: rgba(255,255,255,0.15);
}

/* Radio-style selectors on product detail pages */
.pack-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.pack-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}

.pack-option:hover { border-color: var(--border-strong); }

.pack-option.selected {
  border-color: var(--text);
  background: var(--surface-alt);
}

.pack-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s;
}

.pack-option.selected .pack-radio {
  border-color: var(--text);
}

.pack-option.selected .pack-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--text);
}

.pack-option-info { flex: 1; min-width: 0; }

.pack-option-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}

.pack-save-badge {
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 100px;
  padding: 1px 8px;
}

.pack-option-price {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

.pack-option-price strong {
  color: var(--text-2);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   BUNDLES PAGE
══════════════════════════════════════════ */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 20px;
}

.bundle-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.bundle-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.bundle-card-highlight {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}

.bundle-popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

.bundle-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.bundle-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 4px;
}

.bundle-tagline {
  font-size: 12.5px;
  color: var(--text-3);
}

.bundle-savings-badge {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.bundle-description {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.bundle-includes-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}

.bundle-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.bundle-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bundle-item-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  flex-shrink: 0;
}

.bundle-item-img-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.bundle-item-info { flex: 1; min-width: 0; }
.bundle-item-name { font-size: 13px; font-weight: 600; color: var(--text); }
.bundle-item-size { font-size: 11.5px; color: var(--text-3); }
.bundle-item-qty { font-size: 12px; font-weight: 700; color: var(--text-2); flex-shrink: 0; }
.bundle-item-price { font-size: 13px; font-weight: 600; color: var(--text); flex-shrink: 0; min-width: 44px; text-align: right; }

.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.bundle-price-was {
  font-size: 14px;
  color: var(--text-3);
  text-decoration: line-through;
}

.bundle-price-now {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.bundle-price-currency {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-3);
}

.bundle-price-save {
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 100px;
  padding: 2px 9px;
}

/* ══════════════════════════════════════════
   INTERAC E-TRANSFER BRANDING
══════════════════════════════════════════ */
.interac-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFD100;
  border-radius: 6px;
  padding: 5px 12px 5px 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #231F20;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.payment-method-box {
  background: var(--surface-alt);
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 0;
}

.payment-method-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.payment-method-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.payment-method-sub {
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: 2px;
}

.payment-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.payment-detail-row:last-child { border-bottom: none; padding-bottom: 0; }

.payment-detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.payment-detail-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  word-break: break-all;
}

/* ══════════════════════════════════════════
   CHECKOUT REDESIGN (Shopify-style)
══════════════════════════════════════════ */
.checkout-shopify-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: flex-start;
}

.checkout-form-col { min-width: 0; }

.checkout-section {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  margin-bottom: 16px;
}

.checkout-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.checkout-summary-col {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.checkout-order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.checkout-summary-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

.checkout-summary-items {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-summary-thumb-wrap {
  position: relative;
  flex-shrink: 0;
}

.checkout-summary-thumb {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  display: block;
}

.checkout-summary-thumb-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.checkout-summary-qty-bubble {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: #52525B;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid white;
}

.checkout-summary-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  min-width: 0;
}

.checkout-summary-item-size {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
}

.checkout-summary-item-price {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}

.checkout-totals {
  padding: 16px 22px;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 13.5px;
}

.checkout-total-row.shipping { color: var(--text-2); }
.checkout-total-row.discount { color: #16a34a; }

.checkout-total-row.grand-total {
  padding-top: 14px;
  margin-top: 8px;
  border-top: 1.5px solid var(--border-strong);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.checkout-trust-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 22px;
  border-top: 1px solid var(--border);
}

.checkout-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
}

@media (max-width: 900px) {
  .checkout-shopify-layout {
    grid-template-columns: 1fr;
  }
  .checkout-summary-col { position: static; }
  .bundle-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CART TOTALS (with shipping + discount)
══════════════════════════════════════════ */
.cart-totals-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
}
.cart-total-row:last-child { border-bottom: none; }
.cart-total-row.subtotal { color: var(--text-2); }
.cart-total-row.discount-row { color: #16a34a; }
.cart-total-row.shipping-row { color: var(--text-2); }
.cart-total-row.grand { font-size: 16px; font-weight: 800; color: var(--text); padding-top: 12px; margin-top: 4px; }

/* ══════════════════════════════════════════
   SOLD OUT + NOTIFY ME
══════════════════════════════════════════ */

/* Shop card sold-out state */
.product-card-image-wrap { position: relative; }
.product-card-sold-out-ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.product-card-sold-out .product-card-header { opacity: 0.55; filter: grayscale(30%); }
.product-card-sold-out .product-price { color: var(--text-3); }

/* Notify me modal */
.notify-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.notify-modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  animation: notifyModalIn 0.22s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes notifyModalIn {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.notify-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1;
  transition: background 0.15s;
}
.notify-modal-close:hover { background: var(--border); }
.notify-modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.notify-modal-product {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.notify-modal-desc {
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 20px;
  line-height: 1.55;
}
.notify-input-row {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.notify-email-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.notify-email-input:focus { border-color: var(--text); }
.notify-email-input::placeholder { color: var(--text-3); }
.notify-success-msg {
  display: none;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #15803d;
  margin-top: 8px;
}

/* Product detail page sold-out block */
.sold-out-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.sold-out-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sold-out-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.sold-out-label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}
.sold-out-block p {
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.55;
}
.notify-inline-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.notify-inline-input {
  flex: 1;
  min-width: 200px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.notify-inline-input:focus { border-color: var(--text); }
.notify-inline-input::placeholder { color: var(--text-3); }
.notify-inline-success {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #15803d;
  padding: 12px 0 4px;
}
.sold-out-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.sold-out-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-3);
}
.sold-out-price-note {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}

@media (max-width: 560px) {
  .notify-modal-box { padding: 24px 20px; }
  .notify-inline-form { flex-direction: column; }
  .notify-inline-input { min-width: unset; }
}

/* ════════════════════════════════════════════
   REFRESH 2026 — placeholders, FAQ layout,
   footer legal links, homepage sections
   ════════════════════════════════════════════ */

/* ── Product image placeholder (cards) ── */
.product-card-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  position: relative;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
}

/* ── Product image placeholder (detail pages) ── */
.product-image-placeholder {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-3);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.product-image-placeholder span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── FAQ two-column layout (mobile-safe) ── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Footer legal links ── */
.footer-bottom p a {
  color: rgba(255,255,255,0.45);
  transition: color 0.15s var(--ease);
}
.footer-bottom p a:hover { color: #fff; }

/* ── Homepage: How ordering works ── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.how-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background: var(--accent-pale);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}
.how-step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.how-step p { font-size: 13.5px; line-height: 1.6; margin: 0; }
@media (max-width: 780px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ── Homepage: lab results teaser ── */
.lab-teaser {
  background: var(--accent-pale);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.lab-teaser h3 { font-size: 1.2rem; margin-bottom: 6px; }
.lab-teaser p { font-size: 14px; margin: 0; max-width: 52ch; }

/* ── Lab results table ── */
.coa-table { width: 100%; border-collapse: collapse; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; font-size: 14px; }
.coa-table th { padding: 12px 16px; text-align: left; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 700; background: var(--surface); border-bottom: 2px solid var(--border); }
.coa-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.coa-table td:first-child { font-weight: 600; color: var(--text); }
.coa-pending {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
}

/* ── Legal pages ── */
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 1.25rem; margin: 36px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 14.5px; line-height: 1.75; color: var(--text-2); }
.legal-content ul { list-style: disc; padding-left: 22px; margin: 10px 0; }
.legal-content li { margin-bottom: 6px; }

/* ── Homepage bundle teaser (2-up, collapses on mobile) ── */
.bundle-teaser-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 780px) {
  .bundle-teaser-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REFERENCE-LAYOUT COMPONENTS  (light palette — composition matches FloxAmino)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Decorative accent — neutralized for the Ink & Slate monochrome theme.
     Used for marks/dots/dividers only. */
  --gold:        #A1A1AA;
  --gold-soft:   rgba(22,24,29,0.05);
  --stage:       radial-gradient(120% 95% at 50% 12%, #ffffff 0%, var(--surface) 55%, var(--surface-alt) 100%);
}

/* ── Pill button variant + circular arrow ── */
.btn-pill { border-radius: 100px; }
.btn-arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 2px; flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(2px); }
.btn-outline .btn-arrow { background: var(--surface-alt); color: var(--text); }

/* ── Nav account/cart icon buttons (reference-style top-right cluster) ── */
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-icon-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.nav-icon-btn:hover { background: var(--surface-alt); color: var(--text); border-color: var(--border-strong); }
.nav-icon-btn { position: relative; }
.nav-icon-btn .cart-badge {
  position: absolute; top: -5px; right: -5px;
  background: var(--accent); color: #fff;
  width: 16px; height: 16px; min-width: 16px; font-size: 9px;
}

/* ── SPLIT HERO ── */
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 540px; }
.hero-copy h1 { color: var(--text); margin-bottom: 20px; font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; }
.hero-copy h1 em { color: var(--accent); font-style: normal; }
.hero-copy > p { color: var(--text-2); font-size: 1.06rem; margin-bottom: 34px; max-width: 460px; line-height: 1.72; }

/* Product stage (right column) */
.hero-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 440px;
}
.hero-stage-panel {
  position: relative;
  width: 100%; max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background: var(--stage);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
/* Clean neutral spotlight behind the vial */
.hero-spotlight {
  position: absolute; pointer-events: none; border-radius: 50%;
  width: 82%; height: 78%; top: 8%; left: 9%;
  background: radial-gradient(circle, rgba(22,24,29,0.10) 0%, rgba(22,24,29,0) 68%);
  filter: blur(10px);
}
.hero-vial {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.12));
}
/* Floating "lab record" chip over the stage */
.hero-chip {
  position: absolute; z-index: 3; bottom: -16px; left: -18px;
  display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 9px 15px 9px 9px;
  box-shadow: var(--shadow-lg); max-width: 250px;
}
.hero-chip img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; background: var(--surface-alt); border: 1px solid var(--border); }
.hero-chip-title { font-weight: 700; color: var(--text); font-size: 12.5px; line-height: 1.25; }
.hero-chip a { color: var(--accent); font-weight: 600; font-size: 12px; display: inline-flex; align-items: center; gap: 3px; }
/* Small value badge pinned to the stage */
.hero-badge {
  position: absolute; z-index: 3; top: -13px; right: -8px;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--text); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 8px 15px; border-radius: 100px;
  box-shadow: var(--shadow-md);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: none; }
  .hero-stage { min-height: 0; }
  .hero-stage-panel { max-width: 380px; margin: 0 auto; }
}

/* ── Spotlight vignette on product-card image tiles ── */
.product-card-image-wrap::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 36%, rgba(255,255,255,0) 46%, rgba(0,0,0,0.055) 100%);
}
.product-card-header { background: var(--stage); }

/* ── "Need help?" block (accordion + support panel) ── */
.help-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  align-items: start;
}
.help-panel {
  background: linear-gradient(150deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: 18px;
  padding: 32px;
  color: #fff;
  position: sticky; top: calc(var(--nav-h) + 20px);
}
.help-panel h3 { color: #fff; margin-bottom: 10px; }
.help-panel p { color: rgba(255,255,255,0.82); font-size: 14px; margin-bottom: 22px; }
.help-panel .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.help-panel .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.help-panel-stat { display: flex; gap: 26px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.22); }
.help-panel-stat .n { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.help-panel-stat .l { font-size: 11.5px; color: rgba(255,255,255,0.72); margin-top: 2px; }
@media (max-width: 860px) {
  .help-layout { grid-template-columns: 1fr; gap: 28px; }
  .help-panel { position: static; }
}

/* ── "Welcome" about block + image tiles ── */
.about-statement {
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 700; line-height: 1.22; letter-spacing: -0.02em;
  color: var(--text); max-width: 22ch;
}
.about-statement .lead { color: var(--text-3); }
.about-statement em { font-style: normal; color: var(--accent); }
.about-tiles { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 20px; margin-top: 40px; }
.about-tile { border-radius: 18px; overflow: hidden; position: relative; min-height: 300px; border: 1px solid var(--border); }
.about-tile-media {
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,0.08) 0%, transparent 55%),
    linear-gradient(150deg, #26282F 0%, #0B0C0F 100%);
}
.about-tile-media::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1.4px);
  background-size: 26px 26px; opacity: 0.5;
}
/* Real-vial montage behind the dark "Our Standard" card */
.about-montage {
  position: absolute; inset: 0; z-index: 0;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
}
.about-montage img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.03); opacity: 0.5;
}
.about-tile-media::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(11,12,15,0.55) 0%, rgba(11,12,15,0.9) 78%);
}
.about-tile-caption { position: absolute; left: 26px; right: 26px; bottom: 24px; color: #fff; z-index: 2; }
.about-tile-caption .k { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.about-tile-caption h3 { color: #fff; font-size: 1.35rem; margin-top: 8px; }
.about-tile-cats { background: var(--surface); padding: 30px; display: flex; flex-direction: column; }
.about-tile-cats .k { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.about-tile-cats h3 { margin-bottom: 18px; }
.cat-chips { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.cat-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 12px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg);
  font-size: 13.5px; font-weight: 600; color: var(--text);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.cat-chip:hover { border-color: var(--border-strong); background: var(--surface-alt); color: var(--text); transform: translateX(2px); }
.cat-chip-img {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 8px; object-fit: cover;
  border: 1px solid var(--border); background: var(--surface-alt);
}
.cat-chip-label { flex: 1; min-width: 0; }
.cat-chip svg { color: var(--text-3); flex-shrink: 0; }
.cat-chip:hover svg { color: var(--text); }
@media (max-width: 760px) {
  .about-tiles { grid-template-columns: 1fr; }
}

/* ── Checkout confirmation: e-transfer steps + copy ── */
.pay-steps { max-width: 480px; margin: 26px auto 0; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.pay-step { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
.pay-step-num { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--text); color: #fff; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.pay-step-body { flex: 1; min-width: 0; }
.pay-step-title { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-3); }
.pay-step-val { display: flex; align-items: center; gap: 10px; margin-top: 3px; font-weight: 700; font-size: 15px; color: var(--text); word-break: break-all; }
.pay-step-sub { font-size: 12.5px; color: var(--text-2); margin-top: 3px; }
.copy-btn { flex-shrink: 0; margin-left: auto; font-size: 11px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text); background: var(--surface-alt); border: 1px solid var(--border-strong); border-radius: 7px; padding: 5px 10px; cursor: pointer; transition: background .15s; }
.copy-btn:hover { background: var(--bg); }
.pay-note { font-size: 12.5px; color: var(--text-3); text-align: center; max-width: 460px; margin: 16px auto 0; line-height: 1.6; }
.confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ── Stock badge (live inventory) ── */
.stock-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em;
  padding: 4px 11px; border-radius: 100px;
  background: var(--surface-alt); color: var(--text-2);
  border: 1px solid var(--border);
}
.product-card-body .stock-badge { margin: 2px 0 14px; }
.stock-badge.is-low { color: var(--text); border-color: var(--border-strong); }
.stock-badge.is-low::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--text); }
.stock-badge.is-out { color: #b42318; background: #fef2f2; border-color: #fecaca; }
#detailStockBadge { margin: 12px 0 4px; }

/* ── Product photo strip (marquee) ── */
.product-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 24px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.product-strip-track {
  display: flex; align-items: center; gap: 18px;
  width: max-content;
  animation: stripScroll 45s linear infinite;
}
.product-strip:hover .product-strip-track { animation-play-state: paused; }
.strip-item {
  flex-shrink: 0;
  height: 92px; width: 132px;
  border-radius: 12px; border: 1px solid var(--border);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.strip-item img { max-height: 78%; max-width: 82%; object-fit: contain; }
@keyframes stripScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .product-strip-track { animation: none; } }

/* ── Promo / value banner ── */
.promo-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #0a0a0c 0%, #26282F 100%);
  border-radius: 22px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 36px;
  padding: 42px 46px; color: #fff;
}
.promo-banner::before {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  right: 8%; top: -40%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.promo-copy { position: relative; z-index: 1; }
.promo-copy .k { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.promo-banner h2 { color: #fff; margin: 10px 0 12px; }
.promo-banner p { color: rgba(255,255,255,0.62); max-width: 46ch; margin-bottom: 24px; }
.promo-vial {
  position: relative; z-index: 1;
  width: 150px; height: 180px; border-radius: 18px;
  background: var(--stage); border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.promo-vial img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 720px) {
  .promo-banner { grid-template-columns: 1fr; gap: 26px; padding: 34px 28px; text-align: left; }
  .promo-vial { display: none; }
}

/* ── Centered section header + decorative mark ── */
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center p { margin-left: auto; margin-right: auto; }
.section-header.center .section-eyebrow { justify-content: center; }
.section-mark { display: flex; justify-content: center; margin-bottom: 18px; }
.section-mark svg { width: 34px; height: 34px; color: var(--text-3); }

/* ── Rich footer additions (big logotype + social) ── */
.footer-logo-lg { font-weight: 800; font-size: 1.9rem; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.footer-logo-lg span { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: background 0.15s, color 0.15s;
}
.footer-social a:hover { background: rgba(255,255,255,0.13); color: #fff; }
.footer-op { font-size: 13.5px; color: rgba(255,255,255,0.52); line-height: 1.5; }
.footer-op strong { color: rgba(255,255,255,0.82); font-weight: 600; display: block; margin-bottom: 2px; }
.footer-op-row { margin-bottom: 14px; }

/* ═══════════════════════════════════════════════════════════════════════════
   DECORATIVE ACCENTS  (subtle & premium — CSS/SVG only, no new assets)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Sections that host decorative layers: clip overflow, lift content above */
.section--deco { position: relative; overflow: hidden; }
.section--deco > .container { position: relative; z-index: 1; }

/* Soft drifting colour blobs behind sections */
.deco-blob {
  position: absolute; z-index: 0; pointer-events: none;
  border-radius: 50%;
  filter: blur(28px);
  animation: heroGlowDrift 17s ease-in-out infinite;
}
.deco-blob.teal { background: radial-gradient(circle, rgba(22,24,29,0.05) 0%, transparent 70%); }
.deco-blob.gold { background: radial-gradient(circle, rgba(22,24,29,0.04) 0%, transparent 70%); animation-duration: 21s; animation-delay: -7s; }

/* Floating dots — neutralized for the monochrome theme */
.deco-dot {
  position: absolute; z-index: 0; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-strong); opacity: 0.5;
  animation: floatDot 7.5s ease-in-out infinite;
}
.deco-dot.teal { background: var(--text-3); }
.deco-dot.sm  { width: 6px;  height: 6px;  opacity: 0.42; }
.deco-dot.lg  { width: 14px; height: 14px; }
.deco-dot.ring { background: transparent; border: 2px solid var(--border-strong); opacity: 0.5; }
.deco-dot.d2 { animation-delay: -2.5s; animation-duration: 9s; }
.deco-dot.d3 { animation-delay: -4.5s; animation-duration: 8s; }
.deco-dot.d4 { animation-delay: -1.2s; animation-duration: 10s; }

@keyframes floatDot {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(6px, -14px); }
}

/* Respect users who prefer reduced motion — freeze all decorative/entrance motion */
@media (prefers-reduced-motion: reduce) {
  .deco-blob, .deco-dot, .hero-glow,
  .hero-word, .hero-anim, .fade-up { animation: none !important; }
}
