/** Shopify CDN: Minification failed

Line 6004:0 Expected "}" to go with "{"

**/
:root {
  --bg: #faf9fe;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --surface-soft: #f5f3ff;
  --surface-pink: #fef1f7;
  --text: #1f1633;
  --ink: var(--text);
  --muted: #74688d;
  --line: rgba(139, 92, 246, 0.12);
  --line-strong: rgba(139, 92, 246, 0.2);
  --violet: #8b5cf6;
  --violet-deep: #6d28d9;
  --pink: #ec4899;
  --orange: #fb923c;
  --green: #10b981;
  --shadow-soft: 0 20px 60px rgba(110, 69, 219, 0.12);
  --shadow-card: 0 18px 40px rgba(139, 92, 246, 0.12);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --page-width: 1280px;
  --section-space-desktop: 84px;
  --section-space-mobile: 56px;
  --section-header-space-desktop: 2.75rem;
  --section-header-space-mobile: 1.4rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 8% 12%, rgba(167, 139, 250, 0.25), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(244, 114, 182, 0.18), transparent 26%),
    radial-gradient(circle at 80% 82%, rgba(251, 146, 60, 0.14), transparent 24%),
    linear-gradient(180deg, #fbfaff 0%, #faf9fe 60%, #ffffff 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-width {
  width: min(calc(100% - 2rem), var(--page-width));
  margin: 0 auto;
}

.page-width--narrow {
  width: min(calc(100% - 2rem), 1080px);
  margin: 0 auto;
}

.section-pad {
  padding: var(--section-space-desktop) 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.975);
  filter: blur(10px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-on-scroll--soft {
  transform: translate3d(0, 26px, 0) scale(0.985);
  filter: blur(6px);
}

.reveal-on-scroll--soft.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll--soft {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--violet);
}

.display,
.section-title,
.product-title,
.logo-text,
.footer-brand,
.card-title {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 4rem);
  margin: 0 0 1rem;
  line-height: 1.06;
}

.section-copy {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}

.button,
.button-secondary,
.shopify-payment-button__button--unbranded {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border-radius: 18px;
  padding: 0.95rem 1.55rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  font-weight: 600;
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 55%, var(--orange) 100%);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.25);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(31, 22, 51, 0.08);
  color: var(--text);
}

body.modal-open {
  overflow: hidden;
}

body.cart-drawer-open {
  overflow: hidden;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(12px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.site-header.is-hidden-on-scroll {
  transform: translateY(calc(-100% - 8px));
}

.site-header.is-scrolled {
  box-shadow: 0 16px 32px rgba(98, 72, 174, 0.08);
}

.site-header.is-open {
  transform: translateY(0);
}

.site-main {
  padding-top: 76px;
}

body.mobile-nav-open {
  overflow: hidden;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex: 0 1 auto;
  min-width: 0;
  justify-self: start;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  box-shadow: 0 16px 32px rgba(139, 92, 246, 0.22);
}

.site-logo {
  display: block;
  width: min(100%, var(--site-logo-width, 120px));
  height: auto;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
  transform-origin: left center;
}

.site-logo--header {
  width: min(var(--site-logo-width, 180px), 420px);
  max-width: 100%;
  max-height: 96px;
}

.site-logo--footer {
  width: min(var(--site-logo-width, 180px), 480px);
  max-width: 100%;
  max-height: 120px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 0.4rem;
  justify-self: center;
}

.site-header__nav a {
  padding: 0.72rem 1rem;
  border-radius: 14px;
  color: var(--muted);
}

.site-header__nav a[aria-current="page"],
.site-header__nav a:hover {
  color: var(--violet-deep);
  background: rgba(139, 92, 246, 0.08);
}

.site-header__mobile-top,
.site-header__mobile-close {
  display: none;
}

.site-header__backdrop {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
  justify-self: end;
}

.header-search {
  position: relative;
}

.header-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
}

.header-icon--minimal {
  width: auto;
  height: auto;
  padding: 0.3rem;
  border: 0;
  background: transparent;
  color: #6f6786;
  box-shadow: none;
}

.header-icon--minimal svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-icon--minimal:hover {
  color: var(--violet);
  background: transparent;
  transform: translateY(-1px);
}

.header-account {
  color: #6f6786;
  text-decoration: none;
}

.header-account--signed-in {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.36rem 0.6rem 0.36rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(130, 111, 196, 0.2);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(77, 54, 150, 0.08);
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-account--signed-in:hover {
  color: var(--violet);
  border-color: rgba(130, 111, 196, 0.34);
  box-shadow: 0 14px 28px rgba(77, 54, 150, 0.12);
  transform: translateY(-1px);
}

.header-account__icon {
  width: 1.95rem;
  height: 1.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(130, 111, 196, 0.12), rgba(242, 112, 156, 0.14));
}

.header-account__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-account__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.header-account__eyebrow {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.header-account__label {
  font-size: 0.78rem;
  font-weight: 700;
}

.header-cart-toggle {
  position: relative;
}

.header-cart-toggle__count {
  position: absolute;
  top: -0.2rem;
  right: -0.15rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.22rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.cart-drawer[hidden] {
  display: none;
}

.cart-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(19, 12, 35, 0.32);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 260ms ease;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(28rem, calc(100vw - 1rem));
  height: 100%;
  padding: 1.1rem 1rem 1rem;
  background: #ffffff;
  border-left: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: -24px 0 60px rgba(42, 25, 84, 0.14);
  overflow: hidden;
  isolation: isolate;
  transform: translateX(100%);
  transition: transform 300ms ease;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
}

.cart-drawer__eyebrow {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-drawer__title {
  margin: 0.35rem 0 0;
  font-size: 1.8rem;
}

.cart-drawer__close {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 22, 51, 0.08);
  color: var(--text);
  font-size: 1.45rem;
  cursor: pointer;
}

.cart-drawer__body {
  overflow: auto;
  padding: 1rem 0;
  min-height: 0;
}

.cart-drawer__item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(31, 22, 51, 0.08);
  transition: opacity 180ms ease;
}

.cart-drawer__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.cart-drawer__group {
  padding: 0.95rem 0 1.05rem;
  border-top: 1px solid rgba(31, 22, 51, 0.08);
}

.cart-drawer__group:first-child {
  padding-top: 0;
  border-top: 0;
}

.cart-drawer__item-image {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(246, 241, 255, 0.82), rgba(255, 255, 255, 0.95));
}

.cart-drawer__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-drawer__item-copy {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.cart-drawer__item-title {
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}

.cart-drawer__item-summary {
  color: var(--muted);
  font-size: 0.88rem;
}

.cart-drawer__item-variant {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(139, 92, 246, 0.08);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.1;
}

.cart-drawer__item-price {
  font-weight: 700;
}

.cart-price--discounted {
  color: #16a34a;
}

.cart-price--compare,
.cart-line-price s {
  margin-left: 0.45rem;
  color: var(--muted);
  font-weight: 600;
}

.cart-drawer__discount-list,
.cart-discount-list {
  display: grid;
  gap: 0.28rem;
  margin-top: 0.45rem;
}

.cart-drawer__discount,
.cart-discount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 700;
}

.cart-drawer__discount-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
  color: #15803d;
  font-size: 0.9rem;
  font-weight: 800;
}

.cart-drawer__subtotal-row--muted {
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-drawer__subtotal-row--muted strong {
  color: var(--muted);
  font-size: 1rem;
  text-decoration: line-through;
}

.cart-drawer__discount-list--footer,
.cart-discount-list--summary {
  margin: 0 0 0.75rem;
}

.cart-discount-row--summary {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.cart-drawer__variants {
  display: grid;
  gap: 0.65rem;
  margin-left: calc(92px + 0.9rem);
  margin-top: 0.25rem;
}

.cart-drawer__variant-row {
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(250, 247, 255, 0.9), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: opacity 180ms ease;
}

.cart-drawer__variant-row.is-updating {
  opacity: 0.62;
}

.cart-drawer__variant-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.65rem;
}

.cart-drawer__variant-price {
  font-weight: 700;
  white-space: nowrap;
}

.cart-drawer__item.is-updating {
  opacity: 0.62;
}

.cart-drawer__item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.cart-drawer__qty {
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  gap: 0.3rem;
  align-items: center;
  min-width: 7.8rem;
}

.cart-drawer__qty button {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(31, 22, 51, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.cart-drawer__qty input {
  width: 100%;
  min-width: 0;
  text-align: center;
  border: 1px solid rgba(31, 22, 51, 0.1);
  border-radius: 12px;
  padding: 0.5rem 0.4rem;
  background: #fff;
  font: inherit;
}

.cart-drawer__remove {
  border: 0;
  background: transparent;
  color: #dc2626;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  cursor: pointer;
  padding: 0;
}

.cart-drawer__remove:hover {
  color: #b91c1c;
}

@media screen and (max-width: 749px) {
  .cart-drawer__variants {
    margin-left: 0;
    margin-top: 0.4rem;
  }

  .cart-drawer__variant-row {
    padding: 0.8rem;
  }

  .cart-drawer__variant-meta,
  .cart-drawer__item-controls {
    gap: 0.55rem;
  }

  .cart-drawer__item-controls {
    flex-wrap: wrap;
  }
}

.cart-drawer__empty {
  padding: 1rem 0 0.5rem;
  text-align: center;
}

.cart-drawer__empty .card-title {
  margin: 0;
  font-size: 1.5rem;
}

.cart-drawer__footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 92, 246, 0.08);
  background: #ffffff;
}

.cart-drawer__subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
}

.cart-drawer__subtotal-row strong {
  font-size: 1.3rem;
}

.cart-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.cart-drawer__actions .button,
.cart-drawer__actions .button-secondary {
  width: 100%;
}

.cart-drawer__status {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.cart-drawer__subtotal-row.is-updating strong::after,
.cart-drawer__item-price.is-updating::after {
  content: "";
  display: inline-block;
  width: 0.82rem;
  height: 0.82rem;
  margin-left: 0.45rem;
  border: 2px solid rgba(139, 92, 246, 0.16);
  border-top-color: var(--violet);
  border-radius: 999px;
  vertical-align: middle;
  animation: cart-spin 0.7s linear infinite;
}

@keyframes cart-spin {
  to {
    transform: rotate(360deg);
  }
}

.header-search__dropdown {
  position: fixed;
  top: 5.2rem;
  left: 50%;
  right: auto;
  width: min(42rem, calc(100vw - 2rem));
  padding: 0.9rem;
  border-radius: 22px;
  border: 1px solid rgba(139, 92, 246, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(101, 72, 182, 0.18);
  backdrop-filter: blur(18px);
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-20px) scale(0.96);
  transform-origin: top center;
  transition: opacity 220ms ease, transform 260ms ease, visibility 220ms ease;
}

.header-search.is-open .header-search__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.header-search__dropdown::before {
  content: none;
}

.header-search__dropdown::after {
  content: none;
}

.header-search__form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  padding: 0.45rem 0.45rem 0.45rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(139, 92, 246, 0.14);
  background: linear-gradient(180deg, rgba(250, 249, 254, 0.96), rgba(255, 255, 255, 0.98));
}

