/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --aqua: #6DC4F0;
  --aqua-glow: rgba(109, 196, 240, 0.35);
  --aqua-dim: rgba(109, 196, 240, 0.08);
  --olive: #B0D480;
  --olive-glow: rgba(176, 212, 128, 0.3);
  --olive-dim: rgba(176, 212, 128, 0.08);
  --dark-bg: #080808;
  --dark-surface: #0F0F0F;
  --dark-card: #111111;
  --text-primary: #E8E8E8;
  --text-secondary: #A0A0A0;
  --text-muted: #555;
  --font-script: 'Great Vibes', cursive;
  --font-ui: 'Montserrat', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --glass-bg: rgba(14, 14, 14, 0.7);
  --glass-border: rgba(109, 196, 240, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --glow-aqua: 0 0 20px rgba(109,196,240,0.25), 0 0 60px rgba(109,196,240,0.08);
  --glow-olive: 0 0 20px rgba(176,212,128,0.25), 0 0 60px rgba(176,212,128,0.08);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== BODY & GRAIN ===== */
body {
  background: var(--dark-bg);
  color: var(--text-primary);
  font-family: var(--font-ui);
  overflow-x: hidden;
  line-height: 1.6;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.035;
  background: repeating-conic-gradient(#fff 0 .0001%, transparent 0 .0005%) 50%/200px 200px;
  mix-blend-mode: overlay;
}

/* ===== GLASS ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--glass-border);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-weight: 600; line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-label--aqua { color: var(--aqua); }
.section-label--olive { color: var(--olive); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 0 20px rgba(37,211,102,0.2);
}
.btn--whatsapp:hover {
  box-shadow: 0 0 30px rgba(37,211,102,0.4), 0 0 60px rgba(37,211,102,0.15);
  transform: translateY(-2px);
}
.btn--order {
  background: transparent;
  color: var(--aqua);
  border: 1px solid var(--aqua-dim);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.75rem;
  width: 100%;
  justify-content: center;
}
.btn--order:hover {
  background: rgba(109,196,240,0.08);
  border-color: var(--aqua);
  box-shadow: var(--glow-aqua);
}
.btn--order:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 1200px);
  z-index: 1000;
  border-radius: 60px;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition);
}
#nav.nav--scrolled {
  background: rgba(8,8,8,0.9);
  border-color: rgba(109,196,240,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav__logo img, .nav__logo svg { width: 36px; height: 36px; }
.nav__links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: 1rem;
}
.nav__links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav__links a:hover { color: var(--aqua); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--aqua);
  transition: width 0.3s;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { font-size: 0.72rem; padding: 8px 18px; white-space: nowrap; }
.nav__links-signin { display: none; }
.nav__toggle-input { display: none; }
.nav__toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: all 0.3s; }

@media (max-width: 768px) {
  .nav__toggle { display: flex; position: relative; z-index: 1000; }
  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 999;
  }
  .nav__links a { font-size: 1.2rem; }
  .nav__toggle-input:checked ~ .nav__links { opacity: 1; pointer-events: all; }
  .nav__toggle-input:checked ~ .nav__toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle-input:checked ~ .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav__toggle-input:checked ~ .nav__toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav__cta { display: none; }
  .nav__links-signin { margin-top: 1rem; font-size: 1rem; padding: 12px 32px; }
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 2rem;
}
.hero__dotgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(109,196,240,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}
.ambient-dotgrid {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(109,196,240,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.ambient-particles {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}
.ambient-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--aqua-glow), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.75;
  transition: opacity 0.5s;
  z-index: 0;
}
.hero__content { position: relative; z-index: 2; }
.hero__logo {
  width: min(280px, 55vw);
  height: auto;
  margin-bottom: 2rem;
  animation: revealLogo 1.2s ease-out both;
}
.hero__tagline {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--text-secondary);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}
.hero__sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out 0.8s both;
}
.hero__cta {
  margin-top: 2.5rem;
  animation: fadeInUp 1s ease-out 1s both;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite 2s;
}
.hero__scroll svg { width: 24px; height: 24px; opacity: 0.3; }

/* ===== SECTION COMMON ===== */
section { padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 5vw, 6rem); }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== DIVIDER ===== */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.divider__ring {
  width: 40px;
  height: 40px;
  position: relative;
}
.divider__ring circle { animation: ringPulse 4s ease-in-out infinite; }

/* ===== ABOUT ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about__text .code-quote {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--aqua);
  padding: 1rem 1.5rem;
  background: rgba(109,196,240,0.05);
  border-left: 2px solid var(--aqua);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1.5rem;
}
.about__badge {
  text-align: center;
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--dark-surface);
}
.about__badge img, .about__badge svg { width: 120px; height: auto; margin-bottom: 1.5rem; opacity: 0.7; }
.about__badge-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
}
@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== FEATURED BENTO ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 340px);
  gap: 1.2rem;
  transition: opacity 0.5s ease;
}
.bento-grid--swapping { opacity: 0; }
.bento-grid .product-card:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
/* Small featured cards: give image a fixed visible height, hide tagline */
.bento-grid .product-card:not(:first-child) .product-card__image {
  aspect-ratio: auto;
  height: 150px;
}
.bento-grid .product-card:not(:first-child) .product-card__tagline {
  display: none;
}
/* Product description: hidden by default, shown only on the large hero tile
   to fill the vertical space between the price and the action buttons. */
.product-card__desc { display: none; }
.bento-grid .product-card:first-child .product-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0.4rem 0 0.8rem;
}
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-grid .product-card:first-child { grid-column: 1 / -1; grid-row: auto; }
  .bento-grid .product-card:not(:first-child) .product-card__image { aspect-ratio: 4/3; height: auto; }
  .bento-grid .product-card:not(:first-child) .product-card__tagline { display: block; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
}

/* ===== PRODUCTS GRID ===== */
.category-chips {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(109,196,240,0.15);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
}
.chip:hover { border-color: var(--aqua); color: var(--aqua); }
.chip.active {
  background: var(--aqua);
  color: var(--dark-bg);
  border-color: var(--aqua);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  perspective: 1000px;
  cursor: pointer;
}
.product-card__inner {
  background: var(--dark-card);
  border: 1px solid rgba(109,196,240,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  transform-style: preserve-3d;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card__inner:hover {
  border-color: rgba(109,196,240,0.2);
  box-shadow: var(--glow-aqua);
}
.product-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--dark-surface);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.product-card__inner:hover .product-card__image img {
  transform: scale(1.05);
}
.product-card__image--rotating img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease, transform 0.6s;
}
.product-card__image--rotating img.is-visible {
  opacity: 1;
}
.product-card__body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.product-card__badge {
  position: absolute;
  top: -12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--olive);
  color: var(--dark-bg);
  font-weight: 500;
}
.product-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.product-card__tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-style: italic;
}
.product-card__price {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--aqua);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.price-current { color: var(--aqua); }
.price-range-arrow {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  margin: 0 0.1rem;
}
.price-bundle-min {
  color: var(--olive);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.price-bundle-min small {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-left: 0.2rem;
}
.price-original {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
  font-size: 0.85em;
  font-weight: 400;
}
.price-discount {
  font-size: 0.72em;
  font-weight: 600;
  color: var(--olive);
  background: rgba(176, 212, 128, 0.12);
  border: 1px solid rgba(176, 212, 128, 0.3);
  padding: 0.15em 0.5em;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.product-card__variants {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.variant-chip {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(176,212,128,0.2);
  color: var(--olive);
  font-family: var(--font-mono);
}
.product-card__actions { margin-top: auto; }

/* Hero variant card (bento first item) */
.product-card--hero .product-card__image { aspect-ratio: auto; min-height: 250px; }
.product-card--hero .product-card__name { font-size: 1.3rem; }
.product-card--hero .product-card__price { font-size: 1.3rem; }

/* ===== HOW IT WORKS ===== */
.steps {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  margin-top: 3rem;
}
.steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 70px;
  right: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--aqua-dim), var(--olive-dim));
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--aqua-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  background: var(--dark-surface);
  transition: all var(--transition);
}
.step:hover .step__icon {
  border-color: var(--aqua);
  box-shadow: var(--glow-aqua);
}
.step__icon svg { width: 28px; height: 28px; }
.step__number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--olive);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

@media (max-width: 768px) {
  .steps { flex-direction: column; align-items: center; }
  .steps::before { display: none; }
  .step { max-width: 400px; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 2rem auto 0; }
.faq-list details {
  border-bottom: 1px solid rgba(109,196,240,0.06);
  padding: 1.2rem 0;
}
.faq-list summary {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.faq-list summary:hover { color: var(--aqua); }
.faq-list summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--aqua);
  transition: transform 0.3s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details[open] summary { color: var(--aqua); }
.faq-list details p {
  padding: 1rem 0 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-left: 2px solid var(--aqua-dim);
  padding-left: 1rem;
  margin-top: 0.8rem;
}

/* ===== FOOTER ===== */
#footer {
  border-top: 1px solid rgba(109,196,240,0.08);
  background:
    radial-gradient(circle at top left, rgba(109,196,240,0.08), transparent 28%),
    linear-gradient(180deg, rgba(9,14,19,0.96), rgba(7,11,15,1));
  padding: 4rem clamp(1.5rem, 5vw, 6rem) 2rem;
}
.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer__brand {
  padding-right: 1rem;
}
.footer__logo img, .footer__logo svg { width: 100px; height: auto; margin-bottom: 0.8rem; opacity: 0.72; }
.footer__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.85rem;
}
.footer__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: 1.2rem;
}
.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 360px;
}
.footer__meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(109,196,240,0.12);
  color: rgba(255,255,255,0.74);
  font-size: 0.78rem;
  line-height: 1.4;
}
.footer__meta-chip svg {
  flex: 0 0 auto;
  opacity: 0.85;
}
.footer__col {
  display: flex;
  flex-direction: column;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--aqua); }
