/** Shopify CDN: Minification failed

Line 749:0 All "@import" rules must come first

**/
:root {
  --background: #fcf8f2;
  --surface: #fffdf9;
  --surface-strong: #f3ece2;
  --foreground: #171412;
  --muted: #6c635d;
  --border: rgba(23, 20, 18, 0.12);
  --border-strong: rgba(23, 20, 18, 0.18);
  --accent: #d46236;
  --accent-strong: #b94b23;
  --ink: #191512;
  --shadow: 0 24px 60px rgba(27, 20, 16, 0.08);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1280px;
  --font-stack: "Inter Tight", Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-stack);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.visually-hidden, .sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  border: 0;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -44px;
  background: var(--ink);
  color: var(--background);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip-link:focus { top: 16px; }
.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.section { padding: 88px 0; }
.section--compact { padding: 64px 0; }
.section--tight { padding: 28px 0; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}
.heading-xl {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.heading-lg {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.heading-md {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
}
.body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}
.button, .shopify-payment-button__button--unbranded {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover, .shopify-payment-button__button--unbranded:hover { transform: translateY(-1px); }
.button--primary, .shopify-payment-button__button--unbranded {
  background: var(--ink);
  color: var(--background);
}
.button--primary:hover, .shopify-payment-button__button--unbranded:hover { background: var(--accent); }
.button--secondary {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--foreground);
}
.button--secondary:hover {
  background: var(--surface-strong);
  border-color: var(--foreground);
}
.button--full { width: 100%; }
.link-inline {
  font-size: 0.95rem;
  font-weight: 700;
}
.link-inline:hover { color: var(--accent); }
.site-announcement {
  background: var(--ink);
  color: var(--background);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}
.site-announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--background) 85%, transparent);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--background);
  border-radius: 12px;
  font-size: 1rem;
}
.brand__wordmark { font-size: 1.15rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 0.94rem;
  color: rgba(23, 20, 18, 0.72);
  transition: color 180ms ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--foreground); }
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 12px 0 18px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav nav {
  display: grid;
  gap: 4px;
}
.mobile-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
}
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: 76vh;
  padding: 56px 0 80px;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(23,20,18,0.72);
}
.hero__chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(212,98,54,0.12);
}
.hero__content .heading-xl .accent { color: var(--accent); }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.85rem;
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(252,248,242,0.92);
  border: 1px solid rgba(23,20,18,0.08);
  backdrop-filter: blur(10px);
}
.hero__card small {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.marquee {
  background: var(--ink);
  color: var(--background);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 48px;
  min-width: max-content;
  padding: 16px 0;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.product-card {
  display: block;
}
.product-card__media {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-strong);
  margin-bottom: 16px;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}
.product-card:hover .product-card__media img { transform: scale(1.03); }
.product-card__title {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}
.product-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}
.price {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.price__current { font-weight: 800; color: var(--foreground); }
.price__compare { color: var(--muted); text-decoration: line-through; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(212,98,54,0.12);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
}
.promise-band {
  background: var(--surface-strong);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.icon-card h3,
.review-card h3 { margin: 14px 0 0; font-size: 1.3rem; }
.icon-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(212,98,54,0.12);
  color: var(--accent);
  font-size: 1.35rem;
}
.review-band {
  background: var(--ink);
  color: var(--background);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.review-card {
  border: 1px solid rgba(252,248,242,0.12);
  border-radius: 22px;
  padding: 28px;
  background: rgba(255,255,255,0.02);
}
.stars { color: var(--accent); letter-spacing: 0.18em; }
.cta-banner {
  text-align: center;
}
.inline-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.inline-list li { display: inline-flex; gap: 8px; align-items: center; }
.page-hero {
  border-bottom: 1px solid var(--border);
  background: var(--surface-strong);
}
.page-hero__inner {
  max-width: 900px;
  padding: 72px 0;
}
.page-hero__inner--wide { max-width: 1120px; }
.page-body {
  max-width: 860px;
}
.page-body--narrow { max-width: 720px; }
.richtext {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--foreground);
}
.richtext p,
.richtext ul,
.richtext ol,
.richtext h2,
.richtext h3,
.richtext hr { margin: 0 0 1rem; }
.richtext ul,
.richtext ol { padding-left: 1.2rem; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 42px;
  padding: 48px 0 72px;
}
.product-gallery__main {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-strong);
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.product-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--surface-strong);
  padding: 0;
}
.product-thumb.is-active { border-color: var(--accent); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-panel {
  position: sticky;
  top: 120px;
  align-self: start;
}
.kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 700;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 14px;
}
.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.price-row__current { font-size: 2rem; font-weight: 800; }
.option-group { margin-top: 28px; }
.option-group__label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.92rem;
  font-weight: 700;
}
.option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.option-button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--foreground);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.option-button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--background);
}
.quantity {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  overflow: hidden;
  margin-top: 10px;
}
.quantity button,
.quantity input {
  width: 54px;
  height: 52px;
  border: 0;
  background: transparent;
  text-align: center;
}
.quantity input { width: 64px; appearance: textfield; }
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.product-panel__actions { display: grid; gap: 12px; margin-top: 22px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-row__item {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.trust-row__icon {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 1.15rem;
}
.related-products {
  padding-top: 72px;
  border-top: 1px solid var(--border);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-stack { display: grid; gap: 28px; }
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--foreground);
}
.field textarea { min-height: 170px; resize: vertical; }
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
}
.social-link:hover { background: var(--ink); color: var(--background); }
.faq-list {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-item { border-top: 1px solid var(--border); }
.faq-item:first-child { border-top: 0; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  padding: 24px 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
}
.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.is-open .faq-answer { display: block; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.footer {
  margin-top: 96px;
  background: var(--ink);
  color: var(--background);
  border-top: 1px solid rgba(252,248,242,0.12);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.7fr 0.7fr;
  gap: 32px;
  padding: 68px 0 54px;
}
.footer h3 {
  margin: 0 0 18px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(252,248,242,0.65);
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer a:hover { color: var(--accent); }
.footer__brand p { color: rgba(252,248,242,0.72); }
.footer__sub {
  border-top: 1px solid rgba(252,248,242,0.1);
  padding: 18px 0 28px;
  color: rgba(252,248,242,0.52);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.empty-state {
  padding: 48px 28px;
  border: 1px dashed var(--border-strong);
  border-radius: 24px;
  background: var(--surface);
  text-align: center;
  color: var(--muted);
}
@media (max-width: 1100px) {
  .product-grid, .shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero__grid, .product-layout, .contact-layout, .footer__grid { grid-template-columns: 1fr; }
  .product-panel { position: static; }
  .hero__grid { min-height: auto; padding-top: 40px; }
}
@media (max-width: 860px) {
  .site-nav, .site-header__actions .button { display: none; }
  .site-header__toggle { display: inline-grid; place-items: center; }
  .product-grid, .shop-grid, .review-grid, .icon-grid, .about-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .section-header { display: block; }
  .section-header .link-inline { display: inline-block; margin-top: 16px; }
  .product-grid, .shop-grid, .review-grid, .icon-grid, .about-values, .trust-row { grid-template-columns: 1fr; }
  .hero__card { position: static; margin: 16px; }
  .hero__actions, .site-header__inner { gap: 10px; }
  .product-gallery__thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer__sub { display: block; }
}

/* ============================================================
   V4 POLISH — modern, minimal, eye-catching upgrades
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter+Tight:wght@400;500;600;700;800&display=swap');

:root {
  --accent: #e85d2c;
  --accent-strong: #c9421a;
  --shadow: 0 30px 80px rgba(27, 20, 16, 0.10);
  --radius-lg: 32px;
}

body { font-family: "Inter Tight", Inter, system-ui, sans-serif; }

/* Refined typography — serif accent on hero */
.heading-xl { font-weight: 700; letter-spacing: -0.045em; }
.heading-xl .accent {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.heading-lg { font-weight: 700; letter-spacing: -0.038em; }

/* Hero: ambient gradient orb backdrop */
.hero {
  background:
    radial-gradient(60% 50% at 85% 20%, rgba(232,93,44,0.14), transparent 70%),
    radial-gradient(45% 40% at 10% 90%, rgba(232,93,44,0.08), transparent 70%),
    var(--background);
}
.hero__grid { padding: 72px 0 96px; }
.hero__chip {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 8px 24px rgba(27,20,16,0.04);
}
.hero__visual {
  border-radius: 36px;
  box-shadow: 0 40px 100px rgba(27,20,16,0.14), 0 0 0 1px rgba(23,20,18,0.04) inset;
  transform: perspective(1400px) rotateY(-2deg);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.hero__visual:hover { transform: perspective(1400px) rotateY(0); }

/* Trust pills */
.hero__trust { gap: 10px; margin-top: 36px; }
.hero__trust span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(23,20,18,0.08);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--foreground);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease;
}
.hero__trust span:hover { transform: translateY(-2px); background: #fff; }

/* Buttons — refined */
.button { min-height: 56px; padding: 0 28px; font-weight: 600; letter-spacing: 0; }
.button--primary {
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(23,20,18,0.18);
}
.button--primary:hover { background: var(--accent); box-shadow: 0 18px 40px rgba(232,93,44,0.35); transform: translateY(-2px); }
.button--secondary { backdrop-filter: blur(8px); background: rgba(255,255,255,0.5); }

/* Header glass */
.site-header {
  background: color-mix(in srgb, var(--background) 70%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }

/* Product cards — lift + quick view */
.product-card { position: relative; transition: transform .35s ease; }
.product-card:hover { transform: translateY(-6px); }
.product-card__media {
  border-radius: 24px;
  position: relative;
  box-shadow: 0 12px 30px rgba(27,20,16,0.06);
  transition: box-shadow .35s ease;
}
.product-card:hover .product-card__media { box-shadow: 0 24px 50px rgba(27,20,16,0.14); }
.product-card__media img { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__media::after {
  content: 'View product →';
  position: absolute; left: 16px; bottom: 16px;
  padding: 10px 16px; border-radius: 999px;
  background: #fff; color: var(--ink); font-size: 13px; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s;
}
.product-card:hover .product-card__media::after { opacity: 1; transform: translateY(0); }
.product-card__title { font-size: 1.05rem; font-weight: 600; }

/* Section headers + reveal animation */
.section { padding: 104px 0; }
.section-header { margin-bottom: 56px; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero__content > *, .section-header > *, .product-card, .icon-card, .review-card {
  animation: rise .8s cubic-bezier(.2,.7,.2,1) both;
}
.hero__content > *:nth-child(2) { animation-delay: .08s; }
.hero__content > *:nth-child(3) { animation-delay: .16s; }
.hero__content > *:nth-child(4) { animation-delay: .24s; }
.hero__content > *:nth-child(5) { animation-delay: .32s; }

/* Promise band cards */
.icon-mark {
  width: 60px; height: 60px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(232,93,44,0.18), rgba(232,93,44,0.06));
  font-size: 1.6rem;
}

/* Marquee speed */
.marquee__track { animation-duration: 40s; font-weight: 600; }

/* Page hero */
.page-hero { padding: 80px 0 40px; }

/* Mobile polish */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; padding: 48px 0 64px; }
  .hero__visual { transform: none; aspect-ratio: 4 / 4; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .section { padding: 72px 0; }
}

/* ============================================================
   v8 — AURORA REDESIGN
   Dark base + electric violet/pink gradient accent,
   glassmorphism cards, glowing borders, scroll animations.
   ============================================================ */
:root{
  --background: var(--color-bg, #07060d);
  --surface: var(--color-surface, #11101a);
  --surface-strong: #1a1828;
  --foreground: var(--color-text, #f5f3ff);
  --muted: var(--color-muted, #9b96b8);
  --border: var(--color-border, #2a2640);
  --border-strong: #3a3458;
  --accent: var(--color-primary, #8b5cf6);
  --accent-2: var(--color-primary-2, #ec4899);
  --accent-strong: #a78bfa;
  --ink: var(--color-text, #f5f3ff);
  --shadow: 0 30px 80px rgba(139,92,246,0.18);
  --shadow-glow: 0 0 0 1px rgba(139,92,246,0.4), 0 20px 60px -10px rgba(139,92,246,0.45);
  --grad: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  --grad-soft: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(236,72,153,0.10));
  --font-display:"Syne","Space Grotesk",Inter,sans-serif;
  --font-heading:"Space Grotesk",Inter,sans-serif;
  --font-body:"Inter","Helvetica Neue",Arial,sans-serif;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  background:var(--background) !important;
  color:var(--foreground) !important;
  font-family:var(--font-body) !important;
  -webkit-font-smoothing:antialiased;
  letter-spacing:-0.005em;
  position:relative;
  overflow-x:hidden;
}
/* Ambient aurora background */
body::before{
  content:""; position:fixed; inset:0; z-index:-1; pointer-events:none;
  background:
    radial-gradient(60% 50% at 15% 10%, rgba(139,92,246,0.22), transparent 60%),
    radial-gradient(50% 45% at 90% 20%, rgba(236,72,153,0.18), transparent 60%),
    radial-gradient(45% 50% at 70% 90%, rgba(99,102,241,0.18), transparent 60%);
}

/* Typography */
h1,h2,h3,h4,.heading-xl,.heading-lg,.heading-md{
  font-family:var(--font-display) !important;
  font-weight:800 !important;
  letter-spacing:-0.04em !important;
  color:var(--foreground);
}
.heading-xl{ font-size:clamp(3.2rem, 9vw, 7.5rem) !important; line-height:0.96 !important; }
.heading-lg{ font-size:clamp(2.4rem, 6vw, 4.6rem) !important; }
.heading-md{ font-size:clamp(1.7rem, 3.2vw, 2.6rem) !important; }
.body-lg,.body{ color:var(--muted) !important; }

.eyebrow,.kicker,.site-announcement{
  font-family:var(--font-body) !important;
  font-weight:600 !important; text-transform:uppercase;
  letter-spacing:0.22em !important; font-size:11px !important;
  background:none !important; -webkit-text-fill-color:initial !important;
  color:var(--accent-strong) !important;
}
.accent{
  background:var(--grad) !important;
  -webkit-background-clip:text !important; background-clip:text !important;
  -webkit-text-fill-color:transparent !important; color:transparent !important;
}

/* Container */
.container{ width:min(calc(100% - 32px), var(--container-width, 1320px)); margin-inline:auto; }
.section{ padding:var(--section-spacing,120px) 0; }

/* Announcement */
.site-announcement,.announcement-bar{
  background:linear-gradient(90deg, rgba(139,92,246,0.18), rgba(236,72,153,0.12)) !important;
  color:var(--accent-strong) !important;
  border-bottom:1px solid var(--border);
  padding:10px 0 !important;
}

/* Header — sticky frosted glass */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(7,6,13,0.55) !important;
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  border-bottom:1px solid rgba(255,255,255,0.06) !important;
  padding:18px 0 !important;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:32px; }
.site-header a{ color:var(--foreground); font-weight:500; font-size:14px; }
.site-header nav a{ position:relative; padding:6px 0; opacity:.85; transition:opacity .25s; }
.site-header nav a:hover{ opacity:1; }
.site-header nav a::after{
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px;
  background:var(--grad); border-radius:2px;
  transform:scaleX(0); transform-origin:left; transition:transform .35s cubic-bezier(.2,.8,.2,1);
}
.site-header nav a:hover::after{ transform:scaleX(1); }
.brand__wordmark{
  font-family:var(--font-display) !important;
  font-weight:800 !important; letter-spacing:-0.05em;
  font-size:calc(var(--logo-size,24px) * 1.25) !important;
  background:var(--grad); -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}
.cart-count{ background:var(--grad) !important; box-shadow:0 0 16px rgba(139,92,246,0.6); }

/* HERO */
.hero{ padding:80px 0 120px !important; position:relative; }
.hero__grid{
  display:grid !important;
  grid-template-columns:1.1fr 1fr !important;
  gap:64px !important; align-items:center !important;
}
.hero__chip{
  display:inline-flex !important; align-items:center; gap:10px;
  background:rgba(255,255,255,0.04) !important;
  border:1px solid var(--border-strong);
  color:var(--accent-strong) !important;
  padding:9px 16px; border-radius:999px;
  font-family:var(--font-body) !important; font-weight:500 !important;
  font-size:11px !important; letter-spacing:0.2em; text-transform:uppercase;
  margin-bottom:32px;
  backdrop-filter:blur(10px);
  animation:fadeUp .8s ease both;
}
.hero__chip-dot{ width:6px; height:6px; border-radius:999px; background:var(--accent); box-shadow:0 0 12px var(--accent); animation:pulse 2s infinite; }
.hero h1{ animation:fadeUp .9s .1s ease both; }
.hero .body-lg{ animation:fadeUp .9s .2s ease both; }
.hero__actions{ display:flex; gap:14px; margin-top:36px; flex-wrap:wrap; animation:fadeUp .9s .3s ease both; }
.hero__trust{
  display:flex; gap:24px; flex-wrap:wrap;
  margin-top:48px; padding-top:24px;
  border-top:1px solid var(--border);
  font-size:12px; letter-spacing:0.06em; color:var(--muted);
  animation:fadeUp .9s .4s ease both;
}
.hero__visual{
  position:relative; aspect-ratio:4/5; border-radius:28px; overflow:hidden;
  background:var(--surface);
  border:1px solid var(--border);
  box-shadow:var(--shadow-glow);
  animation:fadeUp 1s .25s ease both;
}
.hero__visual::before{
  content:""; position:absolute; inset:-2px; border-radius:30px; padding:2px;
  background:var(--grad); opacity:.5; z-index:0;
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none;
}
.hero__visual img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s cubic-bezier(.2,.8,.2,1); }
.hero:hover .hero__visual img{ transform:scale(1.06); }
.hero__card{
  position:absolute; left:18px; right:18px; bottom:18px; z-index:2;
  background:rgba(17,16,26,0.7); backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,0.08);
  padding:16px 20px; border-radius:16px;
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  color:var(--foreground);
}
.hero__card small{ color:var(--accent-strong); font-size:10px; letter-spacing:0.2em; text-transform:uppercase; display:block; margin-bottom:4px; }
.hero__card strong{ font-family:var(--font-display); font-size:1.05rem; font-weight:700; }

/* Buttons */
.button{
  border-radius:999px !important;
  padding:16px 28px !important;
  font-family:var(--font-body) !important;
  font-size:13px !important; font-weight:600 !important;
  letter-spacing:0.08em !important; text-transform:uppercase;
  min-height:54px;
  border:1px solid transparent;
  transition:transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease;
  position:relative; overflow:hidden;
}
.button--primary{
  background:var(--grad) !important;
  color:#fff !important;
  box-shadow:0 14px 30px -8px rgba(139,92,246,0.55), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
.button--primary::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform:translateX(-100%); transition:transform .8s ease;
}
.button--primary:hover{ transform:translateY(-3px); box-shadow:0 22px 50px -10px rgba(236,72,153,0.6), 0 0 0 1px rgba(255,255,255,0.1) inset; }
.button--primary:hover::after{ transform:translateX(100%); }
.button--secondary{
  background:rgba(255,255,255,0.04) !important;
  color:var(--foreground) !important;
  border:1px solid var(--border-strong) !important;
  backdrop-filter:blur(10px);
}
.button--secondary:hover{ border-color:var(--accent) !important; color:var(--accent-strong) !important; transform:translateY(-2px); }

/* PRODUCT CARDS — premium glassmorphic with glowing border */
.product-card{
  background:rgba(21,19,32,0.55) !important;
  backdrop-filter:blur(14px);
  border:1px solid var(--border) !important;
  border-radius:22px !important;
  padding:14px !important;
  position:relative;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease !important;
  overflow:hidden;
}
.product-card::before{
  content:""; position:absolute; inset:-1px; border-radius:22px; padding:1.5px;
  background:var(--grad); opacity:0; z-index:0;
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  transition:opacity .35s ease; pointer-events:none;
}
.product-card:hover{
  transform:translateY(-8px) !important;
  box-shadow:0 30px 60px -20px rgba(139,92,246,0.45), 0 0 40px -10px rgba(236,72,153,0.3) !important;
}
.product-card:hover::before{ opacity:1; }
.product-card__media,.product-thumb{
  position:relative; overflow:hidden;
  border-radius:16px !important;
  background:var(--surface-strong);
  aspect-ratio:4/5;
}
.product-card__media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .9s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover .product-card__media img{ transform:scale(1.08); }
.product-card__media::after{
  content:"View product"; position:absolute; left:14px; bottom:14px;
  background:var(--grad); color:#fff;
  font-size:11px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
  padding:9px 14px; border-radius:999px;
  opacity:0; transform:translateY(10px);
  transition:opacity .35s, transform .35s;
  box-shadow:0 10px 24px rgba(139,92,246,0.4);
}
.product-card:hover .product-card__media::after{ opacity:1; transform:translateY(0); }
.product-card__title,.product-card h3{
  font-family:var(--font-display) !important;
  font-size:1.15rem !important; font-weight:700 !important;
  color:var(--foreground) !important;
  margin:18px 12px 6px !important;
}
.product-card__price,.price{
  font-family:var(--font-body) !important;
  font-size:14px !important; font-weight:600 !important;
  color:var(--accent-strong) !important;
  margin:0 12px 12px !important;
}

/* Pill badges/tags */
.badge,.tag,.product-tag{
  display:inline-block; padding:5px 12px; border-radius:999px;
  background:rgba(139,92,246,0.15); color:var(--accent-strong);
  border:1px solid rgba(139,92,246,0.3);
  font-size:11px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
}

/* Marquee */
.marquee{ background:var(--surface) !important; color:var(--foreground) !important; border-block:1px solid var(--border); padding:24px 0 !important; }
.marquee span,.marquee__item{
  font-family:var(--font-display) !important; font-weight:700 !important;
  font-size:clamp(1.6rem, 3vw, 2.4rem) !important;
  background:var(--grad); -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Promise band */
.promise-band{ background:transparent !important; border-block:1px solid var(--border); }
.promise-band .promise{ border:0 !important; padding:40px 24px !important; }
.promise-band .promise + .promise{ border-left:1px solid var(--border) !important; }
.promise__icon{
  width:54px; height:54px; border-radius:14px;
  background:var(--grad-soft) !important;
  border:1px solid var(--border-strong);
  color:var(--accent-strong) !important;
  display:grid; place-items:center; font-size:1.6rem;
}

/* Reviews */
.review-card{
  background:rgba(21,19,32,0.55) !important;
  backdrop-filter:blur(12px);
  border:1px solid var(--border) !important;
  border-radius:20px !important;
  padding:32px !important;
  transition:transform .3s, border-color .3s, box-shadow .3s;
}
.review-card:hover{ transform:translateY(-4px); border-color:var(--accent); box-shadow:0 20px 40px -15px rgba(139,92,246,0.35); }
.review-card blockquote,.review__body{
  font-family:var(--font-display) !important;
  font-size:1.2rem !important; font-weight:500 !important;
  color:var(--foreground) !important; line-height:1.5;
}

/* CTA banner */
.cta-banner{
  background:var(--grad) !important;
  color:#fff !important;
  border-radius:28px !important;
  position:relative; overflow:hidden;
  box-shadow:0 30px 80px -20px rgba(139,92,246,0.6);
}
.cta-banner::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(60% 80% at 80% 20%, rgba(255,255,255,0.25), transparent 60%);
  pointer-events:none;
}
.cta-banner h2{ color:#fff !important; }
.cta-banner .button--primary{ background:#fff !important; color:var(--accent) !important; box-shadow:0 14px 30px -8px rgba(0,0,0,0.3); }
.cta-banner .button--primary:hover{ background:var(--background) !important; color:#fff !important; }

/* Footer */
.site-footer{
  background:linear-gradient(180deg, transparent, rgba(139,92,246,0.06)) !important;
  border-top:1px solid var(--border);
  color:var(--foreground) !important;
  padding:80px 0 30px !important;
}
.site-footer a{ color:var(--muted) !important; transition:color .25s; }
.site-footer a:hover{ color:var(--accent-strong) !important; }
.site-footer .brand__wordmark{ background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.site-footer__bottom{ border-top:1px solid var(--border); padding-top:24px; margin-top:48px; color:var(--muted); font-size:12px; }

/* Product page */
.product__title{ font-family:var(--font-display) !important; font-size:clamp(2rem,4vw,3.4rem) !important; font-weight:800 !important; }
.product__price{ font-family:var(--font-body) !important; font-size:1.25rem !important; font-weight:600; color:var(--accent-strong) !important; }
.product-form__buttons .button{ width:100%; }

/* Cart drawer */
.cart-drawer__panel{ background:var(--background) !important; color:var(--foreground); border-left:1px solid var(--border); }
.cart-drawer__header{ border-bottom:1px solid var(--border) !important; }
.cart-drawer__header h2{ font-family:var(--font-display); font-weight:700; color:var(--foreground); }
.cart-drawer__item-meta,.cart-drawer__item-remove{ color:var(--muted) !important; }

/* Cart page */
.cart-item{ border-bottom:1px solid var(--border) !important; }
.cart-summary__row{ border-bottom:1px solid var(--border) !important; color:var(--foreground); }

/* Page templates */
.page__title,.collection__title,.template-page h1{
  font-family:var(--font-display) !important; font-weight:800 !important;
  font-size:clamp(2.8rem,6vw,5.5rem) !important; letter-spacing:-0.04em;
  background:var(--grad); -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; padding-bottom:.1em;
}

/* Form inputs */
input[type=text],input[type=email],input[type=number],input[type=search],textarea,select{
  background:rgba(255,255,255,0.04) !important;
  border:1px solid var(--border) !important;
  color:var(--foreground) !important;
  border-radius:12px !important;
  padding:12px 16px !important;
  transition:border-color .25s, box-shadow .25s;
}
input:focus,textarea:focus,select:focus{
  outline:none !important;
  border-color:var(--accent) !important;
  box-shadow:0 0 0 4px rgba(139,92,246,0.18) !important;
}

/* Scroll-in animations */
@keyframes fadeUp{ from{ opacity:0; transform:translateY(24px); } to{ opacity:1; transform:translateY(0); } }
@keyframes pulse{ 0%,100%{ opacity:1; } 50%{ opacity:.4; } }
@keyframes shimmer{ 0%{ background-position:-200% 0; } 100%{ background-position:200% 0; } }
.product-card,.review-card,.promise,.section-head,.collection-grid > *{
  animation:fadeUp .8s ease both;
}
.collection-grid > *:nth-child(1){ animation-delay:.05s; }
.collection-grid > *:nth-child(2){ animation-delay:.10s; }
.collection-grid > *:nth-child(3){ animation-delay:.15s; }
.collection-grid > *:nth-child(4){ animation-delay:.20s; }
.collection-grid > *:nth-child(5){ animation-delay:.25s; }
.collection-grid > *:nth-child(6){ animation-delay:.30s; }
.collection-grid > *:nth-child(7){ animation-delay:.35s; }
.collection-grid > *:nth-child(8){ animation-delay:.40s; }

/* Shimmer skeleton */
.skeleton,.is-loading{
  background:linear-gradient(90deg, var(--surface) 0%, var(--surface-strong) 50%, var(--surface) 100%);
  background-size:200% 100%;
  animation:shimmer 1.6s infinite;
}

/* Section heads */
.section-head,.collection-head{
  display:grid; grid-template-columns:1fr auto; gap:24px;
  align-items:end; margin-bottom:56px;
  padding-bottom:24px; border-bottom:1px solid var(--border);
}

/* Mobile */
@media (max-width:900px){
  .hero{ padding:48px 0 80px !important; }
  .hero__grid{ grid-template-columns:1fr !important; gap:40px !important; }
  .section{ padding:72px 0; }
  .section-head{ grid-template-columns:1fr; }
  .promise-band .promise + .promise{ border-left:0 !important; border-top:1px solid var(--border) !important; }
  .product-card__title{ font-size:1rem !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation:none !important; transition:none !important; }
}

/* ============================================================
   NEATCORDS FULL STORE PREMIUM MINIMAL SYSTEM + PDP STACK
   Clear readable colors across every page — not plain/basic.
   ============================================================ */
:root {
  --background: #f7f5f0;
  --surface: #ffffff;
  --surface-strong: #ece8df;
  --foreground: #171717;
  --muted: #5f5f5f;
  --border: rgba(23,23,23,.10);
  --border-strong: rgba(23,23,23,.18);
  --accent: #0f766e;
  --accent-strong: #115e59;
  --ink: #111111;
  --shadow: 0 26px 80px rgba(17,17,17,.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}
body { background: radial-gradient(circle at 20% 0%, rgba(15,118,110,.08), transparent 32%), var(--background); color: var(--foreground); }
p, li, .body, .body-lg, .richtext, .faq-answer, .product-card__meta { color: var(--muted); }
h1,h2,h3,h4,.heading-xl,.heading-lg,.heading-md,.product-card__title { color: var(--foreground); }
.site-announcement,.marquee,.footer,.review-band { background:#111; color:#fff; }
.site-header { background: rgba(247,245,240,.88); box-shadow: 0 1px 0 rgba(17,17,17,.06); }
.button--primary,.shopify-payment-button__button--unbranded { background:#111; color:#fff; box-shadow: 0 12px 30px rgba(17,17,17,.14); }
.button--primary:hover,.shopify-payment-button__button--unbranded:hover { background: var(--accent); }
.button--secondary,.product-card,.contact-card,.empty-state,.review-card,.icon-card,.product-detail-block { background: rgba(255,255,255,.78); }
.product-card__media,.hero__media,.product-gallery__main { background: linear-gradient(145deg,#fff,#e9e5dc); }
.badge,.pill { background: rgba(15,118,110,.10); color: var(--accent-strong); border: 1px solid rgba(15,118,110,.16); }
.eyebrow,.stars,.link-inline:hover,.footer a:hover { color: var(--accent); }

.product-page { overflow: clip; }
.product-back { display:inline-block; margin-bottom: 18px; color: var(--muted); }
.product-layout--premium { grid-template-columns: minmax(0,1.08fr) minmax(360px,500px); gap: clamp(28px,4vw,58px); align-items:start; }
.product-gallery--premium { min-width: 0; }
.premium-frame { position:relative; border:1px solid var(--border); box-shadow: var(--shadow); }
.gallery-badge { position:absolute; left:18px; bottom:18px; padding:9px 12px; border-radius:999px; background:rgba(255,255,255,.82); backdrop-filter: blur(14px); border:1px solid rgba(17,17,17,.08); font-size:.78rem; font-weight:800; color:#222; }
.product-panel--sticky { background: rgba(255,255,255,.86); border:1px solid var(--border); border-radius: 28px; padding: 26px; box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.product-panel__topline { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:18px; flex-wrap:wrap; }
.pill { display:inline-flex; align-items:center; padding:7px 11px; border-radius:999px; font-size:.76rem; font-weight:800; }
.product-title { margin-top: 10px; font-size: clamp(1.75rem,3vw,2.65rem); line-height:1.05; }
.price-row__current { color:#111; letter-spacing:-.03em; }
.short-benefits { display:grid; gap:9px; margin:20px 0 4px; color:#333; font-size:.94rem; }
.option-group__label { color:#222; }
.option-group__label span { color:var(--muted); font-weight:600; margin-left:6px; }
.option-button { background:#fff; box-shadow: inset 0 0 0 1px transparent; }
.option-button:hover { border-color:#111; }
.option-button.is-active { background:#111; border-color:#111; color:#fff; }
.bundle-box { margin-top: 24px; border:1px solid var(--border-strong); background: linear-gradient(180deg,#fff,#f7f5f0); border-radius:22px; padding:14px; display:grid; gap:10px; }
.bundle-box__head { display:flex; justify-content:space-between; align-items:center; padding:2px 4px 8px; }
.bundle-box__head span { font-size:.75rem; font-weight:800; color: var(--accent); text-transform:uppercase; letter-spacing:.08em; }
.bundle-box label { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:10px; padding:13px 12px; border:1px solid var(--border); border-radius:16px; background:#fff; cursor:pointer; color:#222; }
.bundle-box label:has(input:checked) { border-color: var(--accent); box-shadow:0 0 0 3px rgba(15,118,110,.10); }
.bundle-box b { font-size:.86rem; color:#111; }
.trust-row--cards { grid-template-columns: repeat(3,1fr); gap:10px; border-top:0; padding-top:0; }
.trust-row--cards .trust-row__item { background:#f7f5f0; border:1px solid var(--border); border-radius:16px; padding:14px 10px; display:grid; gap:4px; color:#333; }
.trust-row--cards .trust-row__item span { font-size:1.15rem; }
.trust-row--cards .trust-row__item strong { font-size:.82rem; color:#111; }
.trust-row--cards .trust-row__item small { color:var(--muted); line-height:1.35; }
.product-accordion { border-top:1px solid var(--border); padding:16px 0; }
.product-accordion:last-child { border-bottom:1px solid var(--border); }
.product-accordion summary { cursor:pointer; font-weight:800; color:#111; }
.product-accordion p { margin:10px 0 0; line-height:1.65; color:var(--muted); }
.product-content-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap:24px; margin: 22px 0; }
.product-detail-block { border:1px solid var(--border); border-radius:28px; padding: clamp(22px,3vw,34px); box-shadow: 0 16px 48px rgba(17,17,17,.05); }
.product-description-block .heading-md { margin-bottom:16px; }
.benefit-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:14px; }
.benefit-grid--small { grid-template-columns:1fr; }
.benefit-grid div { border:1px solid var(--border); border-radius:18px; padding:16px; background:#fff; display:grid; gap:7px; }
.benefit-grid strong { color:#111; }
.benefit-grid span { color:var(--muted); line-height:1.55; }
.perfect-for-list { display:flex; flex-wrap:wrap; gap:10px; }
.perfect-for-list span { padding:10px 14px; border-radius:999px; background:#fff; border:1px solid var(--border); color:#222; font-weight:700; font-size:.92rem; }
.ugc-grid { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:14px; }
.ugc-card { aspect-ratio: 4/5; border-radius:22px; overflow:hidden; background:linear-gradient(145deg,#fff,#ebe7dd); border:1px solid var(--border); display:grid; place-items:center; color:var(--muted); font-weight:800; }
.ugc-card img { width:100%; height:100%; object-fit:cover; }
.product-review-grid .review-card { background:#fff; color:#111; border-color:var(--border); }
.product-review-grid .review-card p { color:var(--muted); line-height:1.65; }
.product-review-grid .review-card small { color:var(--accent-strong); font-weight:800; }
.related-products { margin-top:22px; padding-top:34px; border-top:0; }
[data-recently-viewed-grid] .product-card { min-width:0; }
.desktop-only-block { margin-top:20px; }
.product-image-placeholder { aspect-ratio:1/1; display:grid; place-items:center; padding:30px; text-align:center; color:var(--muted); font-weight:800; }

@media (max-width:1100px){
  .product-layout--premium,.product-content-grid { grid-template-columns:1fr; }
  .product-panel--sticky { position:static; }
}
@media (max-width:860px){
  .product-panel--sticky { padding:20px; border-radius:22px; }
  .trust-row--cards,.benefit-grid,.ugc-grid { grid-template-columns:1fr 1fr; }
  .desktop-only-block { display:none; }
}
@media (max-width:640px){
  .product-layout--premium { padding-top:20px; }
  .gallery-badge { left:12px; bottom:12px; font-size:.72rem; }
  .trust-row--cards,.benefit-grid,.ugc-grid { grid-template-columns:1fr; }
  .product-detail-block { border-radius:22px; }
  .product-panel__topline { display:grid; }
}

/* ============================================================
   FINAL READABILITY PATCH — selection + catalog/collection pages
   Fixes invisible selected text, white category links, oversized headings,
   and excessive empty spacing on collection pages.
   ============================================================ */
::selection {
  background: #0f766e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
::-moz-selection {
  background: #0f766e !important;
  color: #ffffff !important;
}

/* Keep selected text readable even when gradient/accent text is selected */
.accent::selection,
.heading-xl::selection,
.heading-lg::selection,
.heading-md::selection,
h1::selection,
h2::selection,
h3::selection,
a::selection,
span::selection,
p::selection {
  background: #0f766e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Global readable light minimal system */
body,
.template-collection,
.template-index,
.template-product,
.template-page {
  background: radial-gradient(circle at 70% 100%, rgba(15,118,110,.06), transparent 34%), #f7f5f0 !important;
  color: #171717 !important;
}

/* Fix catalog huge white/empty feel */
.page-hero {
  background: #ebe6dc !important;
  border-bottom: 1px solid rgba(23,23,23,.08) !important;
  padding: clamp(52px, 7vw, 92px) 0 clamp(44px, 5vw, 72px) !important;
}
.page-hero .heading-lg,
.collection__title,
.page__title,
.template-page h1 {
  font-size: clamp(2.5rem, 6vw, 5.6rem) !important;
  line-height: .98 !important;
  letter-spacing: -0.055em !important;
  color: #111111 !important;
  background: none !important;
  -webkit-text-fill-color: #111111 !important;
}
.page-hero .body-lg,
.page-hero p {
  color: #55524c !important;
  font-size: clamp(1rem, 1.4vw, 1.25rem) !important;
  line-height: 1.55 !important;
}

/* Pull catalog filters/products closer and make category pills visible */
.template-collection .section,
body:has(.shop-grid) .section {
  padding-top: 34px !important;
  padding-bottom: 54px !important;
}
.template-collection .section + .section,
body:has(.shop-grid) .section + .section {
  padding-top: 10px !important;
}
body:has(.shop-grid) .section .container > div[style*="flex-wrap"] {
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(23,23,23,.10) !important;
  border-radius: 999px !important;
  padding: 10px 12px !important;
  margin-bottom: 16px !important;
  gap: 8px !important;
  box-shadow: 0 16px 40px rgba(17,17,17,.05) !important;
}
body:has(.shop-grid) .section .container > div[style*="flex-wrap"] a {
  color: #171717 !important;
  background: #ffffff !important;
  border: 1px solid rgba(23,23,23,.10) !important;
  border-radius: 999px !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
  opacity: 1 !important;
}
body:has(.shop-grid) .section .container > div[style*="flex-wrap"] a:hover {
  color: #ffffff !important;
  background: #111111 !important;
  border-color: #111111 !important;
}
body:has(.shop-grid) .section .container > div[style*="flex-wrap"] span {
  color: rgba(23,23,23,.35) !important;
}

/* Product grid/card readability */
.shop-grid,
.collection-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
  gap: 22px !important;
}
.product-card {
  background: rgba(255,255,255,.88) !important;
  color: #171717 !important;
  border: 1px solid rgba(23,23,23,.10) !important;
  box-shadow: 0 18px 52px rgba(17,17,17,.06) !important;
}
.product-card__title,
.product-card h2,
.product-card h3 {
  color: #171717 !important;
  -webkit-text-fill-color: #171717 !important;
}
.product-card__meta,
.product-card__price,
.price,
.price__current {
  color: #0f766e !important;
  -webkit-text-fill-color: #0f766e !important;
}
.price__compare {
  color: #8a857c !important;
  text-decoration: line-through !important;
}

/* Keep hero premium but not absurdly huge */
.hero .heading-xl,
.heading-xl {
  font-size: clamp(3rem, 7.3vw, 7.8rem) !important;
  line-height: .94 !important;
}
.hero .body-lg {
  color: #5b5750 !important;
  max-width: 620px !important;
}

@media (max-width: 760px) {
  .page-hero { padding: 42px 0 34px !important; }
  .page-hero .heading-lg { font-size: clamp(2.25rem, 12vw, 3.7rem) !important; }
  body:has(.shop-grid) .section .container > div[style*="flex-wrap"] { border-radius: 22px !important; }
  .hero .heading-xl, .heading-xl { font-size: clamp(3rem, 14vw, 5.1rem) !important; }
}

/* ============================================================
   NEATCORDS FINAL — clean premium Shopify layout, readable everywhere
   Matches modern light ecommerce reference: white/off-white base,
   black typography, violet/blue gradient actions, dark product panels.
   ============================================================ */
:root {
  --background: #fbfaf7 !important;
  --surface: #ffffff !important;
  --surface-strong: #f3f1ec !important;
  --foreground: #101014 !important;
  --muted: #5f5f68 !important;
  --border: rgba(16, 16, 20, 0.10) !important;
  --border-strong: rgba(16, 16, 20, 0.18) !important;
  --accent: #6847ff !important;
  --accent-2: #009cf5 !important;
  --accent-strong: #5a35f5 !important;
  --ink: #101014 !important;
  --grad: linear-gradient(135deg, #7c3cff 0%, #0ba7ff 100%) !important;
  --grad-soft: linear-gradient(135deg, rgba(124,60,255,.10), rgba(11,167,255,.08)) !important;
  --shadow: 0 28px 80px rgba(20, 18, 35, .10) !important;
  --container: 1420px !important;
  --font-stack: Inter, "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

html, body {
  background: radial-gradient(circle at 78% 96%, rgba(124,60,255,.09), transparent 28%), #fbfaf7 !important;
  color: #101014 !important;
  font-family: var(--font-stack) !important;
}
body::before { display: none !important; }

/* Selection fix — applies to all text including hero overlay links */
*::selection,
.hero__card *::selection,
.hero__visual *::selection,
.product-card *::selection,
.page-hero *::selection,
a::selection,
span::selection,
strong::selection,
small::selection,
h1::selection,
h2::selection,
h3::selection,
p::selection {
  background: #00a3ff !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: none !important;
}
*::-moz-selection {
  background: #00a3ff !important;
  color: #ffffff !important;
  text-shadow: none !important;
}

.container { width: min(calc(100% - 48px), var(--container)) !important; }
.section { padding: 86px 0 !important; }

/* Header / announcement like reference */
.site-announcement,
.announcement-bar {
  background: #111111 !important;
  color: #ffffff !important;
  border: 0 !important;
  font-size: 13px !important;
  letter-spacing: .02em !important;
  padding: 0 !important;
}
.site-announcement__inner { min-height: 44px !important; }
.site-header {
  background: rgba(255,255,255,.92) !important;
  color: #101014 !important;
  border-bottom: 1px solid rgba(16,16,20,.08) !important;
  backdrop-filter: blur(18px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
  padding: 0 !important;
}
.site-header__inner { min-height: 86px !important; }
.brand__mark {
  background: var(--grad) !important;
  color: #fff !important;
  border-radius: 14px !important;
}
.brand__wordmark {
  color: #101014 !important;
  background: none !important;
  -webkit-text-fill-color: #101014 !important;
  font-size: 1.45rem !important;
  font-weight: 900 !important;
  letter-spacing: -.04em !important;
}
.site-nav a,
.site-header a {
  color: #181820 !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}
.site-nav a::after { background: var(--grad) !important; }
.site-header__actions .button,
.site-header__toggle { background: #fff !important; color:#101014 !important; border:1px solid rgba(16,16,20,.12) !important; }

/* Typography */
h1,h2,h3,h4,.heading-xl,.heading-lg,.heading-md {
  color: #101014 !important;
  -webkit-text-fill-color: #101014 !important;
  background: none !important;
  font-family: var(--font-stack) !important;
  font-weight: 900 !important;
  letter-spacing: -.065em !important;
}
.heading-xl { font-size: clamp(4.4rem, 8.1vw, 8.6rem) !important; line-height: .92 !important; }
.heading-lg { font-size: clamp(3rem, 6vw, 6rem) !important; line-height: .96 !important; }
.heading-md { font-size: clamp(1.8rem, 3.5vw, 3rem) !important; line-height: 1.02 !important; }
.body-lg,.body,.richtext { color: #55555f !important; }
.eyebrow,.kicker {
  color: #0f766e !important;
  -webkit-text-fill-color: #0f766e !important;
  background: none !important;
  font-weight: 900 !important;
  letter-spacing: .26em !important;
  font-size: 12px !important;
}
.accent { color:#101014 !important; background:none !important; -webkit-text-fill-color:#101014 !important; }

/* Buttons */
.button,
.shopify-payment-button__button--unbranded {
  border-radius: 999px !important;
  min-height: 58px !important;
  padding: 0 34px !important;
  font-weight: 900 !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
}
.button--primary,
.shopify-payment-button__button--unbranded {
  background: var(--grad) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 18px 42px rgba(91,70,255,.25) !important;
}
.button--secondary {
  background: #ffffff !important;
  color: #101014 !important;
  -webkit-text-fill-color: #101014 !important;
  border: 1px solid rgba(16,16,20,.20) !important;
  box-shadow: none !important;
}
.button:hover { transform: translateY(-2px) !important; }

/* Homepage hero — split premium layout like screenshot */
.hero {
  background: #fbfaf7 !important;
  border-bottom: 1px solid rgba(16,16,20,.08) !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.hero__grid {
  grid-template-columns: .82fr 1.18fr !important;
  gap: clamp(38px, 5vw, 82px) !important;
  align-items: center !important;
  min-height: calc(100vh - 130px) !important;
  padding: clamp(42px, 5vw, 72px) 0 !important;
}
.hero__chip {
  background: var(--grad) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 12px 28px rgba(91,70,255,.22) !important;
  margin-bottom: 28px !important;
}
.hero__chip-dot { background:#fff !important; box-shadow:0 0 0 5px rgba(255,255,255,.22) !important; }
.hero__content .body-lg {
  max-width: 610px !important;
  margin-top: 28px !important;
  font-size: clamp(1.06rem, 1.6vw, 1.35rem) !important;
  line-height: 1.62 !important;
  color: #5b5b63 !important;
}
.hero__actions { margin-top: 34px !important; gap: 16px !important; }
.hero__trust {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 42px !important;
  padding-top: 28px !important;
  border-top: 1px solid rgba(16,16,20,.10) !important;
}
.hero__trust span {
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid rgba(16,16,20,.10) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 8px 18px !important;
  justify-content: center !important;
  color: #1c1c22 !important;
  -webkit-text-fill-color: #1c1c22 !important;
  font-weight: 800 !important;
}
.hero__trust span:first-child { padding-left: 0 !important; }
.hero__trust span:last-child { border-right: 0 !important; }

.hero__visual {
  aspect-ratio: 1.18 / 1 !important;
  border-radius: 28px !important;
  background: #08080c !important;
  border: 1px solid rgba(16,16,20,.16) !important;
  box-shadow: 0 34px 90px rgba(101,65,255,.17), 0 0 0 9px rgba(124,60,255,.05) !important;
  transform: none !important;
}
.hero__visual::before { display: none !important; }
.hero__visual img { object-fit: cover !important; }
.hero__card {
  left: 22px !important;
  right: 22px !important;
  bottom: 22px !important;
  background: rgba(18,18,28,.88) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.34) !important;
  padding: 16px 20px !important;
  border-radius: 20px !important;
}
.hero__card small {
  color: #00d9c8 !important;
  -webkit-text-fill-color: #00d9c8 !important;
  font-weight: 900 !important;
}
.hero__card strong {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: clamp(1rem, 1.4vw, 1.28rem) !important;
  letter-spacing: -.02em !important;
}
.hero__card .link-inline,
.hero__card a {
  background: rgba(255,255,255,.10) !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  border-radius: 14px !important;
  padding: 12px 16px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

/* Feature band under hero */
.promise-band,
.icon-grid,
.trust-strip { background: #ffffff !important; }
.promise-band { border-block: 1px solid rgba(16,16,20,.08) !important; }
.icon-card,
.promise,
.trust-row__item {
  background: #ffffff !important;
  color: #101014 !important;
  border-color: rgba(16,16,20,.10) !important;
}
.icon-mark,.promise__icon {
  background: var(--grad-soft) !important;
  color: #6847ff !important;
}

/* Collection/catalog pages */
.page-hero {
  background: #ebe7df !important;
  border-bottom: 1px solid rgba(16,16,20,.08) !important;
  padding: clamp(52px, 7vw, 100px) 0 clamp(38px, 5vw, 68px) !important;
}
.page-hero__inner { max-width: 1180px !important; }
.page-hero .heading-lg,
.collection__title,
.page__title,
.template-page h1 {
  color: #101014 !important;
  -webkit-text-fill-color: #101014 !important;
  background: none !important;
  max-width: 1180px !important;
}
.page-hero .body-lg, .page-hero p { color: #5c5a55 !important; }
.template-collection .section { padding-top: 34px !important; }
body:has(.shop-grid) .section .container > div[style*="flex-wrap"] {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 0 26px !important;
  gap: 10px !important;
}
body:has(.shop-grid) .section .container > div[style*="flex-wrap"] a {
  color: #101014 !important;
  -webkit-text-fill-color: #101014 !important;
  background: #fff !important;
  border: 1px solid rgba(16,16,20,.12) !important;
  border-radius: 999px !important;
  padding: 10px 14px !important;
  font-weight: 800 !important;
}
body:has(.shop-grid) .section .container > div[style*="flex-wrap"] a:hover {
  background: #101014 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
body:has(.shop-grid) .section .container > div[style*="flex-wrap"] span { color: rgba(16,16,20,.28) !important; }

/* Product/card grids */
.product-grid,.shop-grid,.collection-grid {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)) !important;
  gap: 24px !important;
}
.product-card {
  background: #ffffff !important;
  border: 1px solid rgba(16,16,20,.10) !important;
  border-radius: 24px !important;
  padding: 14px !important;
  color: #101014 !important;
  box-shadow: 0 20px 55px rgba(20,18,35,.07) !important;
}
.product-card::before { display: none !important; }
.product-card__media { aspect-ratio: 1 / 1 !important; border-radius: 18px !important; background: #f1eee7 !important; }
.product-card__media::after { background: var(--grad) !important; color: #fff !important; }
.product-card__title,
.product-card h2,
.product-card h3 {
  color: #101014 !important;
  -webkit-text-fill-color: #101014 !important;
  font-size: 1.04rem !important;
  margin: 16px 8px 7px !important;
  line-height: 1.3 !important;
}
.product-card__meta,
.price,
.price__current,
.product-card__price {
  color: #6847ff !important;
  -webkit-text-fill-color: #6847ff !important;
  margin-inline: 8px !important;
  font-weight: 900 !important;
}

/* Product page readable premium */
.product-page { background: #fbfaf7 !important; }
.product-panel--sticky,
.product-detail-block,
.contact-card,
.empty-state {
  background: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(16,16,20,.10) !important;
  color: #101014 !important;
  box-shadow: 0 22px 70px rgba(20,18,35,.08) !important;
}
.product-panel--sticky *:not(.button):not(.badge):not(.stars) {
  color: inherit;
  -webkit-text-fill-color: initial;
}
.price-row__current { color:#6847ff !important; -webkit-text-fill-color:#6847ff !important; }
.bundle-box,.benefit-grid div,.perfect-for-list span,.product-review-grid .review-card { background: #fff !important; color:#101014 !important; }

/* Footer */
.footer,.site-footer {
  background: #101014 !important;
  color: #ffffff !important;
  border-top: 0 !important;
}
.footer a,.site-footer a { color: rgba(255,255,255,.72) !important; }
.footer a:hover,.site-footer a:hover { color:#fff !important; }
.footer h3,.site-footer h3 { color: rgba(255,255,255,.55) !important; }
.footer__brand p,.footer__sub { color: rgba(255,255,255,.62) !important; }

/* Forms, FAQ, pages */
.field input,.field textarea,input,textarea,select {
  background: #ffffff !important;
  color: #101014 !important;
  border: 1px solid rgba(16,16,20,.14) !important;
}
.faq-item,.faq-list { border-color: rgba(16,16,20,.10) !important; }
.faq-question { color:#101014 !important; }
.faq-answer { color:#55555f !important; }
.review-band { background:#101014 !important; color:#fff !important; }
.review-band .heading-lg,.review-band h2,.review-band h3 { color:#fff !important; -webkit-text-fill-color:#fff !important; }
.review-band .review-card { background: rgba(255,255,255,.06) !important; border-color: rgba(255,255,255,.12) !important; color:#fff !important; }
.review-band p,.review-band small { color:rgba(255,255,255,.68) !important; }
.cta-banner { background: var(--grad) !important; color:#fff !important; }
.cta-banner h2,.cta-banner p { color:#fff !important; -webkit-text-fill-color:#fff !important; }

/* Mobile */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr !important; min-height: auto !important; }
  .hero__visual { aspect-ratio: 16 / 11 !important; }
  .hero__trust { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)) !important; }
  .site-header__inner { min-height: 72px !important; }
  .heading-xl { font-size: clamp(3.4rem, 17vw, 5.2rem) !important; }
  .heading-lg { font-size: clamp(2.4rem, 12vw, 4rem) !important; }
  .hero__grid { padding: 34px 0 54px !important; gap: 30px !important; }
  .hero__visual { border-radius: 22px !important; aspect-ratio: 1 / 1 !important; }
  .hero__card { position: static !important; margin: 12px !important; }
  .hero__trust { grid-template-columns: 1fr !important; }
  .hero__trust span { border-right: 0 !important; justify-content: flex-start !important; padding-left: 0 !important; }
  .product-grid,.shop-grid,.collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 14px !important; }
  .product-card { padding: 10px !important; border-radius: 18px !important; }
  .product-card__title { font-size: .92rem !important; }
}

/* ============================================================
   NEATCORDS IMPORT FIX — clean mockup product page + readable UI
   Fixes invisible CTA text, black variant box, selection text, and gives
   the product page the clean gallery-left / buy-box-right layout.
   ============================================================ */
:root{
  --background:#fbfaf7 !important;
  --surface:#ffffff !important;
  --surface-strong:#f4f1ea !important;
  --foreground:#101014 !important;
  --muted:#5b5b63 !important;
  --border:rgba(16,16,20,.10) !important;
  --border-strong:rgba(16,16,20,.18) !important;
  --accent:#6d5cff !important;
  --accent-strong:#5b46ff !important;
  --accent-2:#0ba7ff !important;
  --ink:#111111 !important;
  --grad:linear-gradient(135deg,#7c3cff 0%,#0ba7ff 100%) !important;
  --grad-soft:linear-gradient(135deg,rgba(124,60,255,.12),rgba(11,167,255,.08)) !important;
}

::selection{background:#6d5cff !important;color:#fff !important;-webkit-text-fill-color:#fff !important;}
::-moz-selection{background:#6d5cff !important;color:#fff !important;}

html,body{background:#fbfaf7 !important;color:#101014 !important;}
p,li,.body,.body-lg,.richtext,.product-card__meta{color:#5b5b63 !important;}
h1,h2,h3,h4,h5,.heading-xl,.heading-lg,.heading-md,.product-title{color:#101014 !important;-webkit-text-fill-color:#101014 !important;}
.site-announcement{background:#111 !important;color:#fff !important;-webkit-text-fill-color:#fff !important;}
.site-announcement *{color:#fff !important;-webkit-text-fill-color:#fff !important;}
.site-header{background:rgba(255,255,255,.92) !important;border-bottom:1px solid rgba(16,16,20,.10) !important;box-shadow:0 8px 30px rgba(20,18,35,.04) !important;}
.site-nav a,.site-header a{color:#101014 !important;-webkit-text-fill-color:#101014 !important;font-weight:800 !important;}
.brand__mark{background:var(--grad) !important;color:#fff !important;-webkit-text-fill-color:#fff !important;border-radius:14px !important;}
.brand__wordmark{color:#101014 !important;-webkit-text-fill-color:#101014 !important;}

.button,.button--primary,.button--secondary,.shopify-payment-button__button,.shopify-payment-button__button--unbranded{
  border-radius:999px !important;
  min-height:58px !important;
  font-weight:900 !important;
  letter-spacing:.08em !important;
  text-transform:uppercase !important;
}
.button--primary,.product-panel__actions .button--primary{
  background:var(--grad) !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  border:0 !important;
  box-shadow:0 18px 42px rgba(91,70,255,.24) !important;
}
.button--secondary{background:#fff !important;color:#101014 !important;-webkit-text-fill-color:#101014 !important;border:1px solid rgba(16,16,20,.18) !important;}
.shopify-payment-button__button,
.shopify-payment-button__button--unbranded,
.shopify-payment-button__button--branded,
shopify-accelerated-checkout,
shopify-accelerated-checkout-cart{
  background:#050507 !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  border-radius:16px !important;
  overflow:hidden !important;
}

/* Product page layout like the reference mockup */
.product-page.section--compact{padding:42px 0 72px !important;background:#fbfaf7 !important;}
.product-back{display:none !important;}
.product-layout.product-layout--premium{
  display:grid !important;
  grid-template-columns:minmax(0,1.35fr) minmax(390px,.85fr) !important;
  gap:clamp(26px,3vw,44px) !important;
  align-items:start !important;
}
.product-gallery.product-gallery--premium{
  display:grid !important;
  grid-template-columns:78px minmax(0,1fr) !important;
  grid-template-areas:'thumbs main' 'trust trust' !important;
  gap:18px !important;
  align-items:start !important;
}
.product-gallery__main.premium-frame{
  grid-area:main !important;
  aspect-ratio:1/1 !important;
  border-radius:24px !important;
  border:1px solid rgba(16,16,20,.10) !important;
  background:#fff !important;
  box-shadow:0 22px 70px rgba(20,18,35,.07) !important;
  overflow:hidden !important;
}
.product-gallery__main img{width:100% !important;height:100% !important;object-fit:contain !important;background:#fff !important;border-radius:0 !important;}
.product-gallery__thumbs{
  grid-area:thumbs !important;
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:12px !important;
  order:0 !important;
}
.product-thumb{
  width:78px !important;
  height:78px !important;
  border-radius:14px !important;
  border:1px solid rgba(16,16,20,.12) !important;
  background:#fff !important;
  padding:0 !important;
  overflow:hidden !important;
  box-shadow:none !important;
}
.product-thumb.is-active{border-color:#6d5cff !important;box-shadow:0 0 0 2px rgba(109,92,255,.18) !important;}
.product-thumb img{width:100% !important;height:100% !important;object-fit:cover !important;border-radius:0 !important;}
.gallery-badge{background:rgba(255,255,255,.92) !important;color:#101014 !important;-webkit-text-fill-color:#101014 !important;border:1px solid rgba(16,16,20,.10) !important;}

.product-panel.product-panel--sticky{
  position:sticky !important;
  top:110px !important;
  background:#fff !important;
  border:1px solid rgba(16,16,20,.10) !important;
  border-radius:26px !important;
  padding:28px !important;
  box-shadow:0 22px 70px rgba(20,18,35,.08) !important;
  color:#101014 !important;
}
.product-panel *{box-sizing:border-box;}
.product-panel :not(.button):not(.stars):not(.badge):not(.pill){color:#101014;-webkit-text-fill-color:initial;}
.product-panel__topline{display:flex !important;justify-content:space-between !important;align-items:center !important;margin-bottom:18px !important;gap:14px !important;}
.pill{background:#dcf5ec !important;color:#14532d !important;-webkit-text-fill-color:#14532d !important;border:1px solid #bfe8d8 !important;}
.rating-row{display:flex !important;gap:10px !important;align-items:center !important;color:#101014 !important;-webkit-text-fill-color:#101014 !important;}
.stars{color:#6d5cff !important;-webkit-text-fill-color:#6d5cff !important;letter-spacing:.12em !important;}
.kicker,.eyebrow{color:#6d5cff !important;-webkit-text-fill-color:#6d5cff !important;letter-spacing:.24em !important;font-weight:900 !important;}
.product-title{font-size:clamp(2.1rem,3.2vw,3.25rem) !important;line-height:1.02 !important;letter-spacing:-.055em !important;margin:10px 0 14px !important;}
.price-row{display:flex !important;align-items:center !important;gap:14px !important;flex-wrap:wrap !important;margin:18px 0 !important;}
.price-row__current{color:#6d5cff !important;-webkit-text-fill-color:#6d5cff !important;font-size:clamp(1.8rem,2.2vw,2.4rem) !important;font-weight:950 !important;letter-spacing:-.04em !important;}
.price__compare{color:#8b8b92 !important;-webkit-text-fill-color:#8b8b92 !important;text-decoration:line-through !important;}
.badge{background:#eeeaff !important;color:#6d5cff !important;-webkit-text-fill-color:#6d5cff !important;border:0 !important;border-radius:999px !important;padding:7px 12px !important;font-size:12px !important;font-weight:900 !important;text-transform:uppercase !important;}
.short-benefits{display:grid !important;gap:8px !important;margin:18px 0 22px !important;}
.short-benefits span{color:#101014 !important;-webkit-text-fill-color:#101014 !important;font-size:1rem !important;}

/* Fix black variant box: visible labels, clean pill buttons */
.option-group{margin:22px 0 !important;}
.option-group__label{display:flex !important;gap:8px !important;align-items:center !important;color:#101014 !important;-webkit-text-fill-color:#101014 !important;font-weight:900 !important;margin-bottom:10px !important;}
.option-group__label span{color:#101014 !important;-webkit-text-fill-color:#101014 !important;font-weight:800 !important;text-transform:capitalize !important;}
.option-values{display:flex !important;flex-wrap:wrap !important;gap:10px !important;}
.option-button,
.product-form input + label,
.variant-picker label,
.product-form__input label{
  min-width:86px !important;
  min-height:48px !important;
  padding:0 22px !important;
  border-radius:12px !important;
  border:1px solid rgba(16,16,20,.18) !important;
  background:#ffffff !important;
  color:#101014 !important;
  -webkit-text-fill-color:#101014 !important;
  font-weight:850 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  box-shadow:none !important;
}
.option-button.is-active,
.option-button[aria-pressed='true'],
.product-form input:checked + label,
.variant-picker input:checked + label{
  background:#fff !important;
  color:#6d5cff !important;
  -webkit-text-fill-color:#6d5cff !important;
  border-color:#6d5cff !important;
  box-shadow:0 0 0 3px rgba(109,92,255,.12) !important;
}

.bundle-box{background:#fff !important;border:1px solid rgba(16,16,20,.12) !important;border-radius:18px !important;padding:14px !important;margin-top:20px !important;box-shadow:none !important;}
.bundle-box__head strong{color:#101014 !important;-webkit-text-fill-color:#101014 !important;}
.bundle-box__head span{color:#6d5cff !important;-webkit-text-fill-color:#6d5cff !important;background:#eeeaff !important;border-radius:999px !important;padding:5px 10px !important;}
.bundle-box label{background:#fff !important;color:#101014 !important;-webkit-text-fill-color:#101014 !important;border:1px solid rgba(16,16,20,.12) !important;border-radius:14px !important;}
.bundle-box label *{color:#101014 !important;-webkit-text-fill-color:#101014 !important;}
.bundle-box label:has(input:checked){border-color:#6d5cff !important;box-shadow:0 0 0 2px rgba(109,92,255,.14) !important;}
.bundle-box label:has(input:checked) b{color:#6d5cff !important;-webkit-text-fill-color:#6d5cff !important;}
.product-panel__actions{display:grid !important;gap:12px !important;margin-top:16px !important;}
.product-panel__actions .button--primary{width:100% !important;}

.trust-row--cards{display:grid !important;grid-template-columns:repeat(3,1fr) !important;gap:10px !important;margin-top:18px !important;}
.trust-row--cards .trust-row__item{background:#f7f5f0 !important;border:1px solid rgba(16,16,20,.10) !important;border-radius:16px !important;color:#101014 !important;-webkit-text-fill-color:#101014 !important;}
.trust-row--cards .trust-row__item strong{color:#101014 !important;-webkit-text-fill-color:#101014 !important;}
.trust-row--cards .trust-row__item small{color:#5b5b63 !important;-webkit-text-fill-color:#5b5b63 !important;}
.product-accordion summary{color:#101014 !important;-webkit-text-fill-color:#101014 !important;}
.product-accordion p{color:#5b5b63 !important;-webkit-text-fill-color:#5b5b63 !important;}

/* Fix bottom gradient CTA white button text */
.cta-banner{background:var(--grad) !important;color:#fff !important;-webkit-text-fill-color:#fff !important;border-radius:28px !important;}
.cta-banner h2,.cta-banner p,.cta-banner span,.cta-banner li{color:#fff !important;-webkit-text-fill-color:#fff !important;}
.cta-banner .button,.cta-banner .button--primary,.cta-banner a.button{
  background:#fff !important;
  color:#101014 !important;
  -webkit-text-fill-color:#101014 !important;
  border:0 !important;
  box-shadow:0 14px 35px rgba(0,0,0,.16) !important;
}
.cta-banner .button:hover{background:#101014 !important;color:#fff !important;-webkit-text-fill-color:#fff !important;}

/* Homepage and cards stay premium/readable */
.hero__visual{border-radius:30px !important;}
.hero__card,.hero__card *{color:#fff !important;-webkit-text-fill-color:#fff !important;}
.hero__card small{color:#00d9c8 !important;-webkit-text-fill-color:#00d9c8 !important;}
.product-card,.collection-card,.review-card,.icon-card,.product-detail-block{border-radius:24px !important;border:1px solid rgba(16,16,20,.10) !important;background:#fff !important;color:#101014 !important;box-shadow:0 20px 55px rgba(20,18,35,.07) !important;}
.product-card__title,.product-card h3{color:#101014 !important;-webkit-text-fill-color:#101014 !important;}
.product-card__meta,.price,.price__current{color:#6d5cff !important;-webkit-text-fill-color:#6d5cff !important;}

@media(max-width:1100px){
  .product-layout.product-layout--premium{grid-template-columns:1fr !important;}
  .product-panel.product-panel--sticky{position:static !important;}
}
@media(max-width:760px){
  .product-gallery.product-gallery--premium{grid-template-columns:1fr !important;grid-template-areas:'main' 'thumbs' 'trust' !important;}
  .product-gallery__thumbs{grid-template-columns:repeat(5, minmax(62px,1fr)) !important;overflow:auto !important;}
  .product-thumb{width:100% !important;height:68px !important;}
  .product-panel.product-panel--sticky{padding:20px !important;border-radius:22px !important;}
  .trust-row--cards{grid-template-columns:1fr !important;}
  .product-title{font-size:clamp(1.9rem,9vw,2.7rem) !important;}
}

/* === HOTFIX: stop product side rail from ruining PDP layout ===
   The 'Why you'll love it' block was being auto-placed into the thumbnail column,
   making a skinny vertical rail and huge empty space. Keep PDP like the clean
   reference: gallery left, buy box right, details below. */
.product-gallery.product-gallery--premium > .desktop-only-block,
.product-gallery.product-gallery--premium > .product-detail-block.desktop-only-block {
  display: none !important;
}

.product-gallery.product-gallery--premium {
  grid-template-areas: 'thumbs main' !important;
  align-items: start !important;
}

.product-layout.product-layout--premium {
  margin-bottom: 34px !important;
}

.product-content-grid,
.perfect-for-block,
.ugc-block,
.review-section,
.related-products {
  clear: both !important;
  width: 100% !important;
}

@media (max-width: 760px) {
  .product-gallery.product-gallery--premium {
    grid-template-areas: 'main' 'thumbs' !important;
  }
}

/* ============================================================
   FINAL PDP NO-BLANK FIX
   Keeps the product gallery visible while the sticky buy box scrolls,
   removes the skinny side rail, and prevents the empty left-column gap.
   ============================================================ */
@media (min-width: 1101px) {
  .product-layout.product-layout--premium {
    grid-template-columns: minmax(0, 1.35fr) minmax(390px, .85fr) !important;
    align-items: start !important;
    gap: clamp(26px, 3vw, 44px) !important;
  }

  .product-gallery.product-gallery--premium {
    position: sticky !important;
    top: 110px !important;
    align-self: start !important;
    display: grid !important;
    grid-template-columns: 78px minmax(0, 1fr) !important;
    grid-template-areas: "thumbs main" !important;
    gap: 18px !important;
    min-height: auto !important;
  }

  .product-panel.product-panel--sticky {
    position: sticky !important;
    top: 110px !important;
    align-self: start !important;
  }

  .product-gallery.product-gallery--premium > .desktop-only-block,
  .product-gallery.product-gallery--premium > .product-detail-block.desktop-only-block {
    display: none !important;
  }

  .product-gallery__main.premium-frame {
    grid-area: main !important;
    min-height: min(720px, calc(100vh - 150px)) !important;
    max-height: calc(100vh - 150px) !important;
    aspect-ratio: auto !important;
  }

  .product-gallery__main.premium-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: #ffffff !important;
  }

  .product-gallery__thumbs {
    grid-area: thumbs !important;
    position: sticky !important;
    top: 110px !important;
    max-height: calc(100vh - 150px) !important;
    overflow-y: auto !important;
    padding-right: 2px !important;
    margin-top: 0 !important;
  }
}

/* Make details sections start cleanly below product top area */
.product-content-grid {
  margin-top: clamp(30px, 4vw, 56px) !important;
}

/* Variant buttons always readable — no invisible black chip */
.option-button,
.option-button *,
.product-form input + label,
.variant-picker label,
.product-form__input label {
  color: #101014 !important;
  -webkit-text-fill-color: #101014 !important;
  background: #ffffff !important;
}
.option-button.is-active,
.option-button[aria-pressed="true"],
.product-form input:checked + label,
.variant-picker input:checked + label {
  color: #6d5cff !important;
  -webkit-text-fill-color: #6d5cff !important;
  background: #ffffff !important;
  border-color: #6d5cff !important;
}

/* CTA banner button readability */
.cta-banner .button,
.cta-banner a.button,
.cta-banner .button--primary {
  background: #ffffff !important;
  color: #101014 !important;
  -webkit-text-fill-color: #101014 !important;
}

@media (max-width: 1100px) {
  .product-gallery.product-gallery--premium,
  .product-panel.product-panel--sticky {
    position: static !important;
  }
}


/* ============================================================
   NEATCORDS FINAL PREMIUM BLACK / WHITE / YELLOW SYSTEM
   Real edit: fixes UGC placeholder copy, variant readability,
   CTA readability, selected text, and global color consistency.
   ============================================================ */
:root{
  --background:#FAFAF8 !important;
  --surface:#FFFFFF !important;
  --surface-strong:#F4F3EF !important;
  --foreground:#111111 !important;
  --muted:#5F6368 !important;
  --border:rgba(17,17,17,.10) !important;
  --border-strong:rgba(17,17,17,.18) !important;
  --accent:#FFD60A !important;
  --accent-2:#FFB800 !important;
  --accent-strong:#E6B800 !important;
  --ink:#111111 !important;
  --grad:linear-gradient(135deg,#FFD60A 0%,#FFB800 100%) !important;
  --grad-soft:linear-gradient(135deg,rgba(255,214,10,.18),rgba(255,184,0,.10)) !important;
  --shadow:0 22px 70px rgba(17,17,17,.08) !important;
}
html,body{background:#FAFAF8 !important;color:#111111 !important;}
::selection{background:#FFD60A !important;color:#111111 !important;-webkit-text-fill-color:#111111 !important;}
::-moz-selection{background:#FFD60A !important;color:#111111 !important;}

/* Top announcement: luxury black, readable white */
.site-announcement,.announcement-bar{background:#111111 !important;color:#FFFFFF !important;-webkit-text-fill-color:#FFFFFF !important;}
.site-announcement *,.announcement-bar *{color:#FFFFFF !important;-webkit-text-fill-color:#FFFFFF !important;}
.site-announcement::first-letter{color:#FFD60A !important;}

/* Header + navigation */
.site-header{background:rgba(255,255,255,.94) !important;border-bottom:1px solid rgba(17,17,17,.09) !important;box-shadow:0 8px 30px rgba(17,17,17,.04) !important;}
.site-nav a,.site-header a{color:#111111 !important;-webkit-text-fill-color:#111111 !important;}
.site-nav a:hover,.site-header a:hover{color:#000 !important;-webkit-text-fill-color:#000 !important;}
.site-nav a::after{background:#FFD60A !important;}
.brand__mark{background:#111111 !important;color:#FFD60A !important;-webkit-text-fill-color:#FFD60A !important;border:1px solid rgba(255,214,10,.35) !important;}
.brand__wordmark{color:#111111 !important;-webkit-text-fill-color:#111111 !important;background:none !important;}
.cart-count{background:#FFD60A !important;color:#111111 !important;-webkit-text-fill-color:#111111 !important;box-shadow:none !important;}

/* Typography/readability */
h1,h2,h3,h4,h5,.heading-xl,.heading-lg,.heading-md,.product-title{color:#111111 !important;-webkit-text-fill-color:#111111 !important;}
p,li,.body,.body-lg,.richtext,.product-card__meta{color:#5F6368 !important;-webkit-text-fill-color:#5F6368 !important;}
.kicker,.eyebrow{color:#111111 !important;-webkit-text-fill-color:#111111 !important;letter-spacing:.24em !important;font-weight:900 !important;}
.eyebrow::before,.kicker::before{content:'';display:inline-block;width:8px;height:8px;border-radius:999px;background:#FFD60A;margin-right:8px;vertical-align:1px;}

/* Buttons: high-converting yellow CTA, black text */
.button,.button--primary,.button--secondary,.shopify-payment-button__button,.shopify-payment-button__button--unbranded{border-radius:999px !important;font-weight:900 !important;letter-spacing:.08em !important;text-transform:uppercase !important;}
.button--primary,.product-panel__actions .button--primary{
  background:#FFD60A !important;color:#111111 !important;-webkit-text-fill-color:#111111 !important;border:1px solid #E6B800 !important;box-shadow:0 18px 38px rgba(255,214,10,.24) !important;
}
.button--primary:hover,.product-panel__actions .button--primary:hover{background:#111111 !important;color:#FFFFFF !important;-webkit-text-fill-color:#FFFFFF !important;border-color:#111111 !important;}
.button--secondary{background:#FFFFFF !important;color:#111111 !important;-webkit-text-fill-color:#111111 !important;border:1px solid rgba(17,17,17,.16) !important;}
.shopify-payment-button__button,.shopify-payment-button__button--unbranded,.shopify-payment-button__button--branded,shopify-accelerated-checkout,shopify-accelerated-checkout-cart{background:#111111 !important;color:#FFFFFF !important;-webkit-text-fill-color:#FFFFFF !important;border-radius:16px !important;overflow:hidden !important;}

/* Product page reference-style layout, no blank side column */
.product-page.section--compact{background:#FAFAF8 !important;padding:42px 0 76px !important;}
.product-layout.product-layout--premium{display:grid !important;grid-template-columns:minmax(0,1.35fr) minmax(390px,.85fr) !important;gap:clamp(26px,3vw,44px) !important;align-items:start !important;margin-bottom:34px !important;}
.product-gallery.product-gallery--premium{display:grid !important;grid-template-columns:78px minmax(0,1fr) !important;grid-template-areas:'thumbs main' !important;gap:18px !important;align-items:start !important;min-height:auto !important;}
.product-gallery.product-gallery--premium > .desktop-only-block,.product-gallery.product-gallery--premium > .product-detail-block.desktop-only-block{display:none !important;}
.product-gallery__main.premium-frame{grid-area:main !important;border-radius:24px !important;border:1px solid rgba(17,17,17,.10) !important;background:#FFFFFF !important;box-shadow:0 22px 70px rgba(17,17,17,.07) !important;overflow:hidden !important;aspect-ratio:1/1 !important;min-height:auto !important;max-height:none !important;}
.product-gallery__main.premium-frame img{width:100% !important;height:100% !important;object-fit:contain !important;background:#FFFFFF !important;border-radius:0 !important;}
.product-gallery__thumbs{grid-area:thumbs !important;display:grid !important;grid-template-columns:1fr !important;gap:12px !important;position:static !important;top:auto !important;max-height:none !important;overflow:visible !important;}
.product-thumb{width:78px !important;height:78px !important;border-radius:14px !important;border:1px solid rgba(17,17,17,.12) !important;background:#FFFFFF !important;overflow:hidden !important;box-shadow:none !important;}
.product-thumb.is-active{border-color:#111111 !important;box-shadow:0 0 0 3px rgba(255,214,10,.65) !important;}
.product-thumb img{width:100% !important;height:100% !important;object-fit:cover !important;border-radius:0 !important;}
.product-panel.product-panel--sticky{position:sticky !important;top:110px !important;align-self:start !important;background:#FFFFFF !important;border:1px solid rgba(17,17,17,.10) !important;border-radius:26px !important;padding:28px !important;box-shadow:0 22px 70px rgba(17,17,17,.08) !important;color:#111111 !important;}
.product-panel :not(.button):not(.stars):not(.badge):not(.pill){color:#111111 !important;-webkit-text-fill-color:#111111 !important;}
.stars{color:#FFD60A !important;-webkit-text-fill-color:#FFD60A !important;text-shadow:0 0 1px rgba(17,17,17,.25) !important;}
.pill{background:#EAF7EF !important;color:#14532D !important;-webkit-text-fill-color:#14532D !important;border:1px solid #CDEBDD !important;}
.price-row__current,.price__current{color:#111111 !important;-webkit-text-fill-color:#111111 !important;}
.price__compare{color:#8A8A8A !important;-webkit-text-fill-color:#8A8A8A !important;text-decoration:line-through !important;}
.badge,.bundle-box__head span{background:#FFF4B8 !important;color:#111111 !important;-webkit-text-fill-color:#111111 !important;border:1px solid rgba(230,184,0,.22) !important;}

/* Variant buttons: no invisible black/white boxes */
.option-group__label,.option-group__label span{color:#111111 !important;-webkit-text-fill-color:#111111 !important;}
.option-button,.option-button *,.product-form input + label,.variant-picker label,.product-form__input label{background:#FFFFFF !important;color:#111111 !important;-webkit-text-fill-color:#111111 !important;border:1px solid rgba(17,17,17,.18) !important;box-shadow:none !important;}
.option-button.is-active,.option-button[aria-pressed='true'],.product-form input:checked + label,.variant-picker input:checked + label{background:#FFFFFF !important;color:#111111 !important;-webkit-text-fill-color:#111111 !important;border-color:#111111 !important;box-shadow:0 0 0 3px rgba(255,214,10,.7) !important;}

/* Bundle + trust cards */
.bundle-box{background:#FFFFFF !important;border:1px solid rgba(17,17,17,.12) !important;border-radius:18px !important;}
.bundle-box label{background:#FFFFFF !important;color:#111111 !important;-webkit-text-fill-color:#111111 !important;border:1px solid rgba(17,17,17,.12) !important;}
.bundle-box label *{color:#111111 !important;-webkit-text-fill-color:#111111 !important;}
.bundle-box label:has(input:checked){border-color:#111111 !important;box-shadow:0 0 0 3px rgba(255,214,10,.55) !important;}
.trust-row--cards .trust-row__item{background:#F4F3EF !important;border:1px solid rgba(17,17,17,.10) !important;color:#111111 !important;-webkit-text-fill-color:#111111 !important;}
.trust-row--cards .trust-row__item strong{color:#111111 !important;-webkit-text-fill-color:#111111 !important;}
.trust-row--cards .trust-row__item small{color:#5F6368 !important;-webkit-text-fill-color:#5F6368 !important;}

/* Cards/sections */
.product-card,.collection-card,.review-card,.icon-card,.product-detail-block{background:#FFFFFF !important;border:1px solid rgba(17,17,17,.10) !important;color:#111111 !important;box-shadow:0 20px 55px rgba(17,17,17,.06) !important;}
.product-card__title,.product-card h3,.review-card h3,.product-detail-block h2,.product-detail-block h3{color:#111111 !important;-webkit-text-fill-color:#111111 !important;}
.perfect-for-list span{background:#FFFFFF !important;color:#111111 !important;-webkit-text-fill-color:#111111 !important;border:1px solid rgba(17,17,17,.12) !important;}
.ugc-card--empty{background:#111111 !important;color:#FFD60A !important;-webkit-text-fill-color:#FFD60A !important;border:1px solid rgba(255,214,10,.35) !important;}

/* Bottom CTA: black/yellow premium, no washed-out white button */
.cta-banner{background:#111111 !important;color:#FFFFFF !important;-webkit-text-fill-color:#FFFFFF !important;border-radius:28px !important;border:1px solid rgba(255,214,10,.28) !important;box-shadow:0 28px 80px rgba(17,17,17,.22) !important;}
.cta-banner h2,.cta-banner p,.cta-banner span,.cta-banner li{color:#FFFFFF !important;-webkit-text-fill-color:#FFFFFF !important;}
.cta-banner .button,.cta-banner a.button,.cta-banner .button--primary{background:#FFD60A !important;color:#111111 !important;-webkit-text-fill-color:#111111 !important;border:1px solid #E6B800 !important;}
.cta-banner .button:hover{background:#FFFFFF !important;color:#111111 !important;-webkit-text-fill-color:#111111 !important;}

/* Hero accents black/yellow */
.hero__chip{background:#111111 !important;color:#FFD60A !important;-webkit-text-fill-color:#FFD60A !important;box-shadow:none !important;border:1px solid rgba(255,214,10,.35) !important;}
.hero__card small{color:#FFD60A !important;-webkit-text-fill-color:#FFD60A !important;}
.hero__media,.product-card__media,.product-gallery__main{background:#FFFFFF !important;}

@media (min-width:1101px){
  .product-gallery.product-gallery--premium{position:static !important;top:auto !important;}
  .product-panel.product-panel--sticky{position:sticky !important;top:110px !important;}
}
@media (max-width:1100px){
  .product-layout.product-layout--premium{grid-template-columns:1fr !important;}
  .product-gallery.product-gallery--premium,.product-panel.product-panel--sticky{position:static !important;}
}
@media (max-width:760px){
  .product-gallery.product-gallery--premium{grid-template-columns:1fr !important;grid-template-areas:'main' 'thumbs' !important;}
  .product-gallery__thumbs{grid-template-columns:repeat(5,minmax(62px,1fr)) !important;overflow:auto !important;}
  .product-thumb{width:100% !important;height:68px !important;}
  .product-panel.product-panel--sticky{padding:20px !important;border-radius:22px !important;}
}

/* FINAL FIX: remove desktop sticky behavior that created the empty left-side gap while scrolling */
.product-panel.product-panel--sticky,
.product-panel--sticky {
  position: static !important;
  top: auto !important;
  align-self: start !important;
}

.product-layout.product-layout--premium {
  align-items: start !important;
  margin-bottom: 28px !important;
}

.product-gallery.product-gallery--premium {
  position: static !important;
  top: auto !important;
  align-self: start !important;
}

.product-gallery__main.premium-frame {
  margin-bottom: 0 !important;
}

.product-content-grid,
.perfect-for-block,
.ugc-block,
.review-section,
.related-products {
  margin-top: 24px !important;
}

/* Keep product page compact so no huge dead space appears between the buy box and lower sections */
.product-page .container > .product-content-grid:first-of-type {
  margin-top: 24px !important;
}

@media (min-width: 990px) {
  .product-layout.product-layout--premium {
    grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.9fr) !important;
  }
}

/* ============================================================
   FINAL PDP EMPTY SPACE FIX
   Keeps the product media visible while the buy box is sticky,
   so the left side never turns into a giant blank column.
   ============================================================ */
.product-page {
  overflow: visible !important;
}

.product-layout--premium {
  align-items: start !important;
  padding-bottom: 28px !important;
}

.product-gallery--premium {
  position: sticky !important;
  top: 118px !important;
  align-self: start !important;
  height: max-content !important;
}

.product-panel--sticky {
  position: sticky !important;
  top: 118px !important;
  align-self: start !important;
}

.desktop-only-block {
  display: none !important;
}

.product-content-grid {
  margin-top: 10px !important;
}

@media (max-width: 1100px) {
  .product-gallery--premium,
  .product-panel--sticky {
    position: static !important;
    top: auto !important;
  }
}

/* FINAL PDP EMPTY-SPACE FIX — no sticky right column, no tall blank area */
.product-layout,
.product-layout--premium {
  align-items: start !important;
  min-height: 0 !important;
  padding-bottom: 28px !important;
  margin-bottom: 0 !important;
}
.product-panel,
.product-panel--sticky {
  position: static !important;
  top: auto !important;
  align-self: start !important;
}
.product-gallery,
.product-gallery--premium {
  position: static !important;
  top: auto !important;
  align-self: start !important;
  min-height: 0 !important;
  margin-bottom: 0 !important;
}
.product-gallery__main,
.premium-frame {
  max-height: none !important;
}
.product-content-grid {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.product-page .container > .product-content-grid:first-of-type,
.product-layout + .product-content-grid {
  margin-top: 18px !important;
}
@media (min-width: 990px) {
  .product-layout--premium {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 500px) !important;
    gap: 36px !important;
  }
}


/* ============================================================
   ACTUAL EMPTY SPACE FIX — fill the left product column.
   The right buy box is taller than the media image, so the left
   column now carries Perfect For + Real Setups + Trust cards inside
   the same product grid row. No more giant blank area.
   ============================================================ */
.product-layout.product-layout--premium{
  align-items:start !important;
  grid-template-columns:minmax(0,1.2fr) minmax(390px,500px) !important;
  gap:36px !important;
}
.product-gallery.product-gallery--premium{
  display:grid !important;
  grid-template-columns:78px minmax(0,1fr) !important;
  grid-template-areas:
    'thumbs main'
    'fill fill' !important;
  gap:18px !important;
  align-items:start !important;
  position:static !important;
  top:auto !important;
}
.product-gallery__thumbs{grid-area:thumbs !important;}
.product-gallery__main{grid-area:main !important;}
.pdp-left-fill{
  grid-area:fill !important;
  display:grid !important;
  gap:16px !important;
  margin-top:2px !important;
}
.pdp-left-card{
  padding:22px !important;
  border-radius:22px !important;
  box-shadow:0 16px 45px rgba(17,17,17,.045) !important;
}
.pdp-proof-card .section-header{
  display:grid !important;
  grid-template-columns:minmax(0,.9fr) minmax(260px,1fr) !important;
  gap:22px !important;
  align-items:start !important;
  margin-bottom:18px !important;
}
.pdp-proof-card .heading-sm{
  margin:0 !important;
  font-size:clamp(1.55rem,2.2vw,2.2rem) !important;
  line-height:1.05 !important;
  letter-spacing:-.04em !important;
  color:#111 !important;
}
.ugc-grid--compact{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:14px !important;
}
.ugc-grid--compact .ugc-card{
  aspect-ratio:1.25/1 !important;
  border-radius:16px !important;
  overflow:hidden !important;
  background:#fff !important;
  border:1px solid rgba(17,17,17,.10) !important;
}
.ugc-grid--compact .ugc-card img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  border-radius:0 !important;
}
.pdp-left-trust{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:14px !important;
  margin-top:0 !important;
}
.product-layout + .product-content-grid{
  margin-top:22px !important;
}
@media (min-width:990px){
  .product-panel.product-panel--sticky{
    position:sticky !important;
    top:110px !important;
    align-self:start !important;
  }
}
@media (max-width:1100px){
  .product-layout.product-layout--premium{grid-template-columns:1fr !important;}
  .product-gallery.product-gallery--premium{
    grid-template-columns:1fr !important;
    grid-template-areas:'main' 'thumbs' 'fill' !important;
  }
  .product-panel.product-panel--sticky{position:static !important;top:auto !important;}
  .pdp-proof-card .section-header{grid-template-columns:1fr !important;}
}
@media (max-width:760px){
  .ugc-grid--compact,.pdp-left-trust{grid-template-columns:1fr !important;}
  .pdp-left-card{padding:18px !important;}
}