.header-search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.98rem;
}

.header-search__input::placeholder {
  color: #9b91b0;
}

.header-search__submit {
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.22);
}

.header-search__submit svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search__body {
  margin-top: 1rem;
  max-height: min(68vh, 44rem);
  overflow: auto;
  padding-right: 0.15rem;
}

.header-search__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.header-search__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 700;
}

.header-search__hint {
  font-size: 0.85rem;
  color: #9b91b0;
}

.header-search__recommendations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.header-search__view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  margin-top: 0.85rem;
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.09);
  color: var(--violet-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-search__view-all:hover {
  background: rgba(139, 92, 246, 0.14);
}

.header-search__card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.85rem;
  align-items: center;
  min-height: 88px;
  padding: 0.8rem;
  border-radius: 18px;
  border: 1px solid rgba(139, 92, 246, 0.08);
  background: linear-gradient(180deg, rgba(252, 250, 255, 0.95), rgba(255, 255, 255, 0.98));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-search__card:hover {
  transform: translateY(-1px);
  border-color: rgba(139, 92, 246, 0.18);
  box-shadow: 0 14px 28px rgba(139, 92, 246, 0.12);
}

.header-search__card-image {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08), rgba(255, 255, 255, 0.95) 72%);
}

.header-search__card-image img,
.header-search__card-image svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.header-search__card-copy {
  display: grid;
  gap: 0.2rem;
}

.header-search__card-copy strong {
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.35;
}

.header-search__card-copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

.header-search__empty {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(252, 250, 255, 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(139, 92, 246, 0.08);
}

.header-search__empty strong {
  color: var(--text);
}

.header-search__empty span {
  color: var(--muted);
  font-size: 0.92rem;
}

.mobile-nav-toggle {
  display: none;
}

.mobile-nav-toggle__bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav-toggle {
  flex-direction: column;
  gap: 0.2rem;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
}

.hero::before {
  top: -8%;
  left: -8%;
  width: 48rem;
  height: 34rem;
  background: rgba(167, 139, 250, 0.28);
}

.hero::after {
  right: -12%;
  top: 6%;
  width: 42rem;
  height: 30rem;
  background: rgba(244, 114, 182, 0.22);
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 7rem 0 6rem;
  width: 100%;
}

.hero-slide {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  width: 100%;
}

.hero-slide__media,
.hero-slide__overlay {
  position: absolute;
  inset: 0;
}

.hero-slide__media-item {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide__media-item--mobile {
  display: none;
}

.hero-slide__image,
.hero-slide__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__overlay {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14, 10, 26, 0.08) 0%, rgba(14, 10, 26, 0.14) 52%, rgba(14, 10, 26, 0.22) 100%),
    radial-gradient(circle at 12% 18%, rgba(167, 139, 250, 0.12), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(244, 114, 182, 0.1), transparent 24%),
    radial-gradient(circle at 75% 78%, rgba(251, 146, 60, 0.08), transparent 22%);
}

.hero-slide__media-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.hero-slide__content {
  z-index: 2;
  width: 100%;
}

.hero-slider {
  position: relative;
  width: 100%;
}

.hero-slider__track {
  position: relative;
  min-height: inherit;
  width: 100%;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 360ms ease, transform 420ms ease, visibility 360ms ease;
}

.hero-slider__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slider__controls {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}

.hero-slider__arrow {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--violet-deep);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-slider__dot {
  width: 0.7rem;
  height: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-slider__dot.is-active {
  transform: scale(1.2);
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
}

.hero__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: 0.98;
  margin: 0 auto 1.6rem;
  max-width: 980px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 55%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__copy {
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero__actions,
.cta-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero__actions .button,
.hero__actions .button-secondary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-clip: padding-box;
}

.hero__actions .button {
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.22);
}

.hero__trust {
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--section-header-space-desktop);
}

.site-footer.section-pad {
  padding-top: var(--section-space-desktop);
  padding-bottom: calc(var(--section-space-desktop) * 0.28);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
  will-change: transform;
}

.product-card:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 22px 44px rgba(46, 24, 87, 0.13);
  border-color: rgba(139, 92, 246, 0.18);
}

.product-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-card__overlay-link:focus-visible,
.product-card__cta:focus-visible,
.quick-add-modal__close:focus-visible,
.quick-add-form__quantity button:focus-visible,
.quick-add-form select:focus-visible,
.quick-add-form input:focus-visible {
  outline: 3px solid rgba(139, 92, 246, 0.32);
  outline-offset: 2px;
}

.product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  aspect-ratio: 1 / 1;
  padding: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.82), transparent 38%),
    linear-gradient(180deg, rgba(248, 245, 255, 0.72), rgba(255, 255, 255, 0.96));
}

.product-card__media::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 68%);
  filter: blur(22px);
}

.product-card__media img,
.product-card__media svg {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  transform: scale(1.01);
  transform-origin: center center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__media img,
.product-card:hover .product-card__media svg {
  transform: scale(1.035);
}

.product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 1rem 1.05rem;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.55rem;
}

.price-stack {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.18rem;
}

.price-stack .price {
  font-size: 1.9rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
}

.price-stack .compare {
  color: #b9afcb;
  text-decoration: line-through;
  font-size: 0.86rem;
}

.product-card__title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.16;
  min-height: calc(1.16em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__subtitle {
  font-size: 0.88rem;
  line-height: 1.55;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
  border: 0;
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 58%, var(--orange) 100%);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(139, 92, 246, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
  cursor: pointer;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.product-card:hover .product-card__cta {
  transform: none;
  box-shadow: 0 16px 30px rgba(139, 92, 246, 0.24);
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-card__badge {
  position: absolute;
  top: 0.9rem;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.product-card__badge--left {
  left: 0.9rem;
}

.product-card__badge--right {
  right: 0.9rem;
}

.tag-badge--highlight {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.18);
}

.tag-badge--soft {
  background: rgba(255, 255, 255, 0.82);
  color: #0d8a62;
  border: 1px solid rgba(16, 185, 129, 0.22);
}

.quick-add-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
}

.quick-add-modal[hidden] {
  display: none;
}

.quick-add-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(22, 14, 42, 0.48);
  backdrop-filter: blur(8px);
}

.quick-add-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(46rem, calc(100vw - 2.5rem));
  max-height: min(88vh, 56rem);
  border-radius: 28px;
  border: 1px solid rgba(139, 92, 246, 0.14);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 32px 80px rgba(30, 18, 61, 0.26);
  overflow: hidden;
}

.quick-add-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 22, 51, 0.08);
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
}

.quick-add-sheet {
  display: grid;
  grid-template-columns: 1.08fr 1.22fr;
}

.quick-add-sheet__media {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 35%),
    linear-gradient(180deg, rgba(246, 241, 255, 0.88), rgba(255, 255, 255, 0.96));
}

.quick-add-sheet__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-add-sheet__body {
  padding: 1.7rem 1.6rem 1.4rem;
  overflow: auto;
}

.quick-add-sheet__eyebrow {
  margin-bottom: 0.45rem;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quick-add-sheet__title {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.05;
}

.quick-add-sheet__subtitle {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.quick-add-sheet__price {
  margin-top: 0.95rem;
}

.quick-add-sheet__price .price {
  font-size: 2.1rem;
  line-height: 1;
}

.quick-add-sheet__price .compare {
  margin-left: 0.55rem;
  color: #b9afcb;
  text-decoration: line-through;
}

.quick-add-form {
  margin-top: 1rem;
}

.quick-add-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.quick-add-form select,
.quick-add-form input {
  width: 100%;
  border: 1px solid rgba(31, 22, 51, 0.12);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  background: #fff;
  font: inherit;
}

.quick-add-form__quantity input {
  text-align: center;
}

.quick-add-form__row {
  margin-top: 0.9rem;
}

.quick-add-variant-picker {
  position: relative;
}

.quick-add-variant-picker__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.quick-add-variant-picker__button {
  width: 100%;
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.82rem 0.95rem 0.82rem 1.05rem;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 249, 255, 0.9)),
    radial-gradient(circle at top left, rgba(167, 139, 250, 0.18), transparent 32%);
  color: var(--ink);
  box-shadow:
    inset 0 0 0 2px rgba(196, 181, 253, 0.18),
    0 12px 24px rgba(83, 57, 140, 0.08);
  font: inherit;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.quick-add-variant-picker__button:focus-visible {
  outline: 3px solid rgba(167, 139, 250, 0.34);
  outline-offset: 2px;
}

.quick-add-variant-picker__chevron {
  width: 1.65rem;
  height: 1.65rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-deep);
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.quick-add-variant-picker.is-open .quick-add-variant-picker__chevron {
  transform: rotate(180deg);
}

.quick-add-variant-picker__list {
  position: absolute;
  z-index: 12;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  max-height: min(17rem, 44vh);
  overflow: auto;
  padding: 0.4rem;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 44px rgba(54, 39, 93, 0.18);
}

.quick-add-variant-picker__option {
  width: 100%;
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  padding: 0.62rem 0.75rem;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.quick-add-variant-picker__option:hover,
.quick-add-variant-picker__option.is-active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(244, 114, 182, 0.12));
  color: var(--violet-deep);
}

.quick-add-variant-picker__option:disabled {
  cursor: not-allowed;
  color: rgba(31, 22, 51, 0.42);
  text-decoration: line-through;
}

.quick-add-form__quantity {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: center;
}

.quick-add-form__quantity button {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  border: 1px solid rgba(31, 22, 51, 0.1);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-size: 1.15rem;
}

.quick-add-form__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.quick-add-form__actions .button,
.quick-add-form__actions .button-secondary {
  width: 100%;
}

.quick-add-form__status {
  margin-top: 0.8rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.quick-add-form__status a {
  color: var(--violet-deep);
  font-weight: 700;
}

.quality-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.quality-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quality-card,
.testimonial-card,
.support-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.quality-card__title {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  line-height: 1.14;
}

.quality-card__copy {
  font-size: 0.96rem;
}

.quality-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.quality-showcase__shell {
  padding: 2.2rem;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 249, 255, 0.94));
  box-shadow: var(--shadow-card);
}