.footer__pill-link,
.footer__social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  width: 100%;
  max-width: 260px;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, rgba(109,196,240,0.14), rgba(196,175,109,0.1));
  border: 1px solid rgba(109,196,240,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
  text-align: left;
}
.footer__pill-link svg,
.footer__social-link svg {
  flex: 0 0 auto;
  opacity: 0.9;
}
.footer__pill-link:hover,
.footer__social-link:hover {
  color: #fff !important;
  transform: translateY(-2px);
  border-color: rgba(109,196,240,0.34);
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}
.footer__bottom {
  max-width: 1200px;
  margin: 2.25rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(109,196,240,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer__india {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.56);
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand {
    padding-right: 0;
  }
  .footer__pill-link,
  .footer__social-link {
    max-width: none;
  }
}

/* ===== PRODUCT DETAIL MODAL ===== */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.product-modal.open {
  opacity: 1;
  pointer-events: all;
}
.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.product-modal__content {
  position: relative;
  width: min(92vw, 900px);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--dark-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s ease;
}
.product-modal.open .product-modal__content {
  transform: translateY(0) scale(1);
}
.product-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(109,196,240,0.15);
  background: var(--dark-card);
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}
.product-modal__close:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  box-shadow: var(--glow-aqua);
}
.product-modal__gallery {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  background: var(--dark-card);
}
.product-modal__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark-card);
  flex: 1;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product-modal__image::-webkit-scrollbar { display: none; }
.product-modal__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  position: relative;
}
.product-modal__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.product-modal__thumbs {
  display: flex;
  gap: 6px;
  padding: 8px;
  background: var(--dark-bg);
  overflow-x: auto;
}
.product-modal__thumb {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color 0.3s, opacity 0.3s;
  opacity: 0.5;
}
.product-modal__thumb.active {
  border-color: var(--aqua);
  opacity: 1;
}
.product-modal__thumb:hover { opacity: 0.9; }
.product-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-modal__details {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-modal__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--olive);
  color: var(--dark-bg);
  font-weight: 500;
  width: fit-content;
}
.product-modal__name {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--text-primary);
}
.product-modal__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}
.product-modal__price {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--aqua);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.product-modal__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.product-modal__variants-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.product-modal__variants {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-modal__variants .variant-chip {
  font-size: 0.72rem;
  padding: 5px 12px;
}
.product-modal__category {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
}
.product-modal__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.product-modal__actions .btn--order,
.product-modal__actions .btn--buy-now {
  width: 100%;
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.product-modal__actions .btn--order {
  background: transparent;
  color: var(--aqua);
  border: 1px solid var(--aqua-dim);
}
.product-modal__actions .btn--order:hover {
  background: rgba(109,196,240,0.08);
  border-color: var(--aqua);
  box-shadow: var(--glow-aqua);
}
.product-modal__actions .btn--buy-now {
  background: linear-gradient(135deg, var(--aqua), var(--olive));
  color: var(--dark-bg);
  border: none;
}
.product-modal__actions .btn--buy-now:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 46px -10px var(--olive-glow), 0 0 0 2px rgba(255,255,255,0.05);
  filter: brightness(1.08);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--aqua);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  background: var(--aqua-dim);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.back-link:hover {
  background: rgba(109, 196, 240, 0.15);
  border-color: var(--aqua);
}

/* ===== FLOATING BACK-TO-PRODUCTS (product detail) =======================
   Persistent pill, anchored top-left below the nav. Stays visible while
   scrolling so users never have to hunt for the exit.
*/
.back-link--float {
  position: fixed;
  top: 88px;
  left: 24px;
  z-index: 900;
  margin-bottom: 0;
  padding: 0.55rem 1rem 0.55rem 0.7rem;
  background: rgba(8, 8, 8, 0.6);
  border: 1px solid rgba(109, 196, 240, 0.22);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  box-shadow:
    0 6px 20px -8px rgba(0, 0, 0, 0.55),
    0 1px 2px rgba(0, 0, 0, 0.4);
  transition:
    background 280ms ease,
    border-color 280ms ease,
    transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 280ms ease;
}
.back-link--float:hover,
.back-link--float:focus-visible {
  background: rgba(8, 8, 8, 0.8);
  border-color: var(--aqua);
  transform: translateX(-3px);
  box-shadow:
    0 10px 28px -10px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(109, 196, 240, 0.12),
    0 0 14px rgba(109, 196, 240, 0.22);
  outline: none;
}
.back-link--float svg { transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.back-link--float:hover svg,
.back-link--float:focus-visible svg { transform: translateX(-3px); }

.back-link__kbd {
  margin-left: 6px;
  padding: 1px 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(230, 241, 255, 0.5);
  background: rgba(230, 241, 255, 0.06);
  border: 1px solid rgba(230, 241, 255, 0.16);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  height: 16px;
  transition: color 280ms ease, border-color 280ms ease, background 280ms ease;
}
.back-link--float:hover .back-link__kbd,
.back-link--float:focus-visible .back-link__kbd {
  color: var(--aqua);
  border-color: rgba(109, 196, 240, 0.4);
  background: rgba(109, 196, 240, 0.08);
}

@media (max-width: 768px) {
  .back-link--float {
    position: sticky;
    top: 104px;
    left: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 112px 0 0 14px;
    padding: 5px 11px 5px 8px;
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    background: rgba(8, 8, 8, 0.55);
    border-color: rgba(109, 196, 240, 0.22);
    box-shadow: 0 4px 14px -8px rgba(0, 0, 0, 0.55);
    z-index: 90;
  }
  .back-link--float svg { width: 14px; height: 14px; }
  .back-link--float + section[style*="padding-top:8rem"] {
    padding-top: 0.5rem !important;
  }
  .back-link__kbd { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .back-link--float,
  .back-link--float svg,
  .back-link__kbd { transition: none; }
}
@media (max-width: 768px) {
  .product-modal__content {
    grid-template-columns: 1fr;
    max-height: 95vh;
    border-radius: var(--radius-md);
  }
  .product-modal__gallery {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .product-modal__image {
    aspect-ratio: 16/10;
  }
  .product-modal__details {
    padding: 1.5rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes revealLogo {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(37,211,102,0.2); }
  50% { box-shadow: 0 0 30px rgba(37,211,102,0.4), 0 0 60px rgba(37,211,102,0.15); }
}
.btn--whatsapp { animation: pulse 3s ease-in-out infinite; }

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__glow, .hero__particles, .ambient-glow, .ambient-particles { display: none !important; }
  .animate-on-scroll { opacity: 1; transform: none; }
}

/* ===== AUTH PAGES ===== */
.auth-card {
  padding: 2.5rem;
  border-radius: 1rem;
  margin: 2rem auto;
}
.auth-card h1 {
  margin-bottom: 1.5rem;
  text-align: center;
}
.btn--google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  background: #fff;
  color: #333;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn--google:hover {
  background: #f0f0f0;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: rgba(255,255,255,0.5);
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.form-group input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.95rem;
}
.form-group input:focus {
  outline: none;
  border-color: #6DC4F0;
}
.auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.6);
}
.auth-switch a {
  color: #6DC4F0;
}
.auth-errors, .field-errors {
  color: #f87171;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* ===== CART PAGE ===== */
.cart-section {
  padding-top: 8rem;
  padding-bottom: 6rem;
  min-height: 80vh;
}
.cart-header {
  margin-bottom: 2.5rem;
}
.cart-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.cart-title__count {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  background: rgba(109,196,240,0.08);
  border: 1px solid rgba(109,196,240,0.15);
  padding: 4px 12px;
  border-radius: 50px;
  vertical-align: middle;
}

/* Layout */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

/* Items list */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto auto auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cart-item:hover {
  border-color: rgba(109,196,240,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

/* Thumbnail */
.cart-item__thumb {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--dark-surface);
  border: 1px solid rgba(109,196,240,0.08);
}
.cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.cart-item:hover .cart-item__thumb img {
  transform: scale(1.06);
}
.cart-item__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* Info */
.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.cart-item__name {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary);
}
.cart-item__variant {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
  background: var(--aqua-dim);
  border: 1px solid rgba(109,196,240,0.15);
  padding: 2px 10px;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
}
.cart-item__unit-price {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Quantity controls */
.cart-item__quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cart-qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(109,196,240,0.2);
  background: rgba(109,196,240,0.05);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
  flex-shrink: 0;
}
.cart-qty-btn svg,
.cart-remove-btn svg {
  pointer-events: none;
}
.cart-qty-btn:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  background: var(--aqua-dim);
  box-shadow: 0 0 12px rgba(109,196,240,0.2);
}
.cart-qty-value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 1.75rem;
  text-align: center;
  color: var(--text-primary);
}

/* Line total */
.cart-item__total {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--aqua);
  min-width: 72px;
  text-align: right;
  flex-shrink: 0;
}

/* Remove button */
.cart-remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
  flex-shrink: 0;
}
.cart-remove-btn:hover {
  border-color: rgba(248,113,113,0.3);
  color: #f87171;
  background: rgba(248,113,113,0.08);
}

/* Summary card */
.cart-summary {
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-summary__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.cart-summary__value {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}
.cart-summary__value--muted {
  color: var(--text-muted);
  font-size: 0.78rem;
}
.cart-summary__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(109,196,240,0.15), transparent);
  margin: 0.25rem 0;
}
.cart-summary__row--total .cart-summary__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.cart-summary__total-value {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--aqua);
  letter-spacing: -0.02em;
}

/* Checkout button */
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(109,196,240,0.15), rgba(109,196,240,0.08));
  border: 1px solid rgba(109,196,240,0.35);
  border-radius: var(--radius-sm);
  color: var(--aqua);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.5rem;
}
.cart-checkout-btn:hover {
  background: linear-gradient(135deg, rgba(109,196,240,0.25), rgba(109,196,240,0.12));
  border-color: var(--aqua);
  box-shadow: var(--glow-aqua);
  transform: translateY(-1px);
}
.cart-continue-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.25s;
}
.cart-continue-link:hover {
  color: var(--text-secondary);
}

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6rem 1rem;
  gap: 1.25rem;
}
.cart-empty__icon {
  color: rgba(109,196,240,0.25);
  margin-bottom: 0.5rem;
}
.cart-empty__heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.cart-empty__sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 360px;
  line-height: 1.6;
  margin: 0;
}
.cart-checkout-btn--empty {
  width: auto;
  padding: 14px 32px;
  margin-top: 0.5rem;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .cart-item {
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.75rem 1rem;
    padding: 1rem;
  }
  .cart-item__thumb {
    width: 72px;
    height: 72px;
    grid-row: 1 / 3;
  }
  .cart-item__info {
    grid-column: 2 / 4;
  }
  .cart-item__quantity {
    grid-column: 2;
    grid-row: 2;
  }
  .cart-item__total {
    grid-column: 3;
    grid-row: 2;
    text-align: right;
  }
  .cart-remove-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
  }
  .cart-item {
    position: relative;
  }
}

/* ===== CHECKOUT PAGE ===== */
.checkout-section {
  padding-top: 8rem;
  padding-bottom: 6rem;
  min-height: 80vh;
}
.checkout-header {
  margin-bottom: 2.5rem;
}
.checkout-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
}

/* Layout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.checkout-card {
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.checkout-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.checkout-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

/* Address list */
.address-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.address-option {
  display: flex;
  gap: 0;
  cursor: pointer;
}
.address-option input[type="radio"] {
  display: none;
}
.address-card {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.65;
  transition: all 0.25s;
  color: var(--text-secondary);
}
.address-option input[type="radio"]:checked + .address-card {
  border-color: rgba(109,196,240,0.4);
  background: rgba(109,196,240,0.04);
  box-shadow: 0 0 16px rgba(109,196,240,0.08);
}
.address-card__name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.address-card__detail {
  color: var(--text-secondary);
}
.address-card__city {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
}
.address-card__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--aqua);
  margin-top: 0.4rem;
  opacity: 0.8;
}

/* New address toggle */
.new-address-toggle {
  margin-top: 0.5rem;
}
.new-address-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--aqua);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.6rem 0;
  transition: color 0.2s;
  list-style: none;
}
.new-address-summary::-webkit-details-marker { display: none; }
.new-address-summary::marker { content: ''; }
.new-address-summary:hover {
  color: #8fd4f8;
}

/* Address form */
.address-form {
  margin-top: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.form-group--full {
  grid-column: 1 / -1;
}
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.form-optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-size: 0.72rem;
}
.form-group input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input::placeholder {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.form-group input:focus {
  outline: none;
  border-color: rgba(109,196,240,0.5);
  box-shadow: 0 0 0 3px rgba(109,196,240,0.08);
}
.form-group input.input-error {
  border-color: rgba(248,113,113,0.6);
  box-shadow: 0 0 0 3px rgba(248,113,113,0.1);
}
.input-prefix.input-error {
  border-color: rgba(248,113,113,0.6);
  box-shadow: 0 0 0 3px rgba(248,113,113,0.1);
}
.input-prefix {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.input-prefix:focus-within {
  border-color: rgba(109,196,240,0.5);
  box-shadow: 0 0 0 3px rgba(109,196,240,0.08);
}
.input-prefix__label {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.input-prefix input {
  border: none;
  border-radius: 0;
}
.input-prefix input:focus {
  box-shadow: none;
}
.checkout-save-addr-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 1.25rem;
  padding: 12px 20px;
  background: rgba(176,212,128,0.08);
  border: 1px solid rgba(176,212,128,0.25);
  border-radius: var(--radius-sm);
  color: var(--olive);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.checkout-save-addr-btn:hover {
  background: rgba(176,212,128,0.15);
  border-color: var(--olive);
  box-shadow: 0 0 16px rgba(176,212,128,0.12);
}
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group--full {
    grid-column: 1;
  }
}

/* Order summary items */
.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.checkout-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.checkout-item:last-child {
  border-bottom: none;
}
.checkout-item__thumb {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--dark-surface);
  border: 1px solid rgba(109,196,240,0.06);
}
.checkout-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.checkout-item__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.checkout-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.checkout-item__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout-item__variant {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aqua);
  opacity: 0.7;
}
.checkout-item__qty {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.checkout-item__price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  flex-shrink: 0;
}

/* Totals */
.checkout-totals {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.checkout-totals__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.checkout-totals__value {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text-primary);
}
.checkout-totals__row--muted {
  font-size: 0.8rem;
}
.checkout-totals__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  background: rgba(176,212,128,0.08);
  border: 1px solid rgba(176,212,128,0.15);
  padding: 2px 10px;
  border-radius: 50px;
}
.checkout-totals__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(109,196,240,0.15), transparent);
  margin: 0.25rem 0;
}
.checkout-totals__row--total {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.checkout-totals__grand {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--aqua);
  letter-spacing: -0.02em;
}

/* Pay button */
.checkout-pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 1.25rem;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(109,196,240,0.18), rgba(109,196,240,0.08));
  border: 1px solid rgba(109,196,240,0.4);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
}
.checkout-pay-btn:hover {
  background: linear-gradient(135deg, rgba(109,196,240,0.28), rgba(109,196,240,0.12));
  border-color: var(--aqua);
  box-shadow: var(--glow-aqua);
  transform: translateY(-1px);
}
.checkout-pay-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.checkout-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
}

.checkout-guest-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  text-align: center;
}
.checkout-guest-hint a {
  color: var(--aqua);
  text-decoration: underline;
}

/* Spinner */
.checkout-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--aqua);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Toast notifications */
.checkout-toast {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  animation: toastSlide 0.3s ease;
}
@keyframes toastSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.checkout-toast--error {
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.25);
  color: #f87171;
}
.checkout-toast--success {
  background: rgba(176,212,128,0.08);
  border: 1px solid rgba(176,212,128,0.25);
  color: var(--olive);
}

/* Summary card sticky */
.checkout-card--summary {
  position: sticky;
  top: 6rem;
}