.quality-showcase__intro {
  max-width: 760px;
  margin-bottom: 1.7rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quality-showcase__intro .section-title,
.quality-showcase__intro .section-copy,
.quality-showcase__intro .eyebrow {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.quality-showcase-scene {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.25rem;
  align-items: start;
}

.quality-showcase-scene__visual {
  position: relative;
  min-height: 33rem;
  padding: 1rem;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.82) 0%, rgba(255, 255, 255, 0.94) 100%);
  border: 1px solid rgba(139, 92, 246, 0.1);
  box-shadow: 0 24px 60px rgba(68, 42, 120, 0.12);
}

.quality-showcase-scene__bg {
  position: absolute;
  inset: auto -8% -12% auto;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 196, 132, 0.22), transparent 68%);
  filter: blur(26px);
}

.quality-showcase-scene__product-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.quality-showcase-scene__product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.02);
}

.quality-showcase-scene__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(23, 13, 43, 0) 0%, rgba(23, 13, 43, 0.08) 30%, rgba(23, 13, 43, 0.44) 100%);
  pointer-events: none;
}

.quality-showcase-scene__hint {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 4;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #5c3c83;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.quality-showcase-scene__hotspot {
  position: absolute;
  z-index: 5;
  width: 1.2rem;
  height: 1.2rem;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(21, 12, 41, 0.2);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.quality-showcase-scene__hotspot:hover,
.quality-showcase-scene__hotspot.is-active {
  transform: scale(1.08);
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.22),
    0 14px 28px rgba(21, 12, 41, 0.24);
}

.quality-showcase-scene__hotspot span,
.quality-showcase-scene__legend-dot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
}

.quality-showcase-scene__hotspot::before {
  content: "";
  position: absolute;
  inset: -0.45rem;
  border-radius: inherit;
  border: 2px solid rgba(139, 92, 246, 0.24);
  animation: hotspot-pulse 1.9s ease-out infinite;
}

.quality-showcase-scene__hotspot.is-active::before {
  border-color: rgba(236, 72, 153, 0.34);
}

.quality-showcase-scene__hotspot--1 {
  left: 24%;
  top: 44%;
}

.quality-showcase-scene__hotspot--2 {
  left: 71%;
  top: 74%;
}

.quality-showcase-scene__hotspot--3 {
  left: 79%;
  top: 55%;
}

.quality-showcase-scene__hotspot--4 {
  left: 73%;
  top: 57%;
}

.quality-showcase-scene__hotspot--5 {
  left: 68%;
  top: 85%;
}

.quality-showcase-scene__side {
  display: grid;
  grid-template-rows: auto auto;
  gap: 1rem;
  min-width: 0;
  align-content: start;
}

.quality-showcase-scene__cards {
  display: grid;
  min-height: 0;
}

.quality-showcase-scene__card {
  position: relative;
  grid-area: 1 / 1;
  padding: 1.4rem 1.4rem 1.5rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 248, 255, 0.82));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 20px 48px rgba(47, 25, 92, 0.12);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(18px, 0, 0) scale(0.985);
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 320ms;
  pointer-events: none;
}

.quality-showcase-scene__card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
  pointer-events: auto;
}

.quality-showcase-scene__card-kicker {
  margin-bottom: 0.55rem;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quality-showcase-scene__card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.55rem;
  line-height: 1.02;
}

.quality-showcase-scene__card h3 sub,
.quality-showcase-scene__legend-button sub {
  font-size: 0.62em;
  vertical-align: baseline;
  position: relative;
  bottom: -0.18em;
}

.quality-showcase-scene__card p {
  margin: 0;
  color: rgba(59, 45, 90, 0.88);
  font-size: 0.96rem;
  line-height: 1.62;
}

.quality-showcase-scene__legend {
  display: grid;
  gap: 0.7rem;
}

.quality-showcase-scene__legend-button {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.quality-showcase-scene__legend-button.is-active {
  transform: translateY(-1px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow: 0 14px 28px rgba(139, 92, 246, 0.08);
}

.quality-showcase-scene__legend-dot {
  width: 0.8rem;
  height: 0.8rem;
  flex: 0 0 auto;
}

@media screen and (min-width: 990px) {
  .home-quality-grid-section {
    display: none;
  }
}

@keyframes hotspot-pulse {
  0% {
    transform: scale(0.82);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-slider {
  position: relative;
  padding: 0 0 3.5rem;
}

.testimonial-slider__controls {
  display: contents;
}

.testimonial-slider__viewport {
  overflow: hidden;
}

.testimonial-slider__track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-slider__slide {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
}

.testimonial-card__quote {
  margin: 0.9rem 0 1.2rem;
}

.testimonial-card__location {
  font-size: 0.9rem;
}

.testimonial-slider .testimonial-card {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(139, 92, 246, 0.1);
}

.testimonial-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  margin-top: -2.4rem;
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--violet-deep);
  box-shadow: 0 14px 30px rgba(87, 54, 159, 0.12);
  backdrop-filter: blur(14px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.testimonial-slider__arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(87, 54, 159, 0.16);
}

.testimonial-slider__arrow:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
  box-shadow: 0 10px 22px rgba(87, 54, 159, 0.08);
}

.testimonial-slider__arrow--prev {
  left: -0.75rem;
}

.testimonial-slider__arrow--next {
  right: -0.75rem;
}

.testimonial-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.testimonial-slider__dot {
  width: 0.72rem;
  height: 0.72rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.testimonial-slider__dot.is-active {
  transform: scale(1.18);
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.14em;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--violet) 0%, #a855f7 36%, var(--pink) 70%, var(--orange) 100%);
  color: #fff;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
}

.cta-banner::before {
  top: -5rem;
  right: -4rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 255, 255, 0.16);
}

.cta-banner::after {
  bottom: -6rem;
  left: -2rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.1);
}

.collection-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem 1.6rem;
  align-items: start;
  margin-bottom: 2rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(196, 181, 253, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 181, 253, 0.16), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(251, 207, 232, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 250, 255, 0.96));
  box-shadow: 0 14px 30px rgba(130, 100, 184, 0.06);
}

.collection-toolbar__filters {
  min-width: 0;
}

.collection-toolbar__heading {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-toolbar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.collection-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(201, 191, 228, 0.42);
  background: rgba(255, 255, 255, 0.9);
  color: #40355a;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.collection-chip:hover,
.collection-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(139, 92, 246, 0.26);
  box-shadow: 0 10px 22px rgba(139, 92, 246, 0.1);
  color: var(--violet-deep);
}

.collection-chip.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.18);
}

.collection-toolbar__sort {
  min-width: 12rem;
  padding: 0.1rem 0;
}

.collection-sort-select,
.collection-sort-menu__button {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.65rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 191, 228, 0.46);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.collection-sort-menu {
  position: relative;
  z-index: 3;
}

.collection-sort-menu__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.collection-sort-menu__button:hover,
.collection-sort-menu__button:focus-visible {
  border-color: rgba(139, 92, 246, 0.36);
  box-shadow: 0 10px 22px rgba(139, 92, 246, 0.1);
  outline: 0;
}

.collection-sort-menu__chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #8a7ca6;
  border-bottom: 2px solid #8a7ca6;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
  flex: 0 0 auto;
}

.collection-sort-menu.is-open .collection-sort-menu__chevron {
  transform: rotate(225deg) translate(-2px, -1px);
}

.collection-sort-menu__list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.18rem;
  padding: 0.45rem;
  border: 1px solid rgba(201, 191, 228, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(78, 58, 120, 0.16);
}

.collection-sort-menu__list[hidden] {
  display: none;
}

.collection-sort-menu__option {
  width: 100%;
  min-height: 2.45rem;
  padding: 0.62rem 0.75rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.collection-sort-menu__option:hover,
.collection-sort-menu__option:focus-visible,
.collection-sort-menu__option.is-active {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-deep);
  outline: 0;
}

.collection-layout {
  display: grid;
  grid-template-columns: 18.5rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.collection-sidebar {
  position: relative;
}

.collection-sidebar__panel {
  position: sticky;
  top: calc(76px + 1.2rem);
  padding: 1.15rem 1rem 1rem;
  border: 1px solid rgba(196, 181, 253, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 14% 16%, rgba(196, 181, 253, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 250, 255, 0.96));
  box-shadow: 0 14px 30px rgba(130, 100, 184, 0.06);
}

.collection-sidebar__top {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.collection-sidebar__eyebrow {
  color: var(--violet);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-sidebar__title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.collection-sidebar__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 2.7rem;
  padding: 0.65rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 191, 228, 0.34);
  background: rgba(255, 255, 255, 0.92);
  background-clip: padding-box;
  color: #40355a;
  font-size: 0.92rem;
  font-weight: 600;
}

.collection-sidebar__all.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.18);
}

.collection-sidebar__mobile-toggle {
  display: none;
}

.collection-sidebar__groups {
  display: grid;
  gap: 0.8rem;
}

.collection-sidebar__group {
  padding: 0.85rem 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(227, 220, 245, 0.9);
}

.collection-sidebar__group-title {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.collection-sidebar__links {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.collection-sidebar__link {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  color: #6d6482;
  font-size: 0.92rem;
  line-height: 1.28;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.collection-sidebar__link:hover,
.collection-sidebar__link:focus-visible {
  background: rgba(139, 92, 246, 0.08);
  color: var(--violet-deep);
  transform: translateX(2px);
}

.collection-sidebar__link.is-active {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-deep);
  font-weight: 700;
}

.collection-content {
  min-width: 0;
}

.collection-toolbar {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.2rem;
  align-items: center;
  margin-bottom: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 181, 253, 0.1), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(251, 207, 232, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 250, 255, 0.96));
}

.collection-toolbar__summary {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.collection-toolbar__summary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-toolbar__summary-text {
  color: #756c89;
  font-size: 0.94rem;
  font-weight: 600;
}

.collection-toolbar__heading {
  margin-bottom: 0.45rem;
  font-size: 0.76rem;
}

.collection-toolbar__sort {
  min-width: 11.5rem;
}

.facet-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.facet-shell select,
.quantity-input input {
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.8);
}

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

.search-page {
  min-height: 60vh;
}

.search-page__header {
  max-width: 820px;
}

.search-page__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  max-width: 760px;
  margin: 0 auto 1.5rem;
  padding: 0.65rem;
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 18%, rgba(196, 181, 253, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 250, 255, 0.98));
  box-shadow: 0 18px 42px rgba(107, 79, 158, 0.1);
}

.search-page__input {
  min-width: 0;
  min-height: 3.25rem;
  border: 0;
  border-radius: 18px;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: 1px solid rgba(139, 92, 246, 0.12);
}