/* ===== NAV CART & AUTH ===== */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__cart {
  position: relative;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav__cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #6DC4F0;
  color: #080808;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__user-menu {
  position: relative;
}
.nav__user-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: inherit;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
}
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  min-width: 160px;
  z-index: 100;
}
.nav__user-menu:hover .nav__dropdown,
.nav__user-menu:focus-within .nav__dropdown {
  display: block;
}
.nav__dropdown a,
.nav__dropdown button {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.85rem;
}
.nav__dropdown a:hover,
.nav__dropdown button:hover {
  background: rgba(255,255,255,0.05);
}
.btn--sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}
.btn--added {
  background: #B0D480 !important;
  color: #080808 !important;
}
.btn--error {
  background: #e74c3c !important;
  color: #fff !important;
}
.btn--buy-now {
  background: transparent;
  border: 1px solid var(--aqua);
  color: var(--aqua);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: var(--font-ui);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.btn--buy-now:hover { background: var(--aqua); color: #080808; }
.product-card__actions { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.cart-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(8,8,8,0.95);
  border: 1px solid rgba(109,196,240,0.3);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  z-index: 10000;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
.cart-toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cart-toast__link {
  color: var(--aqua);
  margin-left: 12px;
  text-decoration: underline;
  font-weight: 600;
}

/* ===== ORDERS PAGE ===== */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.order-card {
  display: block;
  padding: 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.order-card:hover {
  border-color: #6DC4F0;
}
.order-card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.order-card__number {
  font-weight: 600;
}
.order-card__status {
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  font-weight: 600;
}
.order-card__status--pending { background: rgba(251,191,36,0.2); color: #fbbf24; }
.order-card__status--paid { background: rgba(109,196,240,0.2); color: #6DC4F0; }
.order-card__status--processing { background: rgba(109,196,240,0.2); color: #6DC4F0; }
.order-card__status--shipped { background: rgba(176,212,128,0.2); color: #B0D480; }
.order-card__status--delivered { background: rgba(176,212,128,0.2); color: #B0D480; }
.order-card__status--cancelled { background: rgba(248,113,113,0.2); color: #f87171; }
.order-card__details {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* ===== VARIANT CHIP SELECTION ===== */
.variant-chip {
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.variant-chip.selected {
  border-color: #6DC4F0;
  background: rgba(109,196,240,0.15);
}

/* ===== VARIANT SWATCH PIGMENT PALETTE =====
   Gallery-catalog aesthetic: color is the hero, label is metadata.
   Used on both product-detail page and home-page cards; parent-scoped
   rules below adapt sizing/density to each context.
*/

/* Shared swatch colour bindings — used in both contexts */
.variant-chip__dot {
  position: relative;
  border-radius: 50%;
  flex-shrink: 0;
  background: #888;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.10),
    inset 0 -1px 2px rgba(0,0,0,0.35);
}
.variant-chip__dot[data-swatch*="matte white"],
.variant-chip__dot[data-swatch="white"] { background: #ededeb; }
.variant-chip__dot[data-swatch*="matte black"],
.variant-chip__dot[data-swatch="black"] { background: #18181a; }
.variant-chip__dot[data-swatch*="black & white"],
.variant-chip__dot[data-swatch*="black and white"],
.variant-chip__dot[data-swatch*="two-tone"] {
  background: linear-gradient(135deg, #ededeb 0%, #ededeb 50%, #18181a 50%, #18181a 100%);
}
.variant-chip__dot[data-swatch*="gold"] { background: linear-gradient(135deg, #e6c281 0%, #b98635 100%); }
.variant-chip__dot[data-swatch*="silver"] { background: linear-gradient(135deg, #e8e8e8 0%, #9a9a9a 100%); }
.variant-chip__dot[data-swatch*="red"] { background: #c54a4a; }
.variant-chip__dot[data-swatch*="blue"] { background: #4a90c4; }
.variant-chip__dot[data-swatch*="navy"] { background: #1e3a5f; }
.variant-chip__dot[data-swatch*="sage"] { background: #9aaf85; }
.variant-chip__dot[data-swatch*="green"] { background: #7fb15e; }
.variant-chip__dot[data-swatch*="olive"] { background: #b0d480; }
.variant-chip__dot[data-swatch*="warm white"],
.variant-chip__dot[data-swatch*="warm"] { background: #f8d99c; }
.variant-chip__dot[data-swatch*="led"] { background: #ffe4b5; }
.variant-chip__dot[data-swatch*="orange"] { background: #e88d43; }
.variant-chip__dot[data-swatch*="terracotta"] { background: #c0714c; }
.variant-chip__dot[data-swatch*="pink"] { background: #e8a6b8; }
.variant-chip__dot[data-swatch*="rose"] { background: #d4859a; }
.variant-chip__dot[data-swatch*="yellow"] { background: #e8d56a; }
.variant-chip__dot[data-swatch*="mustard"] { background: #c9a138; }
.variant-chip__dot[data-swatch*="purple"] { background: #9a6cc4; }
.variant-chip__dot[data-swatch*="lavender"] { background: #b5a6d1; }
.variant-chip__dot[data-swatch*="transparent"] { background: rgba(255,255,255,0.1); border: 1px dashed rgba(255,255,255,0.3); box-shadow: none; }

/* Custom dot — monochrome outlined with "+" glyph */
.variant-chip__dot--custom {
  background: transparent !important;
  box-shadow: none !important;
  border: 1.5px dashed rgba(176,212,128,0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
}
.variant-chip.selected .variant-chip__dot--custom {
  border-color: var(--olive);
  color: var(--dark-bg);
  background: var(--olive) !important;
}

/* ================================================================
   PRODUCT DETAIL — full variant-picker with label + swatches + custom
   ================================================================ */
.variant-picker {
  margin: 1.5rem 0 1.75rem;
  --ring: 2px;
}
.variant-picker__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.variant-picker__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.variant-picker__value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}
.variant-picker__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

/* Swatch-as-hero — no pill background, the color disc is the entire UI */
.variant-picker .variant-chip {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  user-select: none;
  transition: transform 0.18s ease;
}
.variant-picker .variant-chip:focus-visible {
  outline: 2px dashed var(--aqua);
  outline-offset: 6px;
  border-radius: 4px;
}
.variant-picker .variant-chip .variant-chip__dot {
  width: 28px;
  height: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.variant-picker .variant-chip .variant-chip__label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  white-space: nowrap;
  transition: color 0.2s;
}
.variant-picker .variant-chip:hover .variant-chip__dot {
  transform: scale(1.06);
}
.variant-picker .variant-chip:hover .variant-chip__label {
  color: rgba(255,255,255,0.72);
}
.variant-picker .variant-chip.selected .variant-chip__dot {
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.10),
    inset 0 -1px 2px rgba(0,0,0,0.35),
    0 0 0 var(--ring) var(--dark-bg),
    0 0 0 calc(var(--ring) + 2px) var(--aqua),
    0 0 18px 2px rgba(109,196,240,0.35);
}
.variant-picker .variant-chip.selected .variant-chip__label {
  color: #fff;
  font-weight: 500;
}
.variant-picker .variant-chip--custom.selected .variant-chip__dot {
  box-shadow:
    0 0 0 var(--ring) var(--dark-bg),
    0 0 0 calc(var(--ring) + 2px) var(--olive),
    0 0 18px 2px rgba(176,212,128,0.35);
}

/* Custom color input — underline-only, editorial feel */
.variant-picker__custom[hidden] { display: none !important; }
.variant-picker__custom {
  margin-top: 1.1rem;
  padding: 0.25rem 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  animation: pigment-fade 0.22s ease-out;
  max-width: 340px;
}
.variant-picker__custom-prompt {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  opacity: 0.8;
}
.variant-picker__custom input {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(176,212,128,0.35);
  padding: 0.4rem 0 0.55rem;
  font-size: 1.05rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  outline: none;
  caret-color: var(--olive);
  transition: border-color 0.2s, padding-bottom 0.2s;
}
.variant-picker__custom input::placeholder {
  color: rgba(255,255,255,0.25);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.variant-picker__custom input:focus {
  border-bottom-color: var(--aqua);
}
.variant-picker__custom-hint {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}
.variant-picker__custom.variant-picker__custom--error input {
  border-bottom-color: #e88d43;
  animation: pigment-shake 0.35s;
}
/* Back-compat alias — older JS used this class */
.product-detail__custom-input--error input { border-bottom-color: #e88d43; animation: pigment-shake 0.35s; }

@keyframes pigment-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pigment-shake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-4px); }
  75%      { transform: translateX(4px); }
}

/* ================================================================
   PRODUCT DETAIL — Size picker (selectable, rectangular chips)
   ================================================================ */
.size-picker__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.size-chip {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  transition: border-color 0.18s, background 0.18s, color 0.18s, transform 0.18s;
  user-select: none;
}
.size-chip:hover {
  border-color: rgba(109,196,240,0.45);
  color: #fff;
  transform: translateY(-1px);
}
.size-chip:focus-visible {
  outline: 2px dashed var(--aqua);
  outline-offset: 3px;
}
.size-chip.selected {
  border-color: var(--aqua);
  background: rgba(109,196,240,0.08);
  color: #fff;
  box-shadow: 0 0 14px rgba(109,196,240,0.28);
}

/* ================================================================
   PRODUCT DETAIL — Set contents (read-only spec list)
   ================================================================ */
.size-set {
  margin: 1.5rem 0 1.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.size-set__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0.6rem;
}
.size-set__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.size-set__item {
  position: relative;
  padding: 0.35rem 0.8rem 0.35rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  border-left: 2px solid var(--olive);
  background: rgba(176,212,128,0.035);
  border-radius: 0 4px 4px 0;
}

/* ================================================================
   HOME CARD — Set contents (compact read-only)
   ================================================================ */
.product-card__set {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.1rem 0 0.9rem;
}
.product-card__set-label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.product-card__set-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.product-card__set-item {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.75);
  padding-left: 0.55rem;
  border-left: 2px solid rgba(176,212,128,0.55);
  line-height: 1.5;
}

/* ================================================================
   HOME CARD — Size picker (compact row, reuses size-chip)
   ================================================================ */
.product-card__sizes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0.1rem 0 0.9rem;
}
.product-card__sizes-label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-right: 0.15rem;
}
.product-card__sizes .size-chip {
  padding: 0.26rem 0.55rem;
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  border-radius: 14px;
}

/* ================================================================
   HOME CARD — compact pills: dot + label together
   ================================================================ */
.product-card__variants {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.38rem;
  margin-bottom: 0.9rem;
}
.product-card__variants .variant-chip {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.28rem 0.55rem 0.28rem 0.38rem;
  border: 1px solid rgba(176,212,128,0.22);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  white-space: nowrap;
}
.product-card__variants .variant-chip:focus-visible {
  outline: 2px dashed var(--aqua);
  outline-offset: 2px;
}
.product-card__variants .variant-chip:hover {
  border-color: rgba(109,196,240,0.5);
  color: rgba(255,255,255,0.85);
}
.product-card__variants .variant-chip.selected {
  border-color: var(--aqua);
  background: rgba(109,196,240,0.1);
  color: #fff;
}
.product-card__variants .variant-chip .variant-chip__dot {
  width: 11px;
  height: 11px;
  transition: box-shadow 0.2s ease;
}
.product-card__variants .variant-chip.selected .variant-chip__dot {
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.10),
    inset 0 -1px 2px rgba(0,0,0,0.35),
    0 0 0 1.5px rgba(109,196,240,0.4);
}

/* Custom-link chip on cards — dashed, olive accent, plus glyph */
.product-card__variants .variant-chip--custom-link {
  text-decoration: none;
  border-style: dashed;
  border-color: rgba(176,212,128,0.4);
  color: var(--olive);
}
.product-card__variants .variant-chip--custom-link:hover {
  border-color: var(--olive);
  background: rgba(176,212,128,0.06);
  color: #fff;
}
.product-card__variants .variant-chip--custom-link .variant-chip__dot--custom {
  width: 11px;
  height: 11px;
  background: transparent !important;
  box-shadow: none !important;
  border: 1px dashed rgba(176,212,128,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
}

.product-card__variants-more {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  align-self: center;
}

/* ===== PAYMENT TRUST STRIP ===== */
.payment-trust {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(109,196,240,0.08);
}
.payment-trust__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.payment-trust__methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.payment-trust__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(109,196,240,0.04);
  border: 1px solid rgba(109,196,240,0.12);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  transition: all 0.25s;
}
.payment-trust__badge:hover {
  border-color: rgba(109,196,240,0.3);
  color: var(--aqua);
  background: rgba(109,196,240,0.08);
}
.payment-trust__badge svg {
  color: var(--aqua);
  opacity: 0.6;
}
.payment-trust__powered {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ===== WHY ARCMORPH ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-card {
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
}
.why-card:hover {
  border-color: rgba(109,196,240,0.3);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
}
.why-card__icon svg {
  width: 100%;
  height: 100%;
}
.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: #fff;
}
.why-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* ===== INSTAGRAM CTA ===== */
.instagram-cta {
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.instagram-cta__icon {
  margin-bottom: 1.25rem;
}
.instagram-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.instagram-cta p {
  max-width: 500px;
  margin: 0 auto 1.5rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.instagram-cta .btn {
  font-size: 1rem;
  padding: 0.75rem 2rem;
}
.instagram-reels {
  margin-top: 2rem;
}
.instagram-reels__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 1.75rem;
}
.instagram-reels__header h3 {
  font-size: 1.6rem;
  margin: 0.55rem 0 0.7rem;
}
.instagram-reels__header p {
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.instagram-reels__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.instagram-reels__item {
  padding: 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.instagram-reels__item .instagram-media {
  min-width: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
@media (max-width: 980px) {
  .instagram-reels__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .instagram-reels__grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   NFC SOCIAL KEY RING — BUNDLE CONFIGURATOR
   Tactile Chromaticity: icons bloom from muted to brand color when
   added, URL inputs slide in beneath, tier ladder shows current
   bracket, live total in the submit CTA.
   ================================================================ */

/* Pin the gallery on NFC product pages so the image doesn't stretch
   (and visually zoom) when URL inputs appear on the right, and give
   the configurator column more breathing room than the gallery. */
.product-modal__content:has(.nfc-bundle) {
  width: min(94vw, 1120px);
  align-items: start;
  grid-template-columns: 0.8fr 1fr;
}
.product-modal__content:has(.nfc-bundle) .product-modal__gallery {
  position: sticky;
  top: 6rem;
  align-self: start;
  max-height: calc(100vh - 7rem);
}
.product-modal__content:has(.nfc-bundle) .product-modal__image {
  flex: none;
  aspect-ratio: 1;
  max-height: 540px;
}

.nfc-bundle {
  --brand: var(--aqua);
  padding: 1.8rem 1.6rem 2rem;
}

/* Price preview: "From ₹299 — ₹179/pc at 5+ bundled" */
.nfc-price-preview {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.3rem 0 1.1rem;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.nfc-price-preview__from {
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.nfc-price-preview__max {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nfc-price-preview__sep {
  color: rgba(255,255,255,0.28);
  font-size: 1.05rem;
  margin: 0 0.15rem;
}
.nfc-price-preview__min {
  font-size: 1.1rem;
  color: var(--aqua);
  letter-spacing: -0.01em;
}
.nfc-price-preview__note {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  padding-left: 0.35rem;
}

/* 02 · Icons section */
.nfc-icons {
  margin: 1.5rem 0 1.4rem;
}
.nfc-icons__sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0.35rem 0 1rem;
  max-width: 44ch;
}
.nfc-plus {
  display: inline-block;
  color: var(--olive);
  font-weight: 600;
  padding: 0 0.15rem;
}

.nfc-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

/* Individual icon tile */
.nfc-icon {
  --brand: #888;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.1rem 0.5rem 0.75rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s, transform 0.18s;
}
.nfc-icon::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--brand), transparent 55%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
  filter: blur(14px);
}
.nfc-icon--active {
  border-color: var(--brand);
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 8%, transparent), rgba(255,255,255,0.005));
}
.nfc-icon--active::before {
  opacity: 0.35;
}

/* The clickable brand logo disc */
.nfc-icon__tile {
  all: unset;
  cursor: pointer;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s, transform 0.18s, box-shadow 0.25s;
}
.nfc-icon__svg {
  width: 28px;
  height: 28px;
  transition: fill 0.25s, transform 0.25s;
}
.nfc-icon__svg path {
  fill: rgba(255,255,255,0.45);
  transition: fill 0.25s;
}
.nfc-icon__tile:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.nfc-icon--active .nfc-icon__tile {
  background: var(--brand);
  border-color: transparent;
  box-shadow: 0 6px 22px -6px color-mix(in srgb, var(--brand) 70%, transparent);
}
.nfc-icon--active .nfc-icon__svg path {
  fill: #fff;
}
/* Snapchat + Threads need dark glyph on light background */
.nfc-icon--active[data-icon="snapchat"] .nfc-icon__svg path {
  fill: #000;
}

.nfc-icon__name {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}
.nfc-icon--active .nfc-icon__name {
  color: #fff;
}

/* Stepper — subtle minus/plus around the count */
.nfc-icon__stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 0.15rem 0.4rem;
}
.nfc-icon__btn {
  all: unset;
  cursor: pointer;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s, transform 0.15s;
}
.nfc-icon__btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nfc-icon__btn:active {
  transform: scale(0.9);
}
.nfc-icon__btn--plus {
  color: var(--olive);
}
.nfc-icon--active .nfc-icon__btn--plus {
  color: #fff;
}
.nfc-icon__count {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  min-width: 1ch;
  text-align: center;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.nfc-icon--active .nfc-icon__count {
  color: #fff;
  text-shadow: 0 0 12px color-mix(in srgb, var(--brand) 45%, transparent);
}

/* 03 · Links — URL inputs appear once there's at least one ring */
.nfc-links[hidden] { display: none; }
.nfc-links {
  margin: 1.3rem 0 1.3rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: nfc-fade-in 0.35s ease-out;
}
@keyframes nfc-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.nfc-links__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.nfc-link-row {
  --brand: #888;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  background: rgba(255,255,255,0.015);
  border-left: 3px solid var(--brand);
  border-radius: 0 6px 6px 0;
  transition: background 0.2s;
  animation: nfc-fade-in 0.3s ease-out;
}
.nfc-link-row:hover {
  background: rgba(255,255,255,0.03);
}
.nfc-link-row__marker {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nfc-link-row[data-key^="snapchat"] .nfc-link-row__marker .nfc-icon__svg path {
  fill: #000;
}
.nfc-link-row__marker .nfc-icon__svg {
  width: 14px;
  height: 14px;
}
.nfc-link-row__marker .nfc-icon__svg path {
  fill: #fff;
}
.nfc-link-row__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.nfc-link-row__name {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.nfc-link-row__input {
  all: unset;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.2rem 0 0.3rem;
  transition: border-color 0.2s;
  width: 100%;
}
.nfc-link-row__input::placeholder {
  color: rgba(255,255,255,0.25);
  font-style: italic;
  font-weight: 300;
}
.nfc-link-row__input:focus {
  border-bottom-color: var(--brand);
}
.nfc-link-row--error {
  animation: nfc-shake 0.4s;
}
.nfc-link-row--error .nfc-link-row__input {
  border-bottom-color: #e88d43;
}
@keyframes nfc-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* Tier ladder — 4 brackets, current one highlighted */
.nfc-tier-bar {
  margin: 1.3rem 0 1rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nfc-tier-bar__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0.6rem;
}
.nfc-tier-ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}
.nfc-tier {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.55rem 0.65rem;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.nfc-tier__qty {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.nfc-tier__price {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}
.nfc-tier__unit {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.05rem;
}
.nfc-tier--active {
  border-color: var(--olive);
  background: linear-gradient(135deg, var(--olive-dim), rgba(109,196,240,0.02));
  box-shadow: 0 0 24px -8px var(--olive-glow);
  transform: translateY(-1px);
}
.nfc-tier--active .nfc-tier__qty {
  color: var(--olive);
}
.nfc-tier--active .nfc-tier__price {
  color: var(--olive);
}

/* NFC bundle action buttons — match standard product buttons */
.nfc-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.nfc-submit,
.nfc-buy-now {
  width: 100%;
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
}
.nfc-submit {
  background: transparent;
  color: var(--aqua);
  border: 1px solid var(--aqua-dim);
}
.nfc-submit:not(.nfc-btn--disabled):hover {
  background: rgba(109,196,240,0.08);
  border-color: var(--aqua);
  box-shadow: var(--glow-aqua);
}
.nfc-buy-now {
  background: linear-gradient(135deg, var(--aqua), var(--olive));
  color: var(--dark-bg);
  border: none;
}
.nfc-buy-now:not(.nfc-btn--disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 46px -10px var(--olive-glow), 0 0 0 2px rgba(255,255,255,0.05);
  filter: brightness(1.08);
}
.nfc-submit:disabled,
.nfc-buy-now:disabled,
.nfc-btn--disabled {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  pointer-events: auto !important;
}
.nfc-submit--added {
  background: var(--olive);
  color: var(--dark-bg);
}

/* Size surcharge note below tier ladder */
.nfc-size-surcharge[hidden] { display: none; }
.nfc-size-surcharge {
  margin: 0.7rem 0 0;
  padding: 0.45rem 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(176,212,128,0.06);
  border: 1px solid rgba(176,212,128,0.22);
  border-radius: 4px;
  animation: nfc-fade-in 0.3s ease-out;
}
.nfc-size-surcharge strong {
  color: var(--olive);
  font-weight: 600;
  letter-spacing: 0;
}
.nfc-size-surcharge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 10px var(--olive-glow);
  flex: none;
}

/* Toast: slides in bottom-center on size change */
.nfc-toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(60px);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(176,212,128,0.3);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1), opacity 0.3s;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,0.6);
}
.nfc-toast strong {
  color: var(--olive);
  font-weight: 600;
}
.nfc-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--dark-bg);
  flex: none;
}
.nfc-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.nfc-toast--bump {
  border-color: var(--aqua);
}
.nfc-toast--bump .nfc-toast__icon {
  background: var(--aqua);
}
.nfc-toast--bump strong {
  color: var(--aqua);
}

/* Responsive */
@media (min-width: 1100px) {
  .nfc-icon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .product-modal__content:has(.nfc-bundle) {
    grid-template-columns: 1fr;
  }
  .product-modal__content:has(.nfc-bundle) .product-modal__gallery {
    position: relative;
    top: auto;
    max-height: none;
  }
  .product-modal__content:has(.nfc-bundle) .product-modal__image {
    max-height: 420px;
  }
  .nfc-bundle {
    padding: 1.4rem 1.1rem 1.8rem;
  }
  .nfc-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .nfc-icon {
    padding: 0.9rem 0.35rem 0.65rem;
  }
  .nfc-icon__tile {
    width: 52px;
    height: 52px;
  }
  .nfc-icon__svg {
    width: 24px;
    height: 24px;
  }
  .nfc-tier-ladder {
    grid-template-columns: repeat(2, 1fr);
  }
  .nfc-submit,
  .nfc-buy-now {
    padding: 0.85rem 1rem;
    font-size: 0.72rem;
  }
}
@media (max-width: 420px) {
  .nfc-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== BLOG ===== */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.blog-list--compact { gap: 1rem; }
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__body { padding: 1.5rem; }
.blog-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.95);
}
.blog-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.75;
  margin-bottom: 1rem;
}
.blog-card__meta {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  opacity: 0.55;
  font-family: 'JetBrains Mono', monospace;
}
.blog-card__dot { margin: 0 0.5rem; }

.blog-post__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin: 1rem 0 1rem;
  color: rgba(255,255,255,0.95);
}
.blog-post__meta {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 2rem;
}
.blog-post__hero {
  margin: 1rem 0 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}
.blog-post__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
}
.blog-post__body h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.6rem;
  color: var(--aqua);
}
.blog-post__body h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.blog-post__body p { margin-bottom: 1.2rem; }
.blog-post__body ul,
.blog-post__body ol {
  margin: 0 0 1.2rem 1.5rem;
}
.blog-post__body li { margin-bottom: 0.5rem; }
.blog-post__body a {
  color: var(--aqua);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-post__body blockquote {
  border-left: 3px solid var(--olive);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.5rem 0;
  opacity: 0.9;
  font-style: italic;
}
.blog-post__body strong { color: rgba(255,255,255,0.98); }

/* ===== GIFT PAGE REASONS ===== */
.gift-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.gift-reason {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
}
.gift-reason__title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.gift-reason__title a {
  color: var(--aqua);
  text-decoration: none;
  font-weight: 600;
}
.gift-reason__title a:hover { text-decoration: underline; }
.gift-reason__price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  opacity: 0.8;
  white-space: nowrap;
}
.gift-reason__text {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.78;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  font-family: 'JetBrains Mono', monospace;
}
.breadcrumb a {
  color: var(--aqua);
  text-decoration: none;
  transition: opacity 0.2s;
}
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ================================================================
   PHOTO LITHOPHANE — editorial photo essay
   Five-block visual story — hero, close-up pair, cinema lifestyle,
   craft pair, outro — with a sticky details column on the right.
   Monospace chapter marks echo the brand's JetBrains Mono usage.
   ================================================================ */
.product-modal__content[data-product-slug="photo-lithophane"] {
  width: min(94vw, 1180px);
  max-height: none;
  overflow: visible;
  align-items: start;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.75rem;
  padding: 1.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
}
.product-modal__content[data-product-slug="photo-lithophane"] > .product-modal__details {
  position: sticky;
  top: 6rem;
  padding: 2rem 1.8rem 2.2rem;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.72) 0%, rgba(8, 8, 8, 0.72) 100%);
  border: 1px solid rgba(241, 191, 102, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lp-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.lp-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(120% 90% at 50% 55%, rgba(241, 191, 102, 0.08) 0%, rgba(8, 8, 8, 0) 62%),
    var(--dark-card);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 40px -24px rgba(0, 0, 0, 0.75);
  isolation: isolate;
}
.lp-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform-origin: center 55%;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.1, 1),
              filter 0.6s ease;
}
.lp-tile:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

/* Hero: preserve the money shot, native 4:3 with no crop */
.lp-tile--hero { aspect-ratio: 4 / 3; }
.lp-tile--hero img { object-fit: contain; }

/* Close-up pair — two 4:3 tiles in a row */
.lp-row--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 8 / 3;
}

/* Cinema lifestyle — letterbox crop with anchored subject */
.lp-tile--cinema { aspect-ratio: 21 / 9; }
.lp-tile--cinema img { object-position: center 58%; }

/* Asymmetric craft row — one wide, one square-ish */
.lp-row--asym {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  aspect-ratio: 15 / 5;
}

/* Outro — a top-down, cinema crop */
.lp-tile--outro { aspect-ratio: 16 / 7; }
.lp-tile--outro img { object-position: center 60%; }

/* Editorial chapter mark — monospace eyebrow anchored bottom-left */
.lp-eyebrow {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  background: rgba(8, 8, 8, 0.62);
  border: 1px solid rgba(241, 191, 102, 0.26);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  pointer-events: none;
}
.lp-eyebrow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 100px;
  background: rgba(241, 191, 102, 0.92);
  color: #120a02;
  font-weight: 700;
  font-size: 0.52rem;
  letter-spacing: 0.06em;
}

/* Subtle vignette around every tile to unify against any backdrop */
.lp-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03),
              inset 0 -40px 60px -30px rgba(0, 0, 0, 0.45);
}

@media (max-width: 960px) {
  .product-modal__content[data-product-slug="photo-lithophane"] {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0.75rem;
  }
  .product-modal__content[data-product-slug="photo-lithophane"] > .product-modal__details {
    position: static;
    order: 2;
  }
  .product-modal__content[data-product-slug="photo-lithophane"] > .product-modal__gallery {
    order: 1;
  }
  .lp-row--pair { aspect-ratio: 8 / 3; }
  .lp-row--asym { aspect-ratio: 12 / 5; }
  .lp-eyebrow { font-size: 0.52rem; padding: 6px 12px 6px 8px; }
}
@media (max-width: 560px) {
  .lp-row--pair,
  .lp-row--asym {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    gap: 10px;
  }
  .lp-row--pair > .lp-tile,
  .lp-row--asym > .lp-tile { aspect-ratio: 4 / 3; }
}

/* ================================================================
   GENERIC EDITORIAL GALLERY
   Applied to all products except NFC (custom bundle) and
   photo-lithophane (bespoke story layout). A full-width hero at
   native aspect, then a 2-column masonry of the remaining images,
   each tile preserving its original resolution via height:auto.
   Sticky right-column details anchors the CTA as the user scrolls.
   ================================================================ */
.product-modal__content:has(.editorial-gallery) {
  width: min(94vw, 1180px);
  max-height: none;
  overflow: visible;
  align-items: start;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.75rem;
  padding: 1.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
}
.product-modal__content:has(.editorial-gallery) > .product-modal__details {
  position: sticky;
  top: 6rem;
  padding: 2rem 1.8rem 2.2rem;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.74) 0%, rgba(8, 8, 8, 0.74) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.editorial-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.eg-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--dark-card);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 40px -24px rgba(0, 0, 0, 0.75);
  isolation: isolate;
}
.eg-tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.1, 1),
              filter 0.6s ease;
}
.eg-tile:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}
.eg-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 -40px 60px -40px rgba(0, 0, 0, 0.5);
}

.eg-tile--hero {
  width: 100%;
}

/* Masonry — native aspect per image, two balanced columns */
.eg-masonry {
  columns: 2;
  column-gap: 14px;
  column-fill: balance;
}
.eg-masonry > .eg-tile {
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

@media (max-width: 960px) {
  .product-modal__content:has(.editorial-gallery) {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0.75rem;
  }
  .product-modal__content:has(.editorial-gallery) > .product-modal__details {
    position: static;
  }
}
@media (max-width: 560px) {
  .eg-masonry { columns: 1; }
}

/* ================================================================
   PHOTO UPLOAD (personalised lithophane)
   Drop zone, preview tile, replace button, gated-button state.
   ================================================================ */
.photo-upload { position: relative; }
.photo-upload__drop {
  display: block;
  position: relative;
  border: 1.5px dashed rgba(241, 191, 102, 0.35);
  border-radius: 14px;
  padding: 16px;
  background:
    radial-gradient(120% 90% at 50% 55%, rgba(241, 191, 102, 0.06) 0%, rgba(8, 8, 8, 0) 62%),
    rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.photo-upload__drop:hover {
  border-color: rgba(241, 191, 102, 0.6);
  background:
    radial-gradient(120% 90% at 50% 55%, rgba(241, 191, 102, 0.1) 0%, rgba(8, 8, 8, 0) 62%),
    rgba(255, 255, 255, 0.03);
}
.photo-upload__empty:not([hidden]),
.photo-upload__preview:not([hidden]) {
  display: flex;
  align-items: center;
  gap: 14px;
}
.photo-upload__drop [hidden] { display: none !important; }
.photo-upload__placeholder {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: var(--dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(241, 191, 102, 0.6);
  box-shadow: 0 4px 18px -8px rgba(0, 0, 0, 0.6),
              inset 0 0 0 1px rgba(241, 191, 102, 0.18);
}
.photo-upload__placeholder svg {
  width: 38px;
  height: 28px;
  opacity: 0.85;
}
.photo-upload__empty-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.photo-upload__cta {
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}
.photo-upload__hint {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.photo-upload__preview img {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--dark-card);
  box-shadow: 0 4px 18px -8px rgba(0, 0, 0, 0.6);
}
.photo-upload__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.photo-upload__filename {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.photo-upload__replace {
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(241, 191, 102, 0.4);
  color: #f1bf66;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.photo-upload__replace:hover {
  background: rgba(241, 191, 102, 0.12);
  color: #fff;
}
.photo-upload__error {
  margin-top: 8px;
  font-size: 0.78rem;
  color: #ff7a7a;
}
.photo-upload__tip {
  margin: 8px 2px 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.45;
}
.photo-upload--uploading .photo-upload__drop { opacity: 0.7; }
@keyframes photoUploadShake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
.photo-upload--shake { animation: photoUploadShake 0.55s ease; }
.photo-upload--shake .photo-upload__drop { border-color: #ff7a7a; }

/* Order/cart photo chip — tiny thumbnail with "Custom photo" label */
.cart-item__photo-chip,
.order-item__photo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 4px 8px 4px 4px;
  border-radius: 100px;
  background: rgba(241, 191, 102, 0.1);
  border: 1px solid rgba(241, 191, 102, 0.28);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.cart-item__photo-chip img,
.order-item__photo-chip img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 100px;
}
.cart-item__photo-chip:hover,
.order-item__photo-chip:hover { color: #fff; }

/* ===== PAYMENT SELECTOR ===== */
.payment-selector { padding: 16px; margin-bottom: 16px; }
.payment-selector__title { margin: 0 0 12px; font-size: 15px; }
.payment-option { display: flex; gap: 12px; padding: 12px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; cursor: pointer; margin-bottom: 8px; }
.payment-option--active { border-color: var(--aqua); background: rgba(109,196,240,0.06); }
.payment-option--disabled { opacity: 0.5; cursor: not-allowed; }
.payment-option input[type="radio"] { margin-top: 4px; }
.payment-option__head { display: flex; gap: 8px; align-items: center; }
.payment-option__name { font-weight: 600; }
.payment-option__badge { font-size: 10px; padding: 2px 6px; background: var(--olive); color: #000; border-radius: 4px; }
.payment-option__sub { font-size: 12px; opacity: 0.7; margin-top: 2px; }
.payment-option__hint { font-size: 12px; color: var(--aqua); margin-top: 4px; }
.payment-option__hint--warn { color: #f0a040; }
.cart-summary__row--prepaid .cart-summary__value--positive { color: var(--aqua); }
.cart-summary__cod-callout { margin-top: 12px; padding: 10px; background: rgba(176,212,128,0.08); border-left: 3px solid var(--olive); font-size: 13px; }

/* ===== Sitewide Marquee (prepaid 5% off promo) ===== */
.arc-marquee {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100; /* above #nav (1000) */
  display: flex; align-items: center; justify-content: center; gap: 12px;
  height: 32px; padding: 0 16px;
  background: linear-gradient(90deg, #6DC4F0, #B0D480);
  color: #000; font-size: 13px; font-weight: 500;
}
.arc-marquee__text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.arc-marquee__close {
  background: none; border: none; color: #000; font-size: 18px;
  line-height: 1; cursor: pointer; padding: 0 4px; opacity: 0.7;
}
.arc-marquee__close:hover { opacity: 1; }
.arc-marquee[hidden] { display: none; }
/* When marquee is rendered+visible, reserve 32px at the top so the nav
   sits below it (body class is toggled by main.js dismiss handler). */
body.has-marquee { padding-top: 32px; }
body.has-marquee #nav { top: calc(16px + 32px); }
/* Push the floating Back-to-Products pill down by the marquee height
   so it doesn't overlap the (already-shifted) nav. */
body.has-marquee .back-link--float { top: calc(88px + 32px); }
@media (max-width: 768px) {
  body.has-marquee .back-link--float { top: calc(104px + 32px); }
}
@media (max-width: 480px) { .arc-marquee__text { font-size: 12px; } }

/* ================================================================
   PRODUCT DETAIL — REVAMP
   Trust strip · highlights · numbered dossier sections · accordions
   · WhatsApp quick-actions · related products · sticky mobile CTA.
   The aesthetic: editorial spec dossier on dark glass.
   ================================================================ */

/* ---- Trust strip — sits inside the details column under the CTA.
       Editorial 2×2 manifest: icon + single short line, hairline grid. */
.pd-trust {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* hairline grid drawn via gap-as-divider technique */
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.pd-trust__cell {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 0.95rem;
  min-width: 0;
  background: linear-gradient(180deg, rgba(18,18,18,0.6) 0%, rgba(10,10,10,0.6) 100%);
}
.pd-trust__icon {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: var(--aqua);
  opacity: 0.9;
  stroke-width: 1.5;
}
.pd-trust__cell:nth-child(2) .pd-trust__icon,
.pd-trust__cell:nth-child(4) .pd-trust__icon { color: var(--olive); }
.pd-trust__text {
  font-size: 0.78rem;
  letter-spacing: 0.005em;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  line-height: 1.25;
  /* allow wrapping if needed; do not truncate */
  word-wrap: break-word;
  hyphens: auto;
}

/* Wider viewports: collapse to a single horizontal row with hairline rules */
@media (min-width: 760px) {
  .pd-trust {
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
  }
  .pd-trust__cell { padding: 0.8rem 0.85rem; gap: 0.55rem; }
  .pd-trust__text { font-size: 0.72rem; }
  .pd-trust__icon { width: 16px; height: 16px; }
}

/* ================================================================
   PD-MANIFEST — "build log" treatment for the below-hero sections.
   Each section is announced by a horizontal layer-line rule with an
   embedded number tab + mono caps title. No card containers. The
   spec data lives in flat 3-column lists; FAQ is a minimal accordion;
   "Talk to us" is one editorial sentence + inline pills; related is
   a clean filmstrip. Aesthetic: industrial dossier meets editorial.
   ================================================================ */

/* In-details "callouts" — short selling-point bullets shown right
   under the description, before the variant pickers. */
.pd-callouts {
  list-style: none;
  margin: 1.1rem 0 0.4rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pd-callouts__item {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.86);
}
.pd-callouts__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 1rem;
  height: 1px;
  background: linear-gradient(90deg, var(--aqua), transparent);
}

/* Outer wrapper for all below-hero manifest sections */
.pd-manifest {
  margin: 2.5rem auto 0;
  max-width: 1180px;
  padding: 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 720px) {
  .pd-manifest { margin-top: 2rem; gap: 20px; }
}

.pd-mn {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Signature horizontal rule with embedded number tab + title.
   Reads like a layer-line marker on a 3D print. */
.pd-mn__rule {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
}
.pd-mn__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--aqua);
  padding: 4px 11px 5px;
  border: 1px solid rgba(109,196,240,0.35);
  border-radius: 50px;
  background: rgba(109,196,240,0.04);
  flex-shrink: 0;
}
.pd-mn__title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.pd-mn__rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(109,196,240,0.4) 0%,
    rgba(109,196,240,0.18) 30%,
    rgba(176,212,128,0.16) 65%,
    transparent 100%);
}
@media (max-width: 560px) {
  .pd-mn__title {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    white-space: normal;
  }
  .pd-mn__rule { gap: 0.7rem; }
}

/* Specs / Dimensions / Materials — three flat columns side-by-side.
   No accordion, no cards — show all at once, hairline rows, mono labels. */
.pd-mn__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (min-width: 880px) {
  .pd-mn__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.pd-mn__col-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
  position: relative;
}
.pd-mn__col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 32px;
  height: 1px;
  background: var(--aqua);
}
.pd-mn__list {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.pd-mn__row {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.pd-mn__row:last-child { border-bottom: none; }
.pd-mn__row dt {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin: 0;
  font-weight: 500;
}
.pd-mn__row dd {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

/* Returns & exchange — three big stat tiles + body paragraph */
.pd-policy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pd-policy__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media (min-width: 720px) {
  .pd-policy__stats { grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
}
.pd-policy__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.pd-policy__stat::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--aqua);
}
.pd-policy__num {
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.96);
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.pd-policy__num small {
  font-size: 0.45em;
  margin-left: 2px;
  opacity: 0.65;
  font-weight: 400;
}
.pd-policy__unit {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aqua);
  font-weight: 500;
}
.pd-policy__hint {
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 30ch;
  margin-top: 0.25rem;
}
.pd-policy__body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 70ch;
  margin: 0;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.07);
}

/* FAQ — pure-typography accordion, no card backgrounds */
.pd-faq {
  display: flex;
  flex-direction: column;
}
.pd-faq__item {
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.pd-faq__item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pd-faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  user-select: none;
  transition: padding-left 0.3s ease;
}
.pd-faq__q::-webkit-details-marker { display: none; }
.pd-faq__q::marker { content: ''; }
.pd-faq__q-text {
  font-size: 1.02rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
  letter-spacing: 0.005em;
  flex: 1;
  transition: color 0.25s ease;
}
.pd-faq__item:hover .pd-faq__q-text { color: var(--aqua); }
.pd-faq__item[open] .pd-faq__q-text { color: #fff; }
.pd-faq__item:hover .pd-faq__q { padding-left: 0.5rem; }

/* Chevron: a thin "+" cross. Horizontal stays put; vertical bar
   collapses to zero on open. */
.pd-faq__chev {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--aqua);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.pd-faq__chev::before {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}
.pd-faq__chev::after {
  content: '';
  position: absolute;
  inset: 0 50% auto 50%;
  width: 1px;
  height: 100%;
  background: currentColor;
  transform: translateX(-50%) scaleY(1);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.5,0,0.2,1.4);
}
.pd-faq__item[open] .pd-faq__chev { opacity: 1; }
.pd-faq__item[open] .pd-faq__chev::after { transform: translateX(-50%) scaleY(0); }
.pd-faq__item:hover .pd-faq__chev { opacity: 1; }

.pd-faq__a {
  padding: 0 0 1.4rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 65ch;
  margin: 0;
}

@supports (interpolate-size: allow-keywords) {
  .pd-faq__item::details-content {
    height: 0;
    overflow: clip;
    transition: height 0.32s ease, content-visibility 0.32s allow-discrete;
    interpolate-size: allow-keywords;
  }
  .pd-faq__item[open]::details-content { height: auto; }
}

/* Talk to us — single editorial line + inline WhatsApp-green pills */
.pd-mn--talk { gap: 1.5rem; }
.pd-talk__line {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  margin: 0;
  font-weight: 300;
}
.pd-talk__line em {
  font-style: italic;
  color: rgba(255,255,255,0.95);
  font-weight: 400;
}
.pd-talk__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.4rem;
}
.pd-talk__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.2rem 0.72rem 1.05rem;
  border: 1px solid rgba(37,211,102,0.32);
  border-radius: 50px;
  background: rgba(37,211,102,0.04);
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.005em;
  font-weight: 500;
  transition: all 0.25s ease;
}
.pd-talk__pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 8px rgba(37,211,102,0.6);
  flex-shrink: 0;
}
.pd-talk__pill:hover {
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.7);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -16px rgba(37,211,102,0.5);
}

/* Related — clean filmstrip, no card chrome.
   Square images, name + price below. Hover: image zooms gently and
   the name underlines. */
.pd-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 1rem;
}
@media (min-width: 760px) {
  .pd-strip { grid-template-columns: repeat(4, 1fr); gap: 2rem 1.4rem; }
}
.pd-strip__card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.pd-strip__pic {
  margin: 0;
  aspect-ratio: 4 / 5;
  background: var(--dark-card);
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}
.pd-strip__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.1, 1);
}
.pd-strip__card:hover .pd-strip__pic img { transform: scale(1.05); }
.pd-strip__pic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,8,8,0.55) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pd-strip__card:hover .pd-strip__pic::after { opacity: 1; }

.pd-strip__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  line-height: 1.3;
  letter-spacing: 0.005em;
  position: relative;
  padding-bottom: 2px;
}
.pd-strip__name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--aqua);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pd-strip__card:hover .pd-strip__name::after { width: 38px; }

.pd-strip__price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(109,196,240,0.85);
  letter-spacing: 0.02em;
}

/* ---- Sticky mobile CTA panel (Hasan Oud style) ---- */
.pd-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  padding: 0.7rem 0.85rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10,10,10,0.98);
  border-top: 1px solid rgba(109,196,240,0.12);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}
.pd-sticky--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pd-sticky__inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.pd-sticky__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}
.pd-sticky__pic {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--dark-card);
}
.pd-sticky__pic img { width: 100%; height: 100%; object-fit: cover; }
.pd-sticky__name {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.pd-sticky__price {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--aqua);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.pd-sticky__variant {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  padding-left: calc(42px + 0.6rem);
  min-height: 1.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pd-sticky__actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.pd-sticky__btn {
  flex: 1;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  padding: 10px 12px !important;
  margin: 0 !important;
  border-radius: 10px !important;
  text-align: center;
  letter-spacing: 0.01em;
}
.pd-sticky__btn--cart {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #fff !important;
}
.pd-sticky__btn--cart:hover {
  background: rgba(255,255,255,0.08) !important;
}
.pd-sticky__btn--buy {
  background: var(--aqua) !important;
  border: 1px solid var(--aqua) !important;
  color: #080808 !important;
}
.pd-sticky__btn--buy:hover {
  filter: brightness(1.1);
}
.pd-sticky__btn--disabled {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  pointer-events: auto !important;
}
.pd-sticky__btn--disabled:hover {
  filter: none !important;
  transform: none !important;
}

/* Hide on desktop — sticky is mobile-only */
@media (min-width: 760px) {
  .pd-sticky { display: none; }
}

/* Reserve space at the bottom on mobile so the sticky doesn't overlap content */
@media (max-width: 759px) {
  .pd-manifest { padding-bottom: 6.5rem; }
}

/* Reduced motion respects user preference */
@media (prefers-reduced-motion: reduce) {
  .pd-faq__chev, .pd-faq__chev::after, .pd-faq__q,
  .pd-talk__pill, .pd-strip__card,
  .pd-strip__pic img, .pd-strip__pic::after, .pd-strip__name::after,
  .pd-sticky {
    transition: none !important;
  }
}

/* ====================================================================
   ALL PRODUCTS — Mosaic (desktop) + Filmstrip (mobile/touch)
   Mosaic = bento-grid with hover-bloom (desktop only, hover-capable, ≥1024px)
   Filmstrip = themed horizontal scrollers (mobile + tablet + touch)
==================================================================== */

#products-mosaic { display: none; }
#products-filmstrip { display: block; }
.category-chips--mosaic { display: none; }

@media (hover: hover) and (min-width: 1024px) {
  #products-mosaic { display: grid; }
  #products-filmstrip { display: none; }
  .category-chips--mosaic { display: flex; }
}

/* ===== Mosaic ===== */
.pmosaic {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 1.5rem;
}

.pmosaic-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1),
              border-color 0.3s, box-shadow 0.4s, filter 0.5s;
}
.pmosaic-tile--s-3x2 { grid-column: span 3; grid-row: span 2; }
.pmosaic-tile--s-2x2 { grid-column: span 2; grid-row: span 2; }
.pmosaic-tile--s-2x1 { grid-column: span 2; grid-row: span 1; }
.pmosaic-tile--s-1x2 { grid-column: span 1; grid-row: span 2; }
.pmosaic-tile--s-1x1 { grid-column: span 1; grid-row: span 1; }

.pmosaic-tile:hover {
  border-color: rgba(109,196,240,0.5);
  transform: translateY(-3px) scale(1.005);
  box-shadow: 0 24px 48px -16px rgba(109,196,240,0.3);
  z-index: 2;
}
.pmosaic:has(.pmosaic-tile:hover) .pmosaic-tile:not(:hover) {
  filter: brightness(0.45) saturate(0.6);
}

.pmosaic-tile__img { position: absolute; inset: 0; overflow: hidden; }
.pmosaic-tile__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1), filter 0.4s;
  filter: brightness(0.92) saturate(1.05);
}
.pmosaic-tile:hover .pmosaic-tile__img img {
  transform: scale(1.07);
  filter: brightness(1.05) saturate(1.15);
}

.pmosaic-tile__num {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.2em; z-index: 4;
  background: rgba(8,8,8,0.45); backdrop-filter: blur(8px);
  padding: 4px 8px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
}
.pmosaic-tile__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--olive); color: var(--dark-bg);
  padding: 4px 10px; border-radius: 999px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  z-index: 4;
  font-family: var(--font-mono);
}

.pmosaic-tile__pill {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(8,8,8,0.55); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500; letter-spacing: -0.01em;
  z-index: 4;
  display: flex; gap: 8px; align-items: baseline;
  transition: opacity 0.25s;
  color: var(--text-primary);
  max-width: calc(100% - 32px);
}
.pmosaic-tile--s-3x2 .pmosaic-tile__pill,
.pmosaic-tile--s-2x2 .pmosaic-tile__pill {
  font-size: 16px; padding: 10px 16px;
}
.pmosaic-tile__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pmosaic-tile__sep { color: var(--text-muted); }
.pmosaic-tile__price {
  color: var(--aqua); font-weight: 700;
  font-family: var(--font-mono); font-size: 12px;
  white-space: nowrap;
}
.pmosaic-tile--s-3x2 .pmosaic-tile__price,
.pmosaic-tile--s-2x2 .pmosaic-tile__price { font-size: 14px; }
.pmosaic-tile__strike {
  text-decoration: line-through; color: var(--text-muted);
  font-size: 10px; font-weight: 500;
}
.pmosaic-tile:hover .pmosaic-tile__pill { opacity: 0; }