.search-page__input:focus {
  outline-color: rgba(139, 92, 246, 0.36);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
}

.search-page__submit {
  min-height: 3.25rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 58%, var(--orange) 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(139, 92, 246, 0.22);
}

.search-page__toolbar {
  display: grid;
  max-width: none;
}

.search-page__grid .empty-state {
  grid-column: 1 / -1;
}

.search-page__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pagination__link,
.pagination__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-weight: 700;
}

.pagination__link {
  color: var(--violet-deep);
}

@media screen and (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media screen and (min-width: 990px) {
  .product-layout--main {
    align-items: start;
  }

  .product-gallery--sticky {
    position: sticky;
    top: calc(76px + 1.25rem);
    align-self: start;
  }
}

.product-gallery {
  border-radius: 32px;
  padding: 1.7rem;
  min-height: 560px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}

.product-gallery__featured {
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 255, 0.92));
  display: grid;
  place-items: center;
  padding: 0.9rem;
}

.product-gallery__featured img,
.product-gallery__featured svg {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-gallery__thumb {
  border-radius: 18px;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.product-gallery__thumb img,
.product-gallery__thumb svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

.product-panel {
  padding: 0.6rem 0;
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.product-breadcrumbs__desktop {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: #8e85a5;
  font-size: 0.92rem;
}

.product-breadcrumbs__desktop a {
  color: inherit;
  transition: color 180ms ease;
}

.product-breadcrumbs__desktop a:hover {
  color: var(--violet-deep);
}

.product-breadcrumbs__mobile-back {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.product-breadcrumbs__mobile-back::before {
  content: "\2190";
  font-size: 0.95rem;
  line-height: 1;
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: baseline;
  margin: 1rem 0 1.25rem;
}

.product-mobile-accordions {
  display: block;
  margin-bottom: 1.35rem;
  padding: 0.25rem 1rem;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.product-mobile-accordion {
  border-top: 1px solid rgba(139, 92, 246, 0.12);
}

.product-mobile-accordion:first-of-type {
  border-top: 0;
}

.product-mobile-accordion + .product-mobile-accordion {
  margin-top: 0;
}

.product-mobile-accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
}

.product-mobile-accordion summary::-webkit-details-marker {
  display: none;
}

.product-mobile-accordion summary::after {
  content: "+";
  color: var(--violet);
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}

.product-mobile-accordion[open] summary::after {
  content: "\2212";
}

.product-mobile-accordion__content {
  padding: 0 1.1rem 1.05rem;
}

.product-mobile-accordion__content .section-copy,
.product-mobile-accordion__content .rte p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.72;
}

.product-mobile-accordion__content .section-copy:last-child,
.product-mobile-accordion__content .rte p:last-child {
  margin-bottom: 0;
}

.product-panel > .rte {
  display: none;
}

.product-price .price {
  font-size: 3rem;
  font-family: "Space Grotesk", sans-serif;
}

.product-highlights,
.product-feature-list,
.mini-stat-grid {
  display: grid;
  gap: 0.8rem;
}

.mini-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 1.6rem 0;
}

.mini-stat {
  padding: 1rem 0.9rem;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.product-feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.45rem;
  gap: 0.7rem;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: #6f6488;
}

.product-feature sub,
.product-title sub,
.section-copy sub,
.rte sub {
  margin-left: 0.02em;
  margin-right: 0.02em;
  letter-spacing: 0;
  line-height: 0;
}

.check-dot {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  font-size: 0.8rem;
}

.shopify-payment-button,
.product-form__buttons {
  width: 100%;
}

.variant-picker label,
.quantity-input label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-variant-picker {
  position: relative;
}

.product-variant-picker__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.product-variant-picker__button {
  width: 100%;
  min-height: 3.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.86rem 0.95rem 0.86rem 1.05rem;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(251, 249, 255, 0.92)),
    radial-gradient(circle at top left, rgba(167, 139, 250, 0.18), transparent 32%);
  color: var(--ink);
  box-shadow:
    inset 0 0 0 2px rgba(196, 181, 253, 0.18),
    0 12px 24px rgba(83, 57, 140, 0.08);
  font: inherit;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.product-variant-picker__button:focus-visible {
  outline: 3px solid rgba(167, 139, 250, 0.34);
  outline-offset: 2px;
}

.product-variant-picker__chevron {
  width: 1.65rem;
  height: 1.65rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-deep);
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.product-variant-picker.is-open .product-variant-picker__chevron {
  transform: rotate(180deg);
}

.product-variant-picker__list {
  position: absolute;
  z-index: 12;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  max-height: min(18rem, 44vh);
  overflow: auto;
  padding: 0.4rem;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 44px rgba(54, 39, 93, 0.18);
}

.product-variant-picker__option {
  width: 100%;
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  padding: 0.62rem 0.75rem;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.product-variant-picker__option:hover,
.product-variant-picker__option.is-active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(244, 114, 182, 0.12));
  color: var(--violet-deep);
}

.product-variant-picker__option:disabled {
  cursor: not-allowed;
  color: rgba(31, 22, 51, 0.42);
  text-decoration: line-through;
}

.product-form__buttons {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.product-form__submit,
.product-form__buy-now {
  width: 100%;
  min-height: 58px;
}

.product-form__buy-now {
  position: relative;
  border-color: rgba(139, 92, 246, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 255, 0.96));
  color: var(--violet-deep);
  box-shadow: 0 14px 32px rgba(139, 92, 246, 0.1);
}

.product-form__buy-now:hover {
  border-color: rgba(139, 92, 246, 0.28);
  box-shadow: 0 18px 36px rgba(139, 92, 246, 0.14);
}

.product-form__buy-now.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  box-shadow: none;
}

.product-form__status {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.86rem;
  min-height: 1.25rem;
}

.complementary-card {
  margin-top: 4rem;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
}

.product-use-cases {
  padding-top: calc(var(--section-space-desktop) * 0.18);
}

.product-recommendations {
  padding-top: calc(var(--section-space-desktop) * 0.04);
}

.product-use-cases__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.product-use-cases__intro {
  position: sticky;
  top: 108px;
}

.product-use-cases__intro .section-title {
  margin: 0.85rem 0 1rem;
  max-width: 12ch;
}

.product-use-cases__intro .section-copy {
  max-width: 34rem;
}

.product-use-cases__spotlight {
  margin-top: 1.6rem;
  padding: 1.35rem 1.4rem;
  border-radius: 26px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  background:
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 255, 0.96));
  box-shadow: 0 18px 36px rgba(139, 92, 246, 0.08);
}

.product-use-cases__spotlight-label,
.product-use-cases__card-kicker {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-use-cases__spotlight-title {
  margin-top: 0.7rem;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.product-use-cases__spotlight p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.64;
}

.product-use-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-use-cases__card {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 1.35rem 1.3rem 1.25rem;
  border-radius: 28px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 255, 0.96));
  box-shadow: 0 18px 40px rgba(139, 92, 246, 0.08);
}

.product-use-cases__card:nth-child(2n) {
  transform: translateY(1.8rem);
}

.product-use-cases__card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.18);
}

.product-use-cases__card-title {
  margin: 0.75rem 0 0.75rem;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.14;
}

.product-use-cases__card-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-shell,
.page-shell,
.empty-state {
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.cart-item {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(31, 22, 51, 0.08);
}

.cart-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.cart-item__media {
  width: 108px;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(248, 246, 252, 0.96);
}

.cart-item__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item__title {
  margin: 0 0 0.28rem;
  font-size: 1.14rem;
  line-height: 1.18;
}

.cart-item__content {
  min-width: 0;
  display: grid;
  gap: 0.9rem;
}

.cart-item__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.cart-item__variant {
  font-size: 0.94rem;
  line-height: 1.35;
}

.cart-item__price {
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
}

.cart-item__variants {
  display: grid;
  gap: 0.65rem;
}

.cart-item__variant-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(250, 247, 255, 0.9), rgba(255, 255, 255, 0.98));
}

.cart-item__variant-meta {
  min-width: 0;
}

.cart-item__variant-meta > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.cart-item__variant-meta .cart-discount-list {
  flex-basis: 100%;
}

.cart-discount-list--line {
  width: 100%;
}

.cart-item__variant-name {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(139, 92, 246, 0.08);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.1;
}

.cart-item__variant-price {
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.cart-item__qty-input {
  width: 3.2rem;
  min-height: 2.8rem;
  padding: 0.45rem 0.3rem;
  border-radius: 0;
  border: 1px solid var(--line-strong);
  background: #fff;
  text-align: center;
  -moz-appearance: textfield;
}

.cart-item__qty-input::-webkit-outer-spin-button,
.cart-item__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item__qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #fff;
}