.pmosaic-tile__accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--aqua);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(.6,0,.2,1) 0.1s;
  z-index: 5;
}
.pmosaic-tile:hover .pmosaic-tile__accent { transform: scaleY(1); }

.pmosaic-tile__bloom {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 20px 18px 24px;
  background: linear-gradient(0deg, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.92) 60%, rgba(8,8,8,0.78) 100%);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(109,196,240,0.3);
  z-index: 3;
  transform: translateY(101%);
  transition: transform 0.55s cubic-bezier(.2,.85,.2,1);
}
.pmosaic-tile:hover .pmosaic-tile__bloom { transform: translateY(0); }

.pmosaic-bloom__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin-bottom: 4px;
}
.pmosaic-bloom__name {
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text-primary);
}
.pmosaic-tile--s-3x2 .pmosaic-bloom__name,
.pmosaic-tile--s-2x2 .pmosaic-bloom__name { font-size: 22px; font-weight: 500; }
.pmosaic-bloom__price-chip {
  font-family: var(--font-mono); font-size: 11px; color: var(--aqua);
  background: rgba(109,196,240,0.12); border: 1px solid rgba(109,196,240,0.35);
  padding: 3px 8px; border-radius: 4px; white-space: nowrap;
  letter-spacing: 0.05em; font-weight: 500;
}
.pmosaic-bloom__tag {
  font-size: 12px; color: var(--text-secondary);
  margin-bottom: 14px; line-height: 1.5;
}

.pmosaic-bloom__detail {
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s 0.25s, transform 0.3s 0.25s;
}
.pmosaic-tile:hover .pmosaic-bloom__detail {
  opacity: 1; transform: translateY(0);
}

.pmosaic-bloom__meta {
  display: flex; gap: 10px; align-items: baseline;
  margin-bottom: 12px; flex-wrap: wrap;
}
.pmosaic-bloom__was {
  font-size: 12px; color: var(--text-muted);
  text-decoration: line-through; font-family: var(--font-mono);
}
.pmosaic-bloom__save {
  font-size: 9px; font-weight: 700; color: var(--olive);
  border: 1px solid var(--olive); padding: 2px 6px; border-radius: 4px;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-family: var(--font-mono);
}

.pmosaic-bloom__options,
.pmosaic-bloom__sizes {
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 12px; flex-wrap: wrap;
}
.pmosaic-bloom__cta {
  display: flex; gap: 8px;
}
.pmosaic-bloom__cta .btn {
  flex: 1; padding: 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600; cursor: pointer;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-family: var(--font-ui);
  border: 1px solid var(--aqua);
  background: transparent; color: var(--aqua);
  transition: all 0.15s;
}
.pmosaic-bloom__cta .btn--buy-now,
.pmosaic-bloom__cta .btn--bundle {
  background: var(--aqua); color: var(--dark-bg);
}
.pmosaic-bloom__cta .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(109,196,240,0.25);
}
.pmosaic-bloom__cta .btn--bundle { text-decoration: none; text-align: center; }