.cart-item__qty-button {
  width: 2.65rem;
  height: 2.8rem;
  border: 0;
  background: rgba(139, 92, 246, 0.08);
  color: var(--violet-deep);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-item__qty-button:hover {
  background: rgba(139, 92, 246, 0.14);
}

.cart-item__quantity {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
}

.cart-item__remove {
  border: 0;
  background: transparent;
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
  padding: 0.1rem 0.15rem;
}

.cart-item__remove:hover {
  color: #7f1d1d;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(160px, 0.72fr) minmax(180px, 0.9fr) minmax(220px, 0.92fr);
  gap: clamp(2rem, 3vw, 4.25rem);
  align-items: start;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  color: #c8bfd5;
  font-size: 0.84rem;
  line-height: 1.6;
}

.site-footer__bottom-text {
  margin: 0;
  text-align: left;
}

.site-footer__payments {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.site-footer__payment-item {
  display: flex;
}

.site-footer__payment-icon {
  width: 38px;
  height: 24px;
  color: #b7aec7;
}

.footer-copy sub,
.site-footer__bottom sub {
  font-size: 0.7em;
  line-height: 0;
  vertical-align: -0.28em;
}

.footer-list {
  display: grid;
  gap: 0.88rem;
}

.footer-list a,
.footer-list p,
.footer-list li {
  margin: 0;
  color: #9f94b3;
  font-size: 0.97rem;
  line-height: 1.34;
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--violet-deep);
  transform: translateX(2px);
}

.footer-brand-block {
  max-width: 430px;
  margin-top: calc(-1.65rem - 12px);
}

.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.footer-brand-row--has-logo {
  gap: 0;
}

.footer-brand {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.footer-copy {
  margin: 0;
  max-width: 24ch;
  color: #a095b4;
  font-size: 0.97rem;
  line-height: 1.52;
}

.footer-brand-block .footer-list--contact {
  gap: 0.9rem;
}

.footer-column {
  min-width: 0;
}

.footer-heading {
  margin: 0 0 1.1rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-heading--mobile {
  display: none;
}

.footer-accordion {
  display: none;
}

.footer-accordion summary {
  list-style: none;
}

.footer-accordion summary::-webkit-details-marker {
  display: none;
}

.footer-list--contact {
  gap: 0.92rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
}

.footer-contact-item a {
  color: var(--violet-deep);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1px;
  transition: color 180ms ease, text-decoration-thickness 180ms ease;
}

.footer-contact-item a:hover {
  color: var(--pink);
  text-decoration-thickness: 2px;
}

.footer-contact-icon {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  color: #8f63ff;
  margin-top: 0.08rem;
}

.footer-contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer.section-pad {
  padding-top: calc(var(--section-space-desktop) * 0.7);
  padding-bottom: calc(var(--section-space-desktop) * 0.24);
}

.rte p {
  line-height: 1.85;
  color: var(--muted);
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 989px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    margin-bottom: 2rem;
  }

  .contact-panel--info,
  .contact-panel--form {
    padding: 1.15rem;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .quality-showcase {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    position: relative;
    grid-template-columns: 3rem minmax(0, 1fr) 8rem;
    gap: 0.35rem;
    min-height: 72px;
  }

  .site-header__inner > .mobile-nav-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .site-header__inner > .site-brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    max-width: min(48vw, var(--site-logo-width, 180px));
  }

  .site-header__inner > .site-brand .site-logo {
    object-position: center center;
    transform-origin: center center;
  }

  .site-header__inner > .site-header__nav {
    grid-column: auto;
  }

  .site-header__inner > .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 0.35rem;
  }

  .header-actions .mobile-nav-toggle {
    display: none;
  }

  .header-actions .header-icon--minimal svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .header-account--signed-in {
    padding: 0.26rem;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .header-account__copy {
    display: none;
  }

  .header-account__icon {
    width: auto;
    height: auto;
    background: transparent;
  }

  .header-account__icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .site-header__nav {
    display: flex;
    position: fixed;
    inset: 0 auto 0 0;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    min-height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.18rem;
    padding: max(0.1rem, env(safe-area-inset-top)) 0.9rem max(1.35rem, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 60px rgba(77, 54, 150, 0.18);
    z-index: 42;
    box-sizing: border-box;
    transform: translate3d(-104%, 0, 0);
    transition: transform 260ms ease;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-header.is-open .site-header__nav {
    transform: translate3d(0, 0, 0);
  }

  .site-header__mobile-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0;
    padding-bottom: 0.48rem;
    margin-bottom: 0.18rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
  }

  .site-header__mobile-close {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 16px;
    background: rgba(250, 248, 255, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .site-header__mobile-close span {
    position: absolute;
    width: 1.15rem;
    height: 2px;
    border-radius: 999px;
    background: #736a88;
  }

  .site-header__mobile-close span:first-child {
    transform: rotate(45deg);
  }

  .site-header__mobile-close span:last-child {
    transform: rotate(-45deg);
  }

  .site-header__nav a {
    width: 100%;
    text-align: left;
    border-radius: 18px;
    padding: 0.72rem 0.95rem;
    font-size: 1.04rem;
    box-sizing: border-box;
  }

  .site-header__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 41;
    border: 0;
    background: rgba(27, 18, 49, 0.2);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 240ms ease, visibility 240ms ease;
  }

  .site-header.is-open .site-header__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-search__dropdown {
    top: 4.9rem;
    left: 50%;
    right: auto;
    width: min(24rem, calc(100vw - 1.25rem));
    transform: translateX(-50%) translateY(-16px) scale(0.96);
    transform-origin: top center;
  }

  .header-search.is-open .header-search__dropdown {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .header-search__recommendations {
    grid-template-columns: 1fr;
    max-height: min(62vh, 32rem);
    overflow: auto;
  }

  .quality-grid,
  .testimonial-grid,
  .collection-grid,
  .product-layout,
  .footer-grid,
  .cta-banner__inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 1.6rem;
  }

  .footer-brand-block {
    max-width: none;
    margin-top: 0;
  }

  .footer-copy {
    max-width: 34ch;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .product-gallery {
    min-height: auto;
    padding: 1.35rem;
  }

  .mini-stat-grid,
  .product-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-use-cases__shell {
    grid-template-columns: 1fr;
  }

  .product-use-cases__intro {
    position: static;
  }

  .product-use-cases__intro .section-title,
  .product-use-cases__intro .section-copy {
    max-width: none;
  }

  .product-use-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-use-cases__card:nth-child(2n) {
    transform: none;
  }

  .collection-layout {
    grid-template-columns: 1fr;
  }

  .collection-sidebar__panel {
    position: static;
  }

  .collection-toolbar {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .collection-sidebar__top {
    gap: 0.65rem;
  }

  .collection-toolbar__sort {
    min-width: 0;
  }

  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .cart-item__media {
    width: 82px;
    border-radius: 16px;
  }

  .cart-item__title {
    font-size: 1rem;
  }

  .cart-item__variant,
  .cart-item__price,
  .cart-item__variant-price {
    font-size: 0.88rem;
  }

  .cart-item__summary,
  .cart-item__variant-row {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .cart-item__variant-row {
    padding: 0.72rem 0.75rem;
  }

  .cart-item__qty-stepper {
    width: 100%;
    justify-content: space-between;
  }

  .cart-item__qty-input {
    width: 100%;
    flex: 1 1 auto;
    min-height: 2.6rem;
  }
}

@media screen and (max-width: 749px) {
  .cart-shell,
  .page-shell,
  .empty-state {
    padding: 1rem;
    border-radius: 24px;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .cart-item__media {
    width: 72px;
    border-radius: 14px;
  }

  .cart-item__title {
    font-size: 0.98rem;
    margin-bottom: 0.18rem;
  }

  .cart-item__variant {
    font-size: 0.84rem;
  }

  .cart-item__summary {
    gap: 0.55rem;
  }

  .cart-item__variants {
    gap: 0.5rem;
  }

  .cart-item__variant-row {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 0.65rem 0.7rem;
    border-radius: 16px;
  }

  .cart-item__variant-meta > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .cart-item__variant-name {
    font-size: 0.8rem;
    min-height: 1.5rem;
  }

  .cart-item__variant-price {
    margin-top: 0;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .cart-item__quantity {
    width: 100%;
    justify-items: stretch;
  }

  .cart-item__qty-stepper {
    width: 100%;
  }

  .cart-item__qty-button {
    flex: 0 0 2.8rem;
  }

  .cart-item__remove {
    justify-self: end;
  }
}

@media screen and (max-width: 749px) {
  .collection-sidebar__panel {
    padding: 0.85rem;
  }

  .collection-sidebar__mobile-toggle {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.85rem;
    padding: 0.75rem 0.95rem;
    border: 1px solid rgba(201, 191, 228, 0.34);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .collection-sidebar__mobile-toggle::after {
    content: "+";
    color: #8a7ca6;
    font-size: 1.1rem;
    line-height: 1;
  }

  .collection-sidebar__panel.is-open .collection-sidebar__mobile-toggle::after {
    content: "-";
  }

  .collection-sidebar__top,
  .collection-sidebar__groups {
    display: none;
  }

  .collection-sidebar__panel.is-open .collection-sidebar__top,
  .collection-sidebar__panel.is-open .collection-sidebar__groups {
    display: grid;
  }

  .collection-sidebar__top {
    margin-top: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .collection-sidebar__group {
    padding: 0.72rem 0.72rem 0.78rem;
    border-radius: 16px;
  }

  .collection-sidebar__links {
    gap: 0.2rem;
    margin-top: 0.45rem;
  }

  .collection-sidebar__link {
    padding: 0.48rem 0.6rem;
    font-size: 0.88rem;
  }

  .collection-toolbar {
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.9rem;
  }

  .collection-toolbar__summary {
    gap: 0.55rem;
  }

  .collection-toolbar__summary-pill {
    min-height: 1.8rem;
    padding: 0.28rem 0.62rem;
    font-size: 0.68rem;
  }

  .collection-toolbar__summary-text {
    font-size: 0.88rem;
  }

  .collection-toolbar__heading {
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
  }

  .collection-sort-select,
  .collection-sort-menu__button {
    min-height: 2.65rem;
    padding: 0.58rem 0.85rem;
    font-size: 0.94rem;
  }

  .collection-sort-menu__list {
    position: static;
    margin-top: 0.42rem;
    box-shadow: 0 14px 28px rgba(78, 58, 120, 0.14);
  }

  .collection-sort-menu__option {
    min-height: 2.35rem;
    font-size: 0.92rem;
  }
}

@media screen and (max-width: 749px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .search-page__form {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.55rem;
    border-radius: 20px;
  }

  .search-page__input,
  .search-page__submit {
    min-height: 2.95rem;
    border-radius: 16px;
  }

  .search-page__submit {
    width: 100%;
  }

  .search-page__pagination {
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.35rem;
  }

  .pagination__link,
  .pagination__current {
    min-height: 2.4rem;
    padding: 0.55rem 0.8rem;
    font-size: 0.86rem;
  }

  .section-pad {
    padding: var(--section-space-mobile) 0;
  }

  .section-header {
    margin-bottom: var(--section-header-space-mobile);
  }

  .section-header .section-title {
    font-size: clamp(1.8rem, 8.6vw, 2.45rem);
    margin-bottom: 0.6rem;
  }

  .section-header .section-copy {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .hero__inner {
    width: min(calc(100% - 1.1rem), 30rem);
    padding: 0 0 1rem;
  }

  .hero,
  .hero-slide {
    min-height: calc(100svh - 76px);
  }

  .hero {
    position: sticky;
    top: 76px;
    z-index: 1;
  }

  .hero-slide__media-item--desktop {
    display: none;
  }

  .hero-slide__media-item--mobile {
    display: block;
  }

  .hero-slide__overlay {
    background:
      linear-gradient(180deg, rgba(14, 10, 26, 0.04) 0%, rgba(14, 10, 26, 0.1) 34%, rgba(14, 10, 26, 0.34) 78%, rgba(250, 248, 255, 0.12) 100%),
      radial-gradient(circle at 18% 14%, rgba(167, 139, 250, 0.12), transparent 28%),
      radial-gradient(circle at 82% 22%, rgba(244, 114, 182, 0.1), transparent 24%);
  }

  .hero-slide__content {
    align-self: end;
    width: 100%;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .hero-slide__content .badge-pill {
    display: none;
  }

  .hero-slider__controls {
    bottom: 1.4rem;
    gap: 0.8rem;
  }

  .hero-slider__arrow {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.35rem;
  }

  .hero__title {
    font-size: clamp(2.25rem, 10.5vw, 3.1rem);
    line-height: 0.98;
    max-width: 7.4em;
    margin: 0 auto;
    color: rgba(255, 250, 255, 0.96);
    text-shadow:
      0 8px 24px rgba(10, 8, 24, 0.4),
      0 2px 10px rgba(10, 8, 24, 0.28);
  }

  .hero__title .gradient-text {
    background: linear-gradient(135deg, #d98cff 0%, #ff6eb6 58%, #ffae62 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 6px 16px rgba(10, 8, 24, 0.22));
  }

  .hero__copy {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.72rem;
    width: 100%;
    max-width: 18rem;
    margin: 1rem auto 0;
  }

  .hero__actions .button,
  .hero__actions .button-secondary {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
  }

  .hero__trust {
    display: none;
  }

  .section-pad--featured-collection {
    position: relative;
    z-index: 4;
    margin-top: calc(var(--section-space-mobile) * -0.36);
    padding-top: calc(var(--section-space-mobile) + 0.9rem);
    background:
      linear-gradient(180deg, rgba(251, 250, 255, 0) 0%, rgba(251, 250, 255, 0.78) 1.6rem, #fbfaff calc(var(--section-space-mobile) + 0.9rem), #ffffff 100%);
  }


  .page-width,
  .page-width--narrow {
    width: min(calc(100% - 1.25rem), var(--page-width));
  }

  .product-card__media {
    min-height: 138px;
    padding: 0;
  }

  .product-card__meta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .product-card__cta {
    min-height: 2.15rem;
    padding: 0.5rem 0.62rem;
    font-size: 0.68rem;
    width: 100%;
    justify-content: center;
  }

  .product-card__body {
    gap: 0.35rem;
    padding: 0.68rem 0.68rem 0.72rem;
  }

  .product-card__title {
    font-size: 0.86rem;
    min-height: calc(1.16em * 2);
  }

  .price-stack .price {
    font-size: 1.12rem;
  }

  .tag-badge {
    padding: 0.26rem 0.5rem;
    font-size: 0.56rem;
  }

  .product-card__badge {
    top: 0.55rem;
  }

  .product-card__badge--left {
    left: 0.55rem;
  }

  .product-card__badge--right {
    right: 0.55rem;
  }

  .quick-add-sheet {
    grid-template-columns: 1fr;
    max-height: min(88svh, 46rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .quick-add-sheet__media {
    min-height: 0;
    height: clamp(13rem, 44vh, 22rem);
    flex-shrink: 0;
  }

  .quick-add-sheet__body {
    padding: 1.15rem 1rem max(2.5rem, calc(1.4rem + env(safe-area-inset-bottom)));
    overflow: visible;
  }

  .quick-add-form__actions {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .mini-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-feature-list {
    grid-template-columns: 1fr;
  }

  .product-mobile-accordions {
    margin-bottom: 1.2rem;
  }

  .product-mobile-accordion:first-of-type {
    border-top: 0;
  }

  .product-breadcrumbs {
    margin-bottom: 1rem;
  }

  .product-breadcrumbs__desktop {
    display: none;
  }

  .product-breadcrumbs__mobile-back {
    display: inline-flex;
  }

  .product-use-cases__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__inner,
  .cart-shell,
  .page-shell,
  .product-use-cases__card,
  .empty-state,
  .quality-card,
  .testimonial-card {
    padding: 1.45rem;
  }

  .testimonial-slider {
    padding: 0 0 0;
  }

  .testimonial-slider__slide {
    flex-basis: 100%;
  }

  .testimonial-slider__controls {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .testimonial-slider__arrow {
    position: static;
    width: 2.6rem;
    height: 2.6rem;
    margin-top: 0;
    font-size: 0.98rem;
  }

  .testimonial-slider__arrow--prev {
    left: auto;
  }

  .testimonial-slider__arrow--next {
    right: auto;
  }

  .testimonial-slider__dots {
    position: static;
    transform: none;
    gap: 0.42rem;
    width: auto;
    max-width: none;
    overflow: visible;
  }

  .testimonial-slider__dot {
    width: 0.56rem;
    height: 0.56rem;
    flex: 0 0 auto;
  }

  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .quality-showcase__shell {
    padding: 1.15rem;
    border-radius: 26px;
  }

  .quality-showcase__intro {
    margin-bottom: 1rem;
  }

  .quality-showcase-scene__visual {
    --showcase-image-width: min(18.5rem, calc(100% - 1.6rem));
    min-height: 31rem;
    padding: 0.8rem;
    border-radius: 24px;
  }

  .quality-showcase-scene__hint {
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.64rem;
    padding: 0.42rem 0.66rem;
  }

  .quality-showcase-scene__hotspot {
    width: 1rem;
    height: 1rem;
  }

  .quality-showcase-scene__hotspot--1 {
    left: 30%;
    top: 43%;
  }

  .quality-showcase-scene__hotspot--2 {
    left: 69%;
    top: 76%;
  }

  .quality-showcase-scene__hotspot--3 {
    left: 77%;
    top: 52%;
  }

  .quality-showcase-scene__hotspot--4 {
    left: 72%;
    top: 56%;
  }

  .quality-showcase-scene__hotspot--5 {
    left: 66%;
    top: 84%;
  }

  .quality-showcase-scene__card-kicker {
    font-size: 0.66rem;
  }

  .quality-showcase-scene__card h3 {
    font-size: 0.74rem;
    margin-bottom: 0.22rem;
  }

  .quality-showcase-scene__card p {
    font-size: 0.62rem;
    line-height: 1.26;
  }

  .quality-showcase-scene__card--1 {
    left: calc(50% - (var(--showcase-image-width) * 0.5) + (var(--showcase-image-width) * 0.39));
    top: 16%;
  }

  .quality-showcase-scene__card--2 {
    left: calc(50% - (var(--showcase-image-width) * 0.5) + (var(--showcase-image-width) * 0.54));
    top: 65%;
  }

  .quality-showcase-scene__card--3 {
    left: calc(50% - (var(--showcase-image-width) * 0.5) + (var(--showcase-image-width) * 0.52));
    top: 35%;
  }

  .quality-card {
    padding: 0.95rem 0.9rem;
    min-height: 10.9rem;
    border-radius: 20px;
  }

  .quality-card__icon {
    width: 2.45rem;
    height: 2.45rem;
    margin-bottom: 0.72rem;
    border-radius: 14px;
    font-size: 0.86rem;
  }

  .quality-card__title {
    margin-bottom: 0.42rem;
    font-size: 0.92rem;
    min-height: 2.2em;
  }

  .quality-card__copy {
    font-size: 0.74rem;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .site-footer.section-pad {
    padding-top: 1.1rem;
    padding-bottom: 0.9rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-heading--desktop {
    display: none;
  }

  .footer-list--desktop {
    display: none;
  }

  .footer-accordion {
    display: block;
  }

  .footer-heading--mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    cursor: pointer;
  }

  .footer-heading--mobile::after {
    content: '+';
    color: #9f94b3;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 220ms ease;
  }

  .footer-accordion[open] .footer-heading--mobile::after {
    transform: rotate(45deg);
  }

  .footer-accordion > .footer-list {
    padding-top: 0.75rem;
  }

  .footer-brand-row {
    margin-bottom: 0.95rem;
  }

  .footer-heading {
    margin-bottom: 0.8rem;
  }

  .footer-list,
  .footer-list--contact {
    gap: 0.72rem;
  }

  .footer-list a,
  .footer-list p,
  .footer-list li,
  .footer-copy {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .site-footer__bottom {
    flex-direction: column;
    margin-top: 1.1rem;
    padding-top: 0.8rem;
    text-align: center;
    font-size: 0.78rem;
  }

  .site-footer__bottom-text {
    text-align: center;
  }

  .site-footer__payments {
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.15rem;
  }

.site-footer__payment-icon {
  width: 34px;
  height: 22px;
}

.about-page {
  position: relative;
  overflow: hidden;
}

.about-page__inner {
  position: relative;
  z-index: 1;
}

.about-page__hero {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-page__hero .section-title {
  margin-bottom: 1rem;
}

.about-page__lede {
  max-width: 640px;
  margin: 0 auto;
}

.about-page__story {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.about-page__story-media {
  min-height: 340px;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(252, 250, 255, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: 0 24px 54px rgba(123, 96, 173, 0.1);
}

.about-page__story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page__story-copy h2,
.about-page__range-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.05;
  color: var(--ink);
}

.about-page__story-copy p,
.about-page__range-copy p {
  margin: 0 0 1rem;
  color: #74698b;
  font-size: 1.02rem;
  line-height: 1.78;
}

.about-page__story-copy p:last-child,
.about-page__range-copy p:last-child {
  margin-bottom: 0;
}

.about-page__range {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  border: 1px solid rgba(188, 169, 225, 0.28);
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 92, 246, 0.08), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(244, 114, 182, 0.07), transparent 22%),
    linear-gradient(180deg, rgba(251, 249, 255, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 24px 56px rgba(128, 99, 180, 0.08);
}

.about-page__range-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  min-height: 270px;
}

.about-page__tank {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-page__tank img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 176px);
  max-height: 230px;
  filter: drop-shadow(0 18px 32px rgba(102, 77, 153, 0.16));
}

.about-page__tank--purple {
  transform: translateY(-0.2rem);
}

.about-page__tank--purple img {
  max-width: min(100%, 196px);
  max-height: 252px;
}

.about-page__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.about-stat {
  padding: 1.6rem 1.3rem 1.45rem;
  border: 1px solid rgba(194, 180, 225, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  box-shadow: 0 18px 44px rgba(136, 110, 184, 0.08);
}

.about-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.95rem;
  border-radius: 18px;
}

.about-stat__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.about-stat__icon--violet {
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.about-stat__icon--pink {
  color: #fff;
  background: linear-gradient(135deg, #ec4899, #fb7185);
}

.about-stat__icon--orange {
  color: #fff;
  background: linear-gradient(135deg, #fb923c, #f472b6);
}

.about-stat__icon--blue {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.about-stat strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.about-stat p {
  margin: 0;
  color: #9185a7;
  font-size: 0.95rem;
  line-height: 1.55;
}

.about-page__content {
  max-width: 760px;
  margin: clamp(2.75rem, 6vw, 4rem) auto 0;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(194, 180, 225, 0.24);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
}

@media screen and (max-width: 989px) {
  .about-page__hero {
    margin-bottom: 2.8rem;
  }

  .about-page__story,
  .about-page__range {
    grid-template-columns: 1fr;
  }

  .about-page__story {
    gap: 1.5rem;
    margin-bottom: 2.9rem;
  }

  .about-page__story-media {
    min-height: 260px;
  }

  .about-page__range {
    gap: 1.4rem;
    padding: 1.4rem;
    margin-bottom: 2.9rem;
    border-radius: 28px;
  }

  .about-page__range-visual {
    min-height: 180px;
    gap: 0.65rem;
  }

  .about-page__tank img {
    max-width: min(100%, 120px);
    max-height: 156px;
  }

  .about-page__tank--purple img {
    max-width: min(100%, 132px);
    max-height: 170px;
  }

  .about-page__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .about-stat {
    padding: 1.2rem 0.95rem 1.1rem;
    border-radius: 20px;
  }

  .about-stat strong {
    font-size: 1.28rem;
  }

  .about-stat p {
    font-size: 0.86rem;
  }

  .about-page__content {
    padding: 1.2rem 1rem;
    border-radius: 22px;
  }
}

.about-hero {
  padding-top: calc(var(--section-space-desktop) * 0.62);
  padding-bottom: 0.15rem;
}

.about-hero .page-width,
.about-story .page-width {
  width: min(calc(100% - 2rem), 1320px);
}

.about-hero__content {
  max-width: 880px;
  margin: 0 auto;
}

.about-hero .section-title {
  margin-bottom: 1rem;
  font-size: clamp(2.65rem, 4vw, 3.6rem);
}

.about-hero__copy {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.04rem;
  line-height: 1.72;
  color: #96a0b4;
}

.about-story {
  padding-top: 0;
}

.about-story__shell,
.about-range__shell {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.about-story__shell {
  max-width: 1200px;
  margin: clamp(2.6rem, 5vw, 4.2rem) auto 0;
  grid-template-columns: minmax(320px, 0.94fr) minmax(340px, 0.86fr);
  gap: clamp(1.5rem, 2.5vw, 2.4rem);
}

.about-hero .about-story__shell {
  display: grid !important;
  grid-template-columns: minmax(320px, 0.94fr) minmax(340px, 0.86fr) !important;
  align-items: center;
}

.about-story__media {
  min-height: 320px;
  max-width: 700px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 22px 48px rgba(115, 96, 157, 0.12);
}

.about-story__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.about-story__copy {
  padding: 0;
  max-width: 520px;
}

.about-story__copy h2,
.about-range__copy h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.95rem, 2.15vw, 2.45rem);
  line-height: 1.12;
  color: var(--ink);
}

.about-story__copy p {
  margin: 0 0 1rem;
  color: #7f899d;
  font-size: 1rem;
  line-height: 1.72;
}

.about-story__copy p:last-child {
  margin-bottom: 0;
}

.contact-page {
  position: relative;
}

.contact-hero {
  max-width: 760px;
  margin: 0 auto 2.7rem;
  text-align: center;
}

.contact-hero__copy {
  max-width: 40rem;
  margin: 0 auto;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.contact-panel {
  border-radius: 30px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(126, 96, 182, 0.08);
}

.contact-panel--info {
  padding: 1.3rem;
}

.contact-panel--form {
  padding: 1.45rem;
}

.contact-card-grid {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.2rem 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 255, 0.95));
}

.contact-card__label,
.contact-note__label {
  margin-bottom: 0.65rem;
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card__title,
.contact-note__title {
  margin: 0 0 0.6rem;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1.12;
}

.contact-card__copy,
.contact-note__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.68;
}

.contact-card__link,
.contact-details__link {
  color: var(--violet-deep);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1px;
  transition: color 180ms ease, text-decoration-thickness 180ms ease;
}

.contact-card__link:hover,
.contact-details__link:hover {
  color: var(--pink);
  text-decoration-thickness: 2px;
}

.contact-card__link,
.contact-card__meta {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--violet-deep);
  font-weight: 600;
}

.contact-note {
  margin-top: 1rem;
  padding: 1.35rem 1.2rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(249, 245, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.contact-page__content {
  margin-top: 1rem;
  padding: 1.25rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(139, 92, 246, 0.08);
  background: rgba(255, 255, 255, 0.66);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form__header .section-title {
  margin: 0.75rem 0 0.85rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form__field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-weight: 600;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.contact-form__field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: 0;
  border-color: rgba(139, 92, 246, 0.32);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
}

.contact-form__alert {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.contact-form__alert--success {
  color: #0f6a4d;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.contact-form__alert--error {
  color: #a23b59;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.14);
}

.contact-form__alert ul {
  margin: 0;
  padding-left: 1.1rem;
}

.contact-form__submit {
  width: 100%;
  min-height: 58px;
}

.about-range {
  padding-top: calc(var(--section-space-desktop) * 0.18);
}

.about-range__shell {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  padding: clamp(2.2rem, 4vw, 3.4rem);
  border: 1px solid rgba(196, 181, 253, 0.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 20%, rgba(139, 92, 246, 0.1), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(244, 114, 182, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(252, 250, 255, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 24px 56px rgba(107, 79, 158, 0.09);
}

.about-range__copy .section-copy {
  max-width: 23rem;
  color: #7f899d;
  font-size: 1rem;
  line-height: 1.75;
}

.about-range__visual {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

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

.about-range__benefit {
  padding: 1.2rem 1.15rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(196, 181, 253, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.96));
  box-shadow: 0 14px 30px rgba(136, 110, 184, 0.06);
}

.about-range__benefit-kicker {
  margin-bottom: 0.7rem;
  color: #8b5cf6;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-range__benefit-title {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.about-range__benefit-copy {
  margin: 0;
  color: #7f899d;
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-range__image-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 13.2rem;
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(118, 101, 164, 0.14);
}

.about-range__image-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 15.6rem;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(30, 19, 62, 0.22));
}

.about-range__image-card--purple {
  background:
    radial-gradient(circle at 50% 32%, rgba(177, 126, 255, 0.35), transparent 30%),
    linear-gradient(180deg, rgba(41, 16, 77, 0.16), rgba(41, 16, 77, 0)),
    linear-gradient(180deg, #1f0d3e 0%, #442170 42%, #311555 100%);
}

.about-range__image-card--rainbow {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(145deg, #ffe7d2 0%, #ff9c63 32%, #ff6ea0 58%, #37aaff 84%, #1264ff 100%);
}

.about-stats-section {
  padding-top: calc(var(--section-space-desktop) * 0.22);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.about-stat-card {
  padding: 1.4rem 1rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(194, 180, 225, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 255, 0.94));
  text-align: center;
  box-shadow: 0 14px 30px rgba(136, 110, 184, 0.08);
}

.about-stat-card__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.95rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 24px rgba(122, 96, 178, 0.2);
}

.about-stat-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.about-stat-card__value {
  margin: 0 0 0.35rem;
  font-size: 1.26rem;
  line-height: 1.08;
  color: var(--ink);
}

.about-stat-card__label {
  margin: 0;
  color: #98a0b2;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media screen and (max-width: 540px) {
  .contact-card,
  .contact-note,
  .contact-page__content {
    padding: 1rem 0.95rem;
    border-radius: 22px;
  }

  .contact-panel--info,
  .contact-panel--form {
    border-radius: 26px;
    padding: 1rem;
  }

  .contact-card__title,
  .contact-note__title {
    font-size: 1.22rem;
  }

  .contact-form__header .section-title {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .about-hero {
    padding-top: calc(var(--section-space-mobile) * 0.5);
    padding-bottom: 0.7rem;
  }

  .about-hero .page-width,
  .about-story .page-width {
    width: min(calc(100% - 1.5rem), 1320px);
  }

  .about-story,
  .about-range,
  .about-stats-section {
    padding-top: calc(var(--section-space-mobile) * 0.08);
  }

  .about-story__shell,
  .about-range__shell {
    grid-template-columns: 1fr;
  }

  .about-hero .about-story__shell {
    grid-template-columns: 1fr !important;
  }

  .about-story__media {
    min-height: 250px;
    border-radius: 24px;
  }

  .about-story__media img {
    border-radius: 24px;
  }

  .about-hero .section-title {
    font-size: clamp(2.3rem, 10vw, 3.3rem);
  }

  .about-hero__copy {
    font-size: 1rem;
    max-width: 34rem;
  }

  .about-story__copy h2,
  .about-range__copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .about-story__copy p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-range__shell {
    padding: 1.35rem;
    border-radius: 28px;
  }

  .about-range__copy .section-copy {
    max-width: none;
  }

  .about-range__visual {
    gap: 0.85rem;
  }

  .about-range__benefits {
    grid-template-columns: 1fr;
  }

  .about-range__benefit {
    padding: 1rem 0.95rem 0.95rem;
  }

  .about-range__image-card {
    min-height: 10.5rem;
    padding: 1rem;
  }

  .about-range__image-card img {
    max-height: 11.8rem;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .about-stat-card {
    padding: 1.18rem 0.95rem 1.06rem;
    border-radius: 20px;
  }

  .about-stat-card__value {
    font-size: 1.24rem;
  }

  .about-stat-card__label {
    font-size: 0.86rem;
  }
}

@media screen and (min-width: 541px) and (max-width: 989px) {
  .about-story__shell {
    grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 0.88fr);
    gap: 1.25rem;
  }

  .about-hero .about-story__shell {
    grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 0.88fr) !important;
  }

  .about-story__media {
    min-height: 260px;
    max-width: 100%;
  }

  .about-story__copy h2 {
    font-size: 1.95rem;
    margin-bottom: 0.9rem;
  }

  .about-story__copy p {
    font-size: 0.95rem;
    line-height: 1.58;
    margin-bottom: 0.85rem;
  }

  .about-range__shell {
    grid-template-columns: 1fr;
  }

  .about-range__copy .section-copy {
    max-width: none;
  }

  .about-range__benefits {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 541px) and (max-width: 820px) {
  .about-story__shell,
  .about-hero .about-story__shell {
    grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 0.9fr) !important;
  }

  .about-story__media {
    min-height: 220px;
  }

  .about-story__copy {
    max-width: none;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .testimonial-slider__slide {
    flex-basis: calc((100% - 1.25rem) / 2);
  }
}

/* Unified heading scale */
:root {
  --heading-page-desktop: clamp(2.75rem, 3.6vw, 3.55rem);
  --heading-section-desktop: clamp(2.25rem, 3vw, 3rem);
  --heading-subsection-desktop: clamp(1.45rem, 1.8vw, 1.9rem);
  --heading-card-desktop: 1.12rem;
  --heading-hero-desktop: clamp(3.6rem, 7vw, 6.2rem);
  --heading-page-mobile: clamp(2rem, 8.5vw, 2.45rem);
  --heading-section-mobile: clamp(1.85rem, 7.4vw, 2.22rem);
  --heading-subsection-mobile: clamp(1.24rem, 5.2vw, 1.48rem);
  --heading-card-mobile: 1rem;
  --heading-hero-mobile: clamp(2.35rem, 10vw, 2.95rem);
  --heading-line-tight: 1.08;
  --heading-line-normal: 1.16;
  --heading-gap-page: 1rem;
  --heading-gap-section: 0.85rem;
  --heading-gap-card: 0.48rem;
}

.section-header {
  margin-bottom: var(--section-header-space-desktop) !important;
}

.section-title,
.product-title,
.card-title,
.hero__title,
.collection-sidebar__title,
.contact-card__title,
.contact-note__title,
.contact-details__title,
.contact-hero__mini-title,
.product-use-cases__card-title,
.about-range__benefit-title,
.quality-showcase-scene__card h3,
.quick-add-sheet__title,
.cart-drawer__title {
  font-family: "Space Grotesk", sans-serif !important;
  letter-spacing: 0 !important;
}

.section-title,
.product-title {
  margin: 0 0 var(--heading-gap-section) !important;
  font-size: var(--heading-section-desktop) !important;
  line-height: var(--heading-line-tight) !important;
}

h1.section-title,
.product-title {
  font-size: var(--heading-page-desktop) !important;
  margin-bottom: var(--heading-gap-page) !important;
}

.hero__title {
  font-size: var(--heading-hero-desktop) !important;
  line-height: 0.98 !important;
  margin: 0 0 1.1rem !important;
}

.card-title,
.about-story__copy h2,
.about-range__copy h2,
.contact-form__header .section-title,
.complementary-card .section-title {
  font-size: var(--heading-subsection-desktop) !important;
  line-height: var(--heading-line-normal) !important;
  margin: 0 0 var(--heading-gap-section) !important;
}

.collection-sidebar__title,
.contact-card__title,
.contact-note__title,
.contact-details__title,
.contact-hero__mini-title,
.product-use-cases__card-title,
.about-range__benefit-title,
.quality-showcase-scene__card h3,
.quick-add-sheet__title,
.cart-drawer__title {
  font-size: var(--heading-card-desktop) !important;
  line-height: var(--heading-line-normal) !important;
  margin: 0 0 var(--heading-gap-card) !important;
}

.section-copy,
.about-hero__copy,
.about-story__copy p,
.about-range__copy .section-copy,
.contact-details__copy .section-copy {
  font-size: 1rem !important;
  line-height: 1.72 !important;
}

@media screen and (max-width: 749px) {
  .section-header {
    margin-bottom: var(--section-header-space-mobile) !important;
  }

  .section-title,
  .product-title {
    font-size: var(--heading-section-mobile) !important;
    line-height: var(--heading-line-tight) !important;
    margin-bottom: 0.68rem !important;
  }

  h1.section-title,
  .product-title {
    font-size: var(--heading-page-mobile) !important;
    margin-bottom: 0.72rem !important;
  }

  .hero__title {
    font-size: var(--heading-hero-mobile) !important;
    line-height: 1 !important;
    margin: 0 auto !important;
  }

  .card-title,
  .about-story__copy h2,
  .about-range__copy h2,
  .contact-form__header .section-title,
  .complementary-card .section-title {
    font-size: var(--heading-subsection-mobile) !important;
    line-height: var(--heading-line-normal) !important;
    margin-bottom: 0.65rem !important;
  }

  .collection-sidebar__title,
  .contact-card__title,
  .contact-note__title,
  .contact-details__title,
  .contact-hero__mini-title,
  .product-use-cases__card-title,
  .about-range__benefit-title,
  .quality-showcase-scene__card h3,
  .quick-add-sheet__title,
  .cart-drawer__title {
    font-size: var(--heading-card-mobile) !important;
    line-height: var(--heading-line-normal) !important;
    margin-bottom: 0.42rem !important;
  }

  .section-copy,
  .about-hero__copy,
  .about-story__copy p,
  .about-range__copy .section-copy,
  .contact-details__copy .section-copy {
    font-size: 0.94rem !important;
    line-height: 1.62 !important;
  }
}

@media screen and (min-width: 750px) {
  .hero-slide__overlay {
    background:
      linear-gradient(180deg, rgba(14, 10, 26, 0.03) 0%, rgba(14, 10, 26, 0.08) 52%, rgba(14, 10, 26, 0.42) 100%),
      radial-gradient(circle at 50% 86%, rgba(14, 10, 26, 0.34), transparent 30%) !important;
  }

  .hero-slide__content {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: clamp(3.1rem, 8vh, 5.4rem) !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 0 !important;
    width: min(calc(100% - 2rem), 46rem) !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .hero-slide__content .badge-pill {
    margin-bottom: 1rem !important;
  }

  .hero-slide__content .hero__title,
  .hero-slide__content .hero__copy,
  .hero-slide__content .hero__trust {
    max-width: 34rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-slide__content .hero__title {
    font-size: clamp(2.85rem, 4.7vw, 5rem) !important;
    color: rgba(255, 250, 255, 0.96);
    text-shadow: 0 10px 30px rgba(10, 8, 24, 0.42);
  }

  .hero-slide__content .hero__copy {
    margin-bottom: 1.35rem !important;
    color: rgba(255, 250, 255, 0.82) !important;
  }

  .hero-slide__content .hero__actions,
  .hero-slide__content .cta-actions,
  .hero-slide__content .product-actions {
    justify-content: center !important;
    gap: 0.8rem !important;
  }

  .hero-slide__content .hero__trust {
    margin-top: 1.05rem !important;
    color: rgba(255, 250, 255, 0.74) !important;
    letter-spacing: 0.08em !important;
  }
}

/* Position-aware hero slides. Each slide can choose where its copy sits. */
.hero-slide__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
}

.hero-slide__content .button,
.hero-slide__content .button-secondary {
  pointer-events: auto;
}

.hero-slide__content .hero__title:empty,
.hero-slide__content .hero__copy:empty,
.hero-slide__content .hero__trust:empty {
  display: none;
}

@media screen and (min-width: 750px) {
  .hero-slide__content {
    position: absolute !important;
    z-index: 2 !important;
    width: min(calc(100% - 4rem), 48rem) !important;
    min-height: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .hero-slide__content .badge-pill,
  .hero-slide__content .hero__title,
  .hero-slide__content .hero__copy,
  .hero-slide__content .hero__trust {
    max-width: 34rem !important;
  }

  .hero-slide__content .hero__actions {
    width: 100% !important;
  }

  .hero-slide--desktop-bottom-center .hero-slide__content {
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: clamp(3.4rem, 9vh, 6rem) !important;
    align-items: center !important;
    text-align: center !important;
    transform: translateX(-50%) !important;
  }

  .hero-slide--desktop-center .hero-slide__content {
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    bottom: auto !important;
    align-items: center !important;
    text-align: center !important;
    transform: translate(-50%, -50%) !important;
  }

  .hero-slide--desktop-left-center .hero-slide__content {
    left: max(2rem, calc((100vw - var(--page-width)) / 2 + 2rem)) !important;
    right: auto !important;
    top: 50% !important;
    bottom: auto !important;
    align-items: flex-start !important;
    text-align: left !important;
    transform: translateY(-50%) !important;
  }

  .hero-slide--desktop-right-center .hero-slide__content {
    left: auto !important;
    right: max(2rem, calc((100vw - var(--page-width)) / 2 + 2rem)) !important;
    top: 50% !important;
    bottom: auto !important;
    align-items: flex-end !important;
    text-align: right !important;
    transform: translateY(-50%) !important;
  }

  .hero-slide--desktop-bottom-left .hero-slide__content {
    left: max(2rem, calc((100vw - var(--page-width)) / 2 + 2rem)) !important;
    right: auto !important;
    top: auto !important;
    bottom: clamp(3.4rem, 9vh, 6rem) !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .hero-slide--desktop-bottom-right .hero-slide__content {
    left: auto !important;
    right: max(2rem, calc((100vw - var(--page-width)) / 2 + 2rem)) !important;
    top: auto !important;
    bottom: clamp(3.4rem, 9vh, 6rem) !important;
    align-items: flex-end !important;
    text-align: right !important;
  }

  .hero-slide--desktop-bottom-center .hero__actions,
  .hero-slide--desktop-center .hero__actions {
    justify-content: center !important;
  }

  .hero-slide--desktop-left-center .hero__actions,
  .hero-slide--desktop-bottom-left .hero__actions {
    justify-content: flex-start !important;
  }

  .hero-slide--desktop-right-center .hero__actions,
  .hero-slide--desktop-bottom-right .hero__actions {
    justify-content: flex-end !important;
  }

  .hero-slide--desktop-bottom-center .hero-slide__overlay,
  .hero-slide--desktop-bottom-left .hero-slide__overlay,
  .hero-slide--desktop-bottom-right .hero-slide__overlay {
    background:
      linear-gradient(180deg, rgba(14, 10, 26, 0.02) 0%, rgba(14, 10, 26, 0.08) 54%, rgba(14, 10, 26, 0.44) 100%),
      radial-gradient(circle at 50% 86%, rgba(14, 10, 26, 0.32), transparent 32%) !important;
  }

  .hero-slide--desktop-left-center .hero-slide__overlay {
    background:
      linear-gradient(90deg, rgba(14, 10, 26, 0.48) 0%, rgba(14, 10, 26, 0.24) 34%, rgba(14, 10, 26, 0.08) 68%),
      linear-gradient(180deg, rgba(14, 10, 26, 0.04) 0%, rgba(14, 10, 26, 0.22) 100%) !important;
  }

  .hero-slide--desktop-right-center .hero-slide__overlay {
    background:
      linear-gradient(270deg, rgba(14, 10, 26, 0.48) 0%, rgba(14, 10, 26, 0.24) 34%, rgba(14, 10, 26, 0.08) 68%),
      linear-gradient(180deg, rgba(14, 10, 26, 0.04) 0%, rgba(14, 10, 26, 0.22) 100%) !important;
  }
}

@media screen and (max-width: 749px) {
  .hero-slide__content {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    width: min(calc(100% - 1.1rem), 30rem) !important;
    min-height: 0 !important;
    padding: 0 0 1rem !important;
    align-items: center !important;
    text-align: center !important;
    transform: translateX(-50%) !important;
  }

  .hero-slide--mobile-bottom-center .hero-slide__content {
    top: auto !important;
    bottom: 0.8rem !important;
  }

  .hero-slide--mobile-center .hero-slide__content {
    top: 50% !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
  }

  .hero-slide--mobile-top-center .hero-slide__content {
    top: 1.5rem !important;
    bottom: auto !important;
  }
}