/* ===== Filmstrip ===== */
.pfilm { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 4px; }
.pfilm-shelf { padding: 22px 0 28px; position: relative; }

.pfilm-shelf__head {
  display: flex; align-items: end; justify-content: space-between;
  padding: 0 0 18px; gap: 16px;
}
.pfilm-shelf__title {
  font-size: clamp(24px, 4.5vw, 36px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1;
  color: var(--text-primary);
  font-family: var(--font-ui);
  margin: 0;
}
.pfilm-shelf__title em {
  font-weight: 200; font-style: italic; color: var(--olive);
}
.pfilm-shelf__meta {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-muted); letter-spacing: 0.18em;
  text-transform: uppercase; white-space: nowrap;
}

.pfilm-shelf__rail-wrap {
  position: relative;
  margin: 0 calc(-1 * var(--container-pad, 1rem));
}
.pfilm-shelf__rail {
  display: flex; gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px var(--container-pad, 1rem) 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--olive) transparent;
  -webkit-overflow-scrolling: touch;
}
.pfilm-shelf__rail::-webkit-scrollbar { height: 6px; }
.pfilm-shelf__rail::-webkit-scrollbar-thumb { background: var(--olive); border-radius: 999px; }
.pfilm-shelf__rail::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 999px; }
.pfilm-shelf__fade {
  position: absolute; top: 0; bottom: 12px; width: 36px;
  pointer-events: none; z-index: 2;
}
.pfilm-shelf__fade--left {
  left: 0; background: linear-gradient(90deg, var(--dark-bg), transparent);
}
.pfilm-shelf__fade--right {
  right: 0; background: linear-gradient(-90deg, var(--dark-bg), transparent);
}
@media (hover: none) {
  .pfilm-shelf__rail { scrollbar-width: none; }
  .pfilm-shelf__rail::-webkit-scrollbar { height: 0; display: none; }
}

.pfilm-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
  position: relative;
}
.pfilm-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109,196,240,0.35);
  box-shadow: 0 12px 28px -12px rgba(109,196,240,0.25);
}
.pfilm-card__img {
  aspect-ratio: 1 / 1;
  background: #111;
  overflow: hidden; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pfilm-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  filter: brightness(0.95) saturate(1.05);
}
.pfilm-card:hover .pfilm-card__img img { transform: scale(1.05); }
.pfilm-card__badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--olive); color: var(--dark-bg);
  padding: 3px 9px; border-radius: 999px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-family: var(--font-mono);
}
.pfilm-card__num {
  position: absolute; top: 10px; right: 10px;
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.85);
  background: rgba(8,8,8,0.55); backdrop-filter: blur(6px);
  padding: 3px 7px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.18em;
}

.pfilm-card__body {
  padding: 12px 14px 14px;
  flex: 1; display: flex; flex-direction: column; gap: 5px;
}
.pfilm-card__spec {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pfilm-card__name {
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--text-primary);
  margin-top: 2px;
}
.pfilm-card__tag {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  min-height: 30px;
}
.pfilm-card__bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 8px;
}
.pfilm-card__price {
  display: flex; gap: 6px; align-items: baseline;
}
.pfilm-card__price .now {
  font-size: 15px; font-weight: 700; color: var(--aqua);
}
.pfilm-card__price .was {
  font-size: 11px; text-decoration: line-through; color: var(--text-muted);
}
.pfilm-card__add {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--aqua);
  color: var(--aqua); background: transparent;
  display: grid; place-items: center;
  cursor: pointer; flex-shrink: 0;
  transition: all 0.15s;
  font-size: 18px; font-weight: 400;
  font-family: var(--font-ui);
  text-decoration: none;
  padding: 0;
}
.pfilm-card__add:hover, .pfilm-card__add:active {
  background: var(--aqua);
  color: var(--dark-bg);
  transform: rotate(90deg);
}
.pfilm-card__add:disabled {
  opacity: 0.4; cursor: not-allowed;
}
.pfilm-card__bundle:hover {
  transform: rotate(0); /* don't rotate the bundle arrow */
}

/* Studio note strip — inserted between shelves */
.pfilm-studio {
  margin: 12px 0 4px;
  background: linear-gradient(135deg, rgba(176,212,128,0.05), rgba(109,196,240,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 22px;
  position: relative;
  overflow: hidden;
}
.pfilm-studio::before {
  content: ''; position: absolute;
  right: -40px; top: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(176,212,128,0.12), transparent 70%);
  pointer-events: none;
}
.pfilm-studio__meta {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--olive);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 10px;
}
.pfilm-studio__text {
  font-size: 15px; font-weight: 300;
  line-height: 1.55; font-style: italic;
  color: var(--text-primary);
}

@media (min-width: 600px) {
  .pfilm-card { flex: 0 0 250px; }
  .pfilm-card__img { aspect-ratio: 4 / 5; }
  .pfilm-card__name { font-size: 15px; }
  .pfilm-card__tag { font-size: 12px; min-height: 34px; }
  .pfilm-card__price .now { font-size: 16px; }
  .pfilm-studio { padding: 28px 30px; }
  .pfilm-studio__text { font-size: 17px; }
}
