:root {
  --bg: #080a17;
  --bg-soft: #0f1330;
  --paper: rgba(11, 15, 34, 0.76);
  --paper-strong: rgba(14, 20, 46, 0.9);
  --paper-soft: rgba(15, 20, 46, 0.68);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --ink: #f6ecdd;
  --ink-soft: #c5c8dc;
  --accent: #f2a46d;
  --accent-dark: #cf7a45;
  --accent-cool: #8ac9ff;
  --glass-border: rgba(192, 219, 255, 0.22);
  --glass-border-soft: rgba(255, 255, 255, 0.14);
  --glass-highlight: rgba(255, 255, 255, 0.18);
  --glass-cool: rgba(138, 201, 255, 0.2);
  --shadow: 0 30px 80px rgba(2, 4, 14, 0.5);
  --shadow-soft: 0 18px 50px rgba(3, 5, 18, 0.32);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Space Grotesk", sans-serif;
  --font-brand: "Cormorant Garamond", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background-color: var(--bg);
  background:
    radial-gradient(circle at 14% 12%, rgba(114, 84, 180, 0.42), transparent 26%),
    radial-gradient(circle at 84% 16%, rgba(47, 111, 187, 0.28), transparent 21%),
    radial-gradient(circle at 76% 80%, rgba(242, 164, 109, 0.18), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(231, 112, 177, 0.24), transparent 25%),
    radial-gradient(circle at 54% 34%, rgba(104, 134, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #050711 0%, #090d1d 22%, #0b1125 52%, #0d1430 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  color-scheme: dark;
  hyphens: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.74;
  background:
    radial-gradient(circle at 6% 16%, rgba(255, 255, 255, 0.74) 0 1px, transparent 1.8px),
    radial-gradient(circle at 12% 48%, rgba(138, 201, 255, 0.42) 0 1.1px, transparent 1.8px),
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.54) 0 1px, transparent 1.8px),
    radial-gradient(circle at 28% 22%, rgba(242, 164, 109, 0.34) 0 1.2px, transparent 2px),
    radial-gradient(circle at 36% 14%, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.8px),
    radial-gradient(circle at 48% 18%, rgba(138, 201, 255, 0.46) 0 1.2px, transparent 1.9px),
    radial-gradient(circle at 58% 10%, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.8px),
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.66) 0 1px, transparent 1.8px),
    radial-gradient(circle at 84% 14%, rgba(242, 164, 109, 0.34) 0 1.2px, transparent 1.9px),
    radial-gradient(circle at 92% 34%, rgba(255, 255, 255, 0.52) 0 1px, transparent 1.8px),
    radial-gradient(circle at 76% 64%, rgba(138, 201, 255, 0.46) 0 1.1px, transparent 1.9px),
    radial-gradient(circle at 62% 78%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1.8px),
    radial-gradient(circle at 44% 86%, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.8px),
    radial-gradient(circle at 22% 80%, rgba(242, 164, 109, 0.28) 0 1.1px, transparent 1.9px),
    radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.8px);
  transform: scale(1.01);
}

body::after {
  content: "";
  position: fixed;
  inset: -18% -12%;
  pointer-events: none;
  opacity: 0.58;
  background:
    radial-gradient(ellipse at 32% 54%, rgba(117, 136, 255, 0.16), transparent 36%),
    radial-gradient(ellipse at 54% 48%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(ellipse at 70% 42%, rgba(242, 164, 109, 0.12), transparent 28%),
    linear-gradient(
      114deg,
      transparent 25%,
      rgba(255, 255, 255, 0.02) 36%,
      rgba(138, 201, 255, 0.08) 46%,
      rgba(255, 255, 255, 0.07) 52%,
      rgba(242, 164, 109, 0.05) 58%,
      transparent 72%
    );
  filter: blur(18px);
  transform: rotate(-14deg) scale(1.08);
}

.cosmos-comets {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.cosmos-comet {
  position: absolute;
  width: clamp(120px, 14vw, 220px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(175, 211, 255, 0.82) 26%,
    rgba(255, 255, 255, 0.96) 48%,
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(168, 205, 255, 0.68));
  transform-origin: center;
  will-change: transform, opacity;
}

.cosmos-comet::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(138, 201, 255, 0.5) 56%,
    rgba(138, 201, 255, 0) 100%
  );
  transform: translateY(-50%);
  box-shadow: 0 0 16px rgba(206, 227, 255, 0.64);
}

.cosmos-comet--one {
  top: 14%;
  left: -28%;
  transform: rotate(-14deg);
}

.cosmos-comet--two {
  top: 34%;
  left: -26%;
  transform: rotate(-11deg);
}

.cosmos-comet--three {
  top: 62%;
  left: -30%;
  transform: rotate(-16deg);
}

body.cart-open {
  overflow: hidden;
}

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

a,
button,
input,
textarea,
summary {
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(242, 164, 109, 0.92);
  outline-offset: 3px;
}

p {
  text-wrap: pretty;
}

h1,
h2,
.brand__name,
.collection-card__title {
  text-wrap: balance;
}

h3 {
  text-wrap: pretty;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.page-shell {
  position: relative;
  isolation: isolate;
  width: min(1380px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 8% auto auto 50%;
  z-index: -1;
  width: min(52vw, 760px);
  height: min(52vw, 760px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(102, 123, 255, 0.22) 0%, rgba(102, 123, 255, 0.03) 48%, transparent 72%);
  transform: translateX(-50%);
  filter: blur(26px);
  pointer-events: none;
}

.page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.54;
  background:
    radial-gradient(ellipse at 22% 32%, rgba(92, 116, 255, 0.16), transparent 26%),
    radial-gradient(ellipse at 76% 24%, rgba(142, 173, 255, 0.12), transparent 22%),
    radial-gradient(ellipse at 60% 70%, rgba(242, 164, 109, 0.08), transparent 18%),
    linear-gradient(
      116deg,
      transparent 18%,
      rgba(109, 132, 255, 0.06) 36%,
      rgba(255, 255, 255, 0.08) 45%,
      rgba(138, 201, 255, 0.07) 51%,
      rgba(242, 164, 109, 0.05) 58%,
      transparent 72%
    );
  filter: blur(12px);
}

.glass-panel,
.section-card,
.product-card,
.contact-card,
.cart-drawer,
.hero-panel,
.mini-collection,
.story-card {
  backdrop-filter: blur(22px) saturate(128%);
  -webkit-backdrop-filter: blur(22px) saturate(128%);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 252px minmax(320px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.12), transparent 30%),
    radial-gradient(circle at 80% -30%, rgba(138, 201, 255, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(18, 25, 56, 0.76), rgba(10, 15, 37, 0.64));
  box-shadow:
    0 14px 36px rgba(4, 7, 20, 0.32),
    0 2px 0 rgba(255, 255, 255, 0.08) inset,
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(
      148deg,
      var(--glass-highlight) 0%,
      rgba(255, 255, 255, 0.08) 18%,
      rgba(138, 201, 255, 0.07) 44%,
      transparent 66%
    );
  opacity: 0.62;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 42%;
  right: -14%;
  bottom: -120%;
  height: 150px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(138, 201, 255, 0.2), transparent 72%);
  filter: blur(8px);
}

.topbar > * {
  position: relative;
  z-index: 1;
}

.brand {
  grid-column: 1;
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
  width: 252px;
  min-width: 0;
}

.topbar .brand {
  transform: translateX(16px);
}

.brand__logo {
  display: block;
  width: min(100%, 252px);
  height: auto;
  filter:
    brightness(0) saturate(100%) invert(94%) sepia(27%) saturate(389%)
    hue-rotate(317deg) brightness(107%) contrast(99%)
    drop-shadow(0 16px 24px rgba(3, 5, 18, 0.24));
  opacity: 0.96;
}

.brand__tag {
  display: block;
  width: min(100%, 252px);
  padding-left: 24px;
  color: rgba(246, 236, 221, 0.76);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.topnav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 24px);
  color: var(--ink-soft);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  flex-wrap: nowrap;
}

.topnav a {
  display: inline-flex;
  align-items: center;
  padding: 6px 2px;
  white-space: nowrap;
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(246, 236, 221, 0.82);
  transition: color 160ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--ink);
}

.cart-trigger {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  justify-content: flex-end;
  width: auto;
  min-width: 0;
  flex-shrink: 0;
  padding: 6px 0;
  border-radius: 0;
  background: transparent;
  color: rgba(246, 236, 221, 0.9);
  box-shadow: none;
  font-weight: 700;
  margin-right: 10px;
  cursor: pointer;
}

.cart-trigger__icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 14px;
  flex-shrink: 0;
  background: transparent;
  box-shadow: none;
}

.cart-trigger__icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 9px;
  border-radius: 2px;
  border: 2px solid rgba(246, 236, 221, 0.94);
  border-top: 0;
}

.cart-trigger__icon::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 10px;
  height: 6px;
  border-radius: 10px 10px 0 0;
  border: 2px solid rgba(246, 236, 221, 0.94);
  border-bottom: 0;
}

.cart-trigger__label {
  line-height: 1;
  white-space: nowrap;
}

.cart-trigger__count {
  min-width: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.section-card,
.footer {
  margin-top: 24px;
}

.section-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(123, 145, 255, 0.18), transparent 28%),
    radial-gradient(circle at -8% -20%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(13, 18, 40, 0.74), rgba(9, 13, 30, 0.58));
  box-shadow:
    0 24px 60px rgba(2, 4, 14, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 28%),
    radial-gradient(circle at bottom left, rgba(242, 164, 109, 0.08), transparent 24%);
}

.section-card::after {
  content: none;
}

.section-card--hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.hero__copy {
  position: relative;
  min-height: 100%;
  padding-bottom: clamp(160px, 14vw, 230px);
}

.hero__copy > :not(.hero__galaxy) {
  position: relative;
  z-index: 1;
}

.hero__galaxy {
  position: absolute;
  left: -34px;
  bottom: -62px;
  width: min(74%, 520px);
  margin: 0;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  filter:
    drop-shadow(0 22px 28px rgba(15, 30, 86, 0.34))
    drop-shadow(0 8px 26px rgba(242, 164, 109, 0.16));
}

.hero__galaxy img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cart-drawer h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 22ch;
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
  line-height: 1.04;
  text-wrap: pretty;
  text-shadow: 0 8px 28px rgba(9, 12, 31, 0.42);
}

.hero__line-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.hero__lead,
.section-copy,
.mini-collection p,
.story-card p,
.product-card__description,
.product-card__note,
.contact-card p,
.cart-drawer__lead,
.cart-summary__note,
.footer__note {
  color: var(--ink-soft);
}

.hero__lead {
  max-width: 42ch;
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-badge strong {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffbf82);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(242, 164, 109, 0.22);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(242, 164, 109, 0.28);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  background: linear-gradient(135deg, rgba(140, 146, 170, 0.52), rgba(104, 112, 138, 0.52));
  color: rgba(233, 237, 252, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: none;
}

.button:disabled:hover,
.button:disabled:focus-visible,
.button[aria-disabled="true"]:hover,
.button[aria-disabled="true"]:focus-visible {
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.button--product {
  padding-inline: 18px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.hero-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-shortcut {
  display: grid;
  gap: 10px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 23, 52, 0.9), rgba(10, 14, 31, 0.72));
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.hero-shortcut:hover,
.hero-shortcut:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(142, 192, 255, 0.42);
  background: linear-gradient(165deg, rgba(30, 45, 95, 0.94), rgba(13, 22, 58, 0.86));
}

.hero-shortcut.is-active {
  transform: translateY(-1px);
  border-color: rgba(146, 198, 255, 0.72);
  background: linear-gradient(160deg, rgba(28, 58, 134, 0.78), rgba(9, 24, 72, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(182, 217, 255, 0.2),
    0 10px 26px rgba(12, 28, 83, 0.45);
}

.hero-shortcut.is-active .hero-shortcut__count {
  color: #d8ecff;
}

.hero-shortcut__title {
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-shortcut__count {
  color: var(--accent-cool);
  font-size: 1rem;
  font-weight: 800;
}

.hero-shortcut__desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.hero__stats li,
.mini-collection,
.story-card,
.contact-card {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-soft);
}

.hero__stats strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
}

.hero__stats span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.hero__collections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mini-collection {
  min-height: 100%;
}

.mini-collection__title {
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 700;
}

.hero__visual {
  display: grid;
  gap: 18px;
}

.hero-panel {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border-soft);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(17, 23, 52, 0.78), rgba(11, 16, 36, 0.62));
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero-panel--brand {
  padding: 26px;
  min-height: 300px;
}

.hero-panel--brand::before {
  content: "";
  position: absolute;
  inset: auto auto -24% -12%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 164, 109, 0.18), transparent 66%);
  filter: blur(6px);
}

.hero-panel--brand::after {
  content: none;
}

.brand-showcase {
  position: relative;
  min-height: 100%;
  display: grid;
  gap: 12px;
  align-content: start;
  z-index: 1;
}

.brand-showcase__eyebrow {
  margin: 0;
  color: var(--accent-cool);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-showcase__logo {
  width: min(100%, 380px);
  height: auto;
  margin-left: 4px;
  filter:
    brightness(0) saturate(100%) invert(94%) sepia(27%) saturate(389%)
    hue-rotate(317deg) brightness(107%) contrast(99%)
    drop-shadow(0 22px 28px rgba(3, 5, 18, 0.26));
  opacity: 0.96;
}

.brand-showcase__tagline {
  margin: -4px 0 4px;
  width: min(100%, 380px);
  padding: 0;
  text-align: center;
  color: rgba(246, 236, 221, 0.78);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-showcase__copy {
  max-width: 30ch;
  margin: 0;
  line-height: 1.58;
}

.brand-showcase__list {
  display: grid;
  gap: 10px;
  max-width: 36ch;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.brand-showcase__list li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.brand-showcase__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.55em;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), rgba(255, 235, 214, 0.92));
  box-shadow: 0 0 16px rgba(242, 164, 109, 0.42);
}

.brand-showcase__stars {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(220px, 48%);
  aspect-ratio: 1;
}

.brand-showcase__stars span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
}

.brand-showcase__stars span:nth-child(1) {
  top: 10%;
  right: 14%;
  width: 86px;
  height: 86px;
  box-shadow: 0 0 26px rgba(152, 183, 255, 0.24);
}

.brand-showcase__stars span:nth-child(2) {
  top: 2%;
  left: 28%;
  width: 12px;
  height: 12px;
}

.brand-showcase__stars span:nth-child(3) {
  top: 36%;
  left: 4%;
  width: 8px;
  height: 8px;
}

.brand-showcase__stars span:nth-child(4) {
  bottom: 18%;
  left: 24%;
  width: 18px;
  height: 18px;
}

.brand-showcase__stars span:nth-child(5) {
  right: 22%;
  bottom: 8%;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.brand-showcase__stars span:nth-child(6) {
  top: 22%;
  right: 38%;
  width: 10px;
  height: 10px;
}

.brand-showcase__stars span:nth-child(7) {
  bottom: 22%;
  right: 8%;
  width: 14px;
  height: 14px;
}

.brand-showcase__stars span:nth-child(8) {
  top: 44%;
  right: 4%;
  width: 54px;
  height: 54px;
  box-shadow: 0 0 22px rgba(242, 164, 109, 0.18);
}

.hero-panel--featured img,
.story__image img,
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-panel--details {
  padding: 24px;
  min-height: 294px;
  background:
    radial-gradient(circle at top left, rgba(242, 164, 109, 0.22), transparent 32%),
    radial-gradient(circle at 86% 88%, rgba(138, 201, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(17, 23, 52, 0.92), rgba(11, 16, 36, 0.82));
}

.hero-panel--details::before {
  content: "";
  position: absolute;
  inset: auto -18% -8% auto;
  width: 260px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(138, 201, 255, 0.14), transparent 68%);
  filter: blur(14px);
  opacity: 0.9;
}

.hero-panel--details::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.46) 0 1px, transparent 1.8px),
    radial-gradient(circle at 82% 24%, rgba(138, 201, 255, 0.4) 0 1px, transparent 1.8px),
    radial-gradient(circle at 66% 78%, rgba(242, 164, 109, 0.32) 0 1px, transparent 1.8px),
    radial-gradient(circle at 26% 74%, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.8px);
  opacity: 0.72;
}

.hero-panel__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--accent-cool);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel__title {
  position: relative;
  z-index: 1;
  max-width: 21ch;
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.48rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-panel__title-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-panel__text {
  position: relative;
  z-index: 1;
  max-width: 37ch;
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.64;
}

.hero-panel__points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.hero-point {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-soft);
}

.hero-point strong {
  display: block;
  margin: 0;
  font-size: 1.03rem;
}

.hero-point span {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  line-height: 1.46;
}

.hero-panel--featured {
  display: grid;
  gap: 0;
  padding: 20px;
  align-items: center;
}

.hero-panel--featured img {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.15), transparent 20%),
    linear-gradient(180deg, rgba(18, 24, 52, 0.96), rgba(10, 14, 31, 0.72));
  object-fit: contain;
  object-position: center;
  padding: 16px;
}

.hero-panel__caption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(8, 11, 26, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 32px rgba(2, 4, 14, 0.34);
}

.hero-panel__caption span {
  color: var(--accent-cool);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel__caption strong {
  font-size: 1rem;
  text-align: right;
}

.section-heading {
  max-width: 860px;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  max-width: none;
}

.section-heading h2 {
  max-width: 18ch;
  font-size: clamp(2.1rem, 4.3vw, 4rem);
  line-height: 1.02;
}

.story .section-heading h2 {
  max-width: 24ch;
  white-space: normal;
}

.story__title {
  max-width: min(30ch, 100%);
  font-size: clamp(2.2rem, 3.05vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.story__title-line {
  display: block;
  white-space: nowrap;
}

.story__title-line:last-child {
  margin-top: 6px;
  color: #dfe9ff;
}

.section-copy {
  margin: 16px 0 0;
}

.section-copy--compact {
  max-width: 40ch;
  margin: 0;
  line-height: 1.7;
}

.story::before {
  background:
    linear-gradient(126deg, transparent 18%, rgba(130, 156, 255, 0.08) 38%, rgba(255, 255, 255, 0.06) 48%, rgba(242, 164, 109, 0.07) 58%, transparent 74%),
    radial-gradient(circle at bottom left, rgba(242, 164, 109, 0.06), transparent 24%);
}

.story::after {
  content: "";
  position: absolute;
  inset: -30% -22% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(118, 142, 255, 0.28) 0%, rgba(118, 142, 255, 0.06) 38%, transparent 70%),
    radial-gradient(circle at 72% 34%, rgba(242, 164, 109, 0.2) 0 3px, transparent 4px),
    radial-gradient(circle at 35% 66%, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px);
  filter: blur(4px);
}

.story__heading {
  align-items: center;
}

.story__heading > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.story__lead {
  max-width: 48ch;
  margin: 16px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.story-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.story-pillars span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.story-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(138, 201, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(20, 27, 58, 0.72), rgba(10, 14, 31, 0.56));
  box-shadow:
    0 16px 34px rgba(2, 4, 14, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.story-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(134deg, rgba(255, 255, 255, 0.14), transparent 38%);
  opacity: 0.55;
}

.story-banner__eyebrow,
.story-banner__text {
  position: relative;
  z-index: 1;
}

.story-banner__eyebrow {
  margin: 0;
  color: var(--accent-cool);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-banner__text {
  max-width: 68ch;
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
}

.story-orbits {
  display: grid;
  gap: 10px;
  width: min(420px, 100%);
}

.story-orbits__item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 12% 14%, rgba(138, 201, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(18, 24, 52, 0.9), rgba(10, 14, 31, 0.72));
  box-shadow: 0 14px 30px rgba(2, 4, 14, 0.22);
}

.story-orbits__item strong {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
}

.story-orbits__item span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 22px;
}

.story__image {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top, rgba(138, 201, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(14, 20, 45, 0.96), rgba(10, 14, 31, 0.8));
  padding: 0;
  box-shadow: var(--shadow-soft);
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.story__note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(8, 11, 26, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 34px rgba(2, 4, 14, 0.3);
}

.story__note span {
  color: var(--accent-cool);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story__note strong {
  max-width: 26ch;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.story__note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.story__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.story-card--accent {
  background:
    radial-gradient(circle at top right, rgba(242, 164, 109, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.story-card__eyebrow {
  margin: 0 0 8px;
  color: var(--accent-cool);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-shelf__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(138, 201, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(17, 23, 52, 0.94), rgba(10, 14, 31, 0.82));
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -52px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.38;
}

.collection-card:hover,
.collection-card:focus-visible,
.collection-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(242, 164, 109, 0.3);
  box-shadow:
    0 24px 44px rgba(2, 4, 14, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.collection-card--bars::after {
  background: radial-gradient(circle, rgba(255, 210, 184, 0.95), rgba(255, 210, 184, 0));
}

.collection-card--hot::after {
  background: radial-gradient(circle, rgba(255, 202, 222, 0.92), rgba(255, 202, 222, 0));
}

.collection-card--drage::after {
  background: radial-gradient(circle, rgba(214, 224, 255, 0.92), rgba(214, 224, 255, 0));
}

.collection-card__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-card__title {
  display: block;
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.05;
}

.collection-card__count {
  display: block;
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--accent-cool);
}

.collection-card__copy {
  display: block;
  max-width: 32ch;
  margin: 0;
  color: var(--ink-soft);
}

.story-card h3,
.contact-card__value {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.catalog-tools {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.filter-row--ingredients {
  margin-top: 2px;
}

.taste-filter {
  margin-top: 2px;
}

.taste-filter__summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(17, 23, 52, 0.92), rgba(10, 14, 31, 0.76));
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.taste-filter__summary::-webkit-details-marker {
  display: none;
}

.taste-filter__summary::after {
  content: "+";
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.taste-filter[open] .taste-filter__summary {
  border-color: rgba(242, 164, 109, 0.26);
  color: var(--ink);
}

.taste-filter[open] .taste-filter__summary::after {
  content: "-";
}

.taste-filter .filter-row--ingredients {
  margin-top: 10px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(17, 23, 52, 0.92), rgba(10, 14, 31, 0.76));
  color: var(--ink-soft);
  cursor: pointer;
  transition:
    transform 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(242, 164, 109, 0.18), rgba(138, 201, 255, 0.14));
  color: var(--ink);
  border-color: rgba(242, 164, 109, 0.26);
}

.filter-chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(242, 164, 109, 0.16);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.catalog-empty {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 22px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 18%, rgba(138, 201, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(17, 23, 52, 0.88), rgba(10, 14, 31, 0.74));
  box-shadow: var(--shadow-soft);
}

.catalog-empty__title {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.catalog-empty__text {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.catalog-empty__action {
  justify-self: start;
  margin-top: 4px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--glass-border-soft);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(15, 20, 46, 0.8), rgba(10, 14, 31, 0.66));
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 164, 109, 0.22);
}

.product-card__media {
  position: relative;
  display: grid;
  align-items: start;
  justify-items: center;
  overflow: hidden;
  aspect-ratio: 4 / 5.02;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.product-card__media::after {
  content: none;
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 18px 30px rgba(3, 6, 18, 0.36));
}

.product-card__image--bars {
  max-width: 100%;
  max-height: 100%;
}

.product-card__image--hot {
  max-width: 100%;
  max-height: 100%;
}

.product-card__image--drage {
  max-width: 90%;
  max-height: 100%;
}

.product-card__media--placeholder {
  padding: 8px;
  background:
    radial-gradient(circle at 50% 8%, rgba(138, 201, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(18, 24, 52, 0.78), rgba(10, 14, 31, 0.48));
}

.product-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  padding: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 14px 26px rgba(3, 5, 18, 0.16);
}

.product-placeholder--rose {
  --drage-fill: rgba(221, 160, 179, 0.92);
  background: linear-gradient(180deg, #f7d8e7, #f2bed7);
}

.product-placeholder--cream {
  --drage-fill: rgba(232, 212, 174, 0.88);
  background: linear-gradient(180deg, #f3e8d4, #e7d4b4);
}

.product-placeholder--citrus {
  --drage-fill: rgba(176, 213, 96, 0.9);
  background: linear-gradient(180deg, #eef1c9, #d6e38d);
}

.product-placeholder--amber {
  --drage-fill: rgba(208, 144, 82, 0.84);
  background: linear-gradient(180deg, #efd6b9, #ddb285);
}

.product-placeholder--plum {
  --drage-fill: rgba(117, 80, 140, 0.88);
  background: linear-gradient(180deg, #dcccf2, #bea8e0);
}

.product-placeholder--cocoa {
  --drage-fill: rgba(111, 73, 56, 0.8);
  background: linear-gradient(180deg, #e5d4c9, #caab94);
}

.product-placeholder__dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.55) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.3) 0 5px, transparent 6px),
    radial-gradient(circle at 65% 80%, rgba(255, 255, 255, 0.25) 0 4px, transparent 5px),
    radial-gradient(circle at 24% 72%, rgba(255, 255, 255, 0.45) 0 4px, transparent 5px);
  opacity: 0.8;
}

.product-placeholder__shine,
.product-placeholder__sparkles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.45) 0 6px, transparent 7px),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.28) 0 7px, transparent 8px),
    radial-gradient(circle at 34% 78%, rgba(255, 255, 255, 0.34) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 72%, rgba(255, 255, 255, 0.24) 0 6px, transparent 7px);
  opacity: 0.9;
}

.product-placeholder--drage {
  align-items: end;
}

.product-placeholder--drage::before {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--drage-fill, rgba(111, 73, 56, 0.78));
  box-shadow:
    52px 10px 0 0 var(--drage-fill, rgba(111, 73, 56, 0.78)),
    112px -4px 0 0 var(--drage-fill, rgba(111, 73, 56, 0.78)),
    170px 8px 0 0 var(--drage-fill, rgba(111, 73, 56, 0.78)),
    18px -52px 0 0 var(--drage-fill, rgba(111, 73, 56, 0.78)),
    84px -60px 0 0 var(--drage-fill, rgba(111, 73, 56, 0.78)),
    150px -54px 0 0 var(--drage-fill, rgba(111, 73, 56, 0.78)),
    48px -112px 0 0 var(--drage-fill, rgba(111, 73, 56, 0.78)),
    118px -112px 0 0 var(--drage-fill, rgba(111, 73, 56, 0.78));
  opacity: 0.84;
}

.product-placeholder--drage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.5) 0 8px, transparent 9px),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.34) 0 7px, transparent 8px),
    radial-gradient(circle at 62% 78%, rgba(255, 255, 255, 0.22) 0 6px, transparent 7px);
  opacity: 0.8;
}

.product-placeholder__jar {
  position: relative;
  width: min(100%, 230px);
  height: 260px;
  margin: 40px auto 0;
  border-radius: 34px 34px 28px 28px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.product-placeholder__lid {
  position: absolute;
  top: -22px;
  left: 12px;
  right: 12px;
  padding: 12px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #90a2d8, #6f80be);
  color: #fff;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.product-placeholder__fill {
  position: absolute;
  inset: 34px 18px 16px;
  border-radius: 24px;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(111, 73, 56, 0.75) 0 18px, transparent 19px),
    radial-gradient(circle at 52% 22%, rgba(111, 73, 56, 0.75) 0 19px, transparent 20px),
    radial-gradient(circle at 78% 16%, rgba(111, 73, 56, 0.75) 0 17px, transparent 18px),
    radial-gradient(circle at 28% 42%, rgba(111, 73, 56, 0.72) 0 18px, transparent 19px),
    radial-gradient(circle at 62% 44%, rgba(111, 73, 56, 0.72) 0 18px, transparent 19px),
    radial-gradient(circle at 80% 40%, rgba(111, 73, 56, 0.72) 0 17px, transparent 18px),
    radial-gradient(circle at 18% 67%, rgba(111, 73, 56, 0.72) 0 18px, transparent 19px),
    radial-gradient(circle at 48% 68%, rgba(111, 73, 56, 0.72) 0 18px, transparent 19px),
    radial-gradient(circle at 75% 68%, rgba(111, 73, 56, 0.72) 0 18px, transparent 19px),
    radial-gradient(circle at 35% 88%, rgba(111, 73, 56, 0.72) 0 17px, transparent 18px),
    radial-gradient(circle at 65% 88%, rgba(111, 73, 56, 0.72) 0 17px, transparent 18px);
  opacity: 0.85;
}

.product-placeholder--rose .product-placeholder__fill {
  background-image:
    radial-gradient(circle at 20% 18%, rgba(221, 160, 179, 0.9) 0 18px, transparent 19px),
    radial-gradient(circle at 52% 22%, rgba(221, 160, 179, 0.9) 0 19px, transparent 20px),
    radial-gradient(circle at 78% 16%, rgba(221, 160, 179, 0.9) 0 17px, transparent 18px),
    radial-gradient(circle at 28% 42%, rgba(221, 160, 179, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 62% 44%, rgba(221, 160, 179, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 80% 40%, rgba(221, 160, 179, 0.88) 0 17px, transparent 18px),
    radial-gradient(circle at 18% 67%, rgba(221, 160, 179, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 48% 68%, rgba(221, 160, 179, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 75% 68%, rgba(221, 160, 179, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 35% 88%, rgba(221, 160, 179, 0.88) 0 17px, transparent 18px),
    radial-gradient(circle at 65% 88%, rgba(221, 160, 179, 0.88) 0 17px, transparent 18px);
}

.product-placeholder--citrus .product-placeholder__fill {
  background-image:
    radial-gradient(circle at 20% 18%, rgba(176, 213, 96, 0.92) 0 18px, transparent 19px),
    radial-gradient(circle at 52% 22%, rgba(176, 213, 96, 0.92) 0 19px, transparent 20px),
    radial-gradient(circle at 78% 16%, rgba(176, 213, 96, 0.92) 0 17px, transparent 18px),
    radial-gradient(circle at 28% 42%, rgba(176, 213, 96, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 62% 44%, rgba(176, 213, 96, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 80% 40%, rgba(176, 213, 96, 0.88) 0 17px, transparent 18px),
    radial-gradient(circle at 18% 67%, rgba(176, 213, 96, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 48% 68%, rgba(176, 213, 96, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 75% 68%, rgba(176, 213, 96, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 35% 88%, rgba(176, 213, 96, 0.88) 0 17px, transparent 18px),
    radial-gradient(circle at 65% 88%, rgba(176, 213, 96, 0.88) 0 17px, transparent 18px);
}

.product-placeholder--plum .product-placeholder__fill {
  background-image:
    radial-gradient(circle at 20% 18%, rgba(117, 80, 140, 0.92) 0 18px, transparent 19px),
    radial-gradient(circle at 52% 22%, rgba(117, 80, 140, 0.92) 0 19px, transparent 20px),
    radial-gradient(circle at 78% 16%, rgba(117, 80, 140, 0.92) 0 17px, transparent 18px),
    radial-gradient(circle at 28% 42%, rgba(117, 80, 140, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 62% 44%, rgba(117, 80, 140, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 80% 40%, rgba(117, 80, 140, 0.88) 0 17px, transparent 18px),
    radial-gradient(circle at 18% 67%, rgba(117, 80, 140, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 48% 68%, rgba(117, 80, 140, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 75% 68%, rgba(117, 80, 140, 0.88) 0 18px, transparent 19px),
    radial-gradient(circle at 35% 88%, rgba(117, 80, 140, 0.88) 0 17px, transparent 18px),
    radial-gradient(circle at 65% 88%, rgba(117, 80, 140, 0.88) 0 17px, transparent 18px);
}

.product-placeholder__label {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 108px;
  padding: 12px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(225, 218, 255, 0.95), rgba(194, 222, 255, 0.95));
  color: #2e2020;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.12;
  box-shadow: 0 10px 18px rgba(87, 51, 36, 0.12);
}

.product-placeholder--bar {
  align-items: center;
}

.product-placeholder__slab {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(100%, 250px);
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  text-align: center;
  color: #271c28;
}

.product-placeholder__slab--drage {
  width: min(100%, 250px);
  padding: 18px 16px;
  background: rgba(255, 249, 241, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-placeholder__slab-brand,
.product-placeholder__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 247, 233, 0.88);
  color: #271c28;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(62, 38, 34, 0.08);
}

.product-placeholder__slab strong {
  font-size: 1.26rem;
  line-height: 1.1;
}

.product-placeholder__slab span:last-child {
  color: rgba(39, 28, 40, 0.68);
  line-height: 1.4;
}

.product-placeholder__meta {
  display: none;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-card__header {
  display: block;
  min-width: 0;
}

.product-card__group,
.product-card__type,
.contact-card__label,
.cart-summary__label,
.cart-item__type,
.mini-collection__title,
.variant-row__label {
  margin: 0;
  color: var(--accent-cool);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 0.5vw + 0.96rem, 1.34rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.product-card__description {
  margin: 10px 0 0;
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.story-card p,
.contact-card p {
  line-height: 1.68;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.product-tags li {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-soft);
  font-size: 0.84rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.variant-row {
  margin-top: 12px;
}

.variant-row__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.variant-row__label {
  display: inline-block;
  margin-bottom: 6px;
}

.variant-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-soft);
  cursor: pointer;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.variant-chip.is-active {
  background: linear-gradient(135deg, rgba(242, 164, 109, 0.22), rgba(138, 201, 255, 0.16));
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(242, 164, 109, 0.22);
}

.product-details {
  position: relative;
  margin-top: 0;
  min-width: 0;
  padding-top: 24px;
  border-top: 0;
}

.product-details::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  border-top: 1px solid var(--line);
}

.product-details summary {
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
}

.product-details__meta {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.product-details__meta p {
  margin: 0;
  display: grid;
  gap: 4px;
  line-height: 1.45;
}

.product-details__meta span {
  color: rgba(197, 200, 220, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-details__meta strong {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.product-details__ingredients {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.56;
}

.product-details__ingredients span {
  color: rgba(197, 200, 220, 0.82);
  font-weight: 700;
}

.product-card__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.product-card__summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
}

.product-card__pricing {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-card__price {
  font-size: 1.26rem;
  line-height: 1;
}

.button--product {
  width: 100%;
}

.product-card__cart-controls {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(21, 29, 64, 0.92), rgba(11, 16, 39, 0.9));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.product-card__qty-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease;
}

.product-card__qty-btn:hover,
.product-card__qty-btn:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.product-card__qty-value {
  text-align: center;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--ink);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
  align-items: start;
}

.faq-item {
  overflow: hidden;
  align-self: start;
  border: 1px solid var(--glass-border-soft);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(138, 201, 255, 0.14), transparent 32%),
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(17, 23, 52, 0.74), rgba(10, 14, 31, 0.62));
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.faq-item summary {
  position: relative;
  padding: 16px 44px 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 14px 18px 18px;
  color: var(--ink-soft);
  line-height: 1.62;
}

.contact-card__value {
  display: inline-block;
  color: var(--ink);
  font-weight: 700;
}

.contact-card--accent {
  background:
    radial-gradient(circle at top right, rgba(242, 164, 109, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(18, 24, 52, 0.98), rgba(10, 14, 31, 0.82));
}

.footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 6px 0;
}

.footer__brand {
  display: grid;
  gap: 12px;
}

.footer__tagline,
.footer__note {
  margin: 10px 0 0;
}

.brand--footer .brand__logo {
  width: min(100%, 300px);
}

.footer__tagline {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__note {
  max-width: 44ch;
  line-height: 1.7;
}

.footer__contacts {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.footer__contacts-title {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__contact-link {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
}

.footer__contact-note {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 29;
  background:
    linear-gradient(180deg, rgba(7, 10, 23, 0.42), rgba(7, 10, 23, 0.72));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cart-drawer {
  position: fixed;
  top: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  width: min(430px, calc(100vw - 24px));
  padding: 22px;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at top, rgba(138, 201, 255, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(13, 18, 40, 0.86), rgba(9, 13, 30, 0.76));
  box-shadow:
    0 24px 70px rgba(3, 5, 18, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateX(calc(100% + 32px));
  transition: transform 220ms ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

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

.cart-drawer__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.cart-drawer h2 {
  font-size: clamp(2rem, 6vw, 3rem);
}

.cart-drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.cart-drawer__lead {
  margin: 14px 0 0;
}

.cart-summary {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.cart-summary__value {
  margin: 8px 0 0;
  font-size: 1.22rem;
  font-weight: 700;
}

.cart-summary__items {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.cart-summary-group {
  display: grid;
  gap: 8px;
}

.cart-summary-group__title {
  margin: 0;
  color: var(--accent-cool);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cart-summary-group__list {
  display: grid;
  gap: 8px;
}

.cart-summary-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.cart-summary-item__name {
  min-width: 0;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.32;
  white-space: normal;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.cart-summary-item__counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.cart-summary-item__counter button {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
}

.cart-summary-item__counter span {
  min-width: 42px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.cart-summary-item__empty {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.cart-summary__amount {
  margin: 10px 0 0;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
}

.cart-summary__note {
  margin: 6px 0 0;
  font-size: 0.94rem;
}

.cart-items {
  display: grid;
  flex: 1;
  gap: 12px;
  min-height: 0;
  margin-top: 16px;
  overflow: auto;
}

.cart-empty {
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.cart-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cart-item__image {
  width: 100%;
  height: 96px;
  object-fit: contain;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(18, 24, 52, 0.9), rgba(10, 14, 31, 0.72));
  padding: 8px;
}

.cart-item__image--placeholder {
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cart-item__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8px;
}

.cart-item__name {
  margin: 6px 0 0;
  font-weight: 700;
  line-height: 1.1;
}

.cart-item__remove {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-item__meta {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.cart-item__counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-item__counter button {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.cart-item__total {
  font-weight: 700;
  color: var(--ink);
}

.order-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(197, 200, 220, 0.68);
}

.field input:focus-visible,
.field textarea:focus-visible {
  border-color: rgba(242, 164, 109, 0.34);
  box-shadow: 0 0 0 4px rgba(242, 164, 109, 0.08);
  outline: none;
}

.cart-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.cart-drawer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: no-preference) {
  body::before {
    animation: star-pulse 10s ease-in-out infinite;
  }

  .page-shell::after {
    animation: nebula-drift 18s ease-in-out infinite alternate;
  }

  .cosmos-comet--one {
    animation: comet-flight-one 26s linear infinite;
    animation-delay: -8s;
  }

  .cosmos-comet--two {
    animation: comet-flight-two 33s linear infinite;
    animation-delay: -14s;
  }

  .cosmos-comet--three {
    animation: comet-flight-three 41s linear infinite;
    animation-delay: -20s;
  }

  .hero-panel--featured img,
  .product-card,
  .collection-card {
    will-change: transform;
  }

  .brand-showcase__stars span:nth-child(1),
  .brand-showcase__stars span:nth-child(4),
  .brand-showcase__stars span:nth-child(6),
  .brand-showcase__stars span:nth-child(7) {
    animation: twinkle 5.4s ease-in-out infinite;
  }
}

@keyframes star-pulse {
  0%,
  100% {
    opacity: 0.52;
  }

  50% {
    opacity: 0.8;
  }
}

@keyframes nebula-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(0, -10px, 0) scale(1.04);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.68;
    transform: scale(1.08);
  }
}

@keyframes comet-flight-one {
  0%,
  84% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-14deg);
  }

  88% {
    opacity: 0.94;
  }

  100% {
    opacity: 0;
    transform: translate3d(148vw, 16vh, 0) rotate(-14deg);
  }
}

@keyframes comet-flight-two {
  0%,
  86% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-11deg);
  }

  90% {
    opacity: 0.88;
  }

  100% {
    opacity: 0;
    transform: translate3d(142vw, 13vh, 0) rotate(-11deg);
  }
}

@keyframes comet-flight-three {
  0%,
  88% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-16deg);
  }

  92% {
    opacity: 0.86;
  }

  100% {
    opacity: 0;
    transform: translate3d(152vw, 20vh, 0) rotate(-16deg);
  }
}

@media (max-width: 1120px) {
  .hero__copy {
    padding-bottom: 150px;
  }

  .hero__galaxy {
    left: -12px;
    bottom: -46px;
    width: min(70%, 430px);
    opacity: 0.84;
  }

  .topbar {
    position: sticky !important;
    top: max(8px, env(safe-area-inset-top));
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 30px;
  }

  .topbar .brand {
    transform: none;
  }

  .brand {
    width: 100%;
  }

  .topnav {
    position: static;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: none;
    overflow: visible;
    gap: 12px;
  }

  .cart-trigger {
    align-self: flex-start;
    margin-right: 0;
  }

  .section-card--hero,
  .faq__grid,
  .hero__collections,
  .collection-shelf__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero__collections {
    grid-column: 1 / -1;
  }

  .section-heading--split,
  .footer {
    flex-direction: column;
    align-items: start;
  }

  .footer__contacts {
    justify-items: start;
    text-align: left;
  }

  .section-heading h2 {
    max-width: none;
  }

  .story .section-heading h2 {
    white-space: normal;
  }

  .story__title-line {
    white-space: normal;
  }

  .story-orbits {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story__image {
    min-height: 420px;
  }
}

@media (max-width: 1280px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .catalog-grid,
  .collection-shelf__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero__copy {
    padding-bottom: 92px;
  }

  .hero__galaxy {
    display: block;
    right: -8px;
    left: auto;
    bottom: -28px;
    width: min(58%, 230px);
    opacity: 0.58;
  }

  .page-shell {
    width: min(1380px, calc(100% - 14px));
    padding-top: 10px;
  }

  .topbar {
    position: sticky !important;
    top: max(6px, env(safe-area-inset-top));
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand cart"
      "nav nav";
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
  }

  .topbar .brand {
    grid-area: brand;
    width: auto;
    max-width: 220px;
    transform: none;
  }

  .brand {
    width: 100%;
  }

  .brand__logo {
    width: min(100%, 220px);
  }

  .brand__tag {
    width: min(100%, 220px);
    letter-spacing: 0.12em;
    font-size: 0.66rem;
    white-space: normal;
  }

  .topnav {
    grid-area: nav;
    width: 100%;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  .topnav a {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .cart-trigger {
    grid-area: cart;
    justify-self: end;
    margin-right: 0;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  }

  .cart-trigger__label {
    font-size: 0.9rem;
  }

  .cart-trigger__count {
    font-size: 0.95rem;
  }

  .section-card--hero,
  .hero__stats,
  .hero__collections,
  .faq__grid,
  .collection-shelf__grid {
    grid-template-columns: 1fr;
  }

  .hero-shortcuts,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story__content {
    grid-template-columns: 1fr;
  }

  .section-card {
    padding: 20px 14px;
    border-radius: 24px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.03;
  }

  .story .section-heading h2 {
    white-space: normal;
  }

  .story__title {
    font-size: clamp(2rem, 9.4vw, 3rem);
  }

  .story::after {
    display: none;
  }

  .story-orbits {
    grid-template-columns: 1fr;
  }

  .hero-panel__caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
    flex-direction: column;
    align-items: start;
  }

  .hero-panel__caption strong {
    text-align: left;
  }

  .hero-panel__title {
    max-width: none;
    font-size: clamp(1.5rem, 8vw, 2.05rem);
  }

  .hero-panel__title-line {
    white-space: normal;
  }

  .hero__badges {
    flex-direction: column;
  }

  .collection-card {
    min-height: auto;
  }

  .product-placeholder__meta {
    left: 14px;
    bottom: 14px;
  }

  .story__note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .hero-shortcut {
    gap: 8px;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .hero-shortcut__title {
    font-size: 1.05rem;
  }

  .hero-shortcut__desc {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .hero__visual {
    gap: 14px;
  }

  .hero-panel {
    border-radius: 22px;
  }

  .hero-panel--brand,
  .hero-panel--details {
    padding: 18px;
    min-height: auto;
  }

  .brand-showcase {
    gap: 10px;
  }

  .brand-showcase__logo {
    max-width: 260px;
    margin-left: 0;
  }

  .brand-showcase__tagline {
    width: 100%;
    margin: 0;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-align: left;
    white-space: normal;
  }

  .brand-showcase__copy {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .brand-showcase__stars {
    display: none;
  }

  .hero-point {
    padding: 12px 13px;
    border-radius: 16px;
  }

  .hero-point strong {
    font-size: 0.98rem;
  }

  .hero-point span {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 8.8vw, 2.6rem);
  }

  .story-card h3 {
    font-size: clamp(1.25rem, 6.8vw, 1.55rem);
  }

  .story-card p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .story-pillars {
    margin-top: 14px;
    gap: 8px;
  }

  .story-pillars span {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .story-banner {
    margin-top: 16px;
    padding: 14px;
    border-radius: 18px;
  }

  .story-banner__eyebrow {
    font-size: 0.7rem;
  }

  .story-banner__text {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .filter-row {
    gap: 8px;
    margin-top: 6px;
  }

  #filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #filter-row::-webkit-scrollbar {
    display: none;
  }

  #filter-row .filter-chip {
    flex: 0 0 auto;
  }

  .filter-row--ingredients {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-row--ingredients::-webkit-scrollbar {
    display: none;
  }

  .filter-row--ingredients .filter-chip {
    flex: 0 0 auto;
  }

  .taste-filter__summary {
    width: 100%;
    justify-content: space-between;
    padding: 10px 14px;
  }

  .filter-chip {
    gap: 8px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .filter-chip__count {
    min-width: 24px;
    height: 24px;
    font-size: 0.78rem;
  }

  .product-card {
    border-radius: 22px;
  }

  .product-card__media {
    aspect-ratio: 1 / 1.12;
  }

  .product-card__body {
    padding: 14px;
  }

  .product-card h3 {
    font-size: 1.08rem;
  }

  .product-card__description {
    font-size: 0.84rem;
    line-height: 1.42;
    -webkit-line-clamp: 2;
  }

  .product-tags li {
    padding: 5px 8px;
    font-size: 0.78rem;
  }

  .variant-chip {
    padding: 7px 9px;
    font-size: 0.84rem;
  }

  .product-card__summary-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-card__pricing {
    justify-content: flex-start;
    padding: 0;
  }

  .product-card__price {
    font-size: 1.12rem;
  }

  .product-details {
    padding-top: 20px;
  }

  .product-details::before {
    top: 8px;
  }

  .product-card__cart-controls {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .product-card__qty-btn {
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-item summary {
    padding: 14px 40px 14px 14px;
    font-size: 0.95rem;
  }

  .faq-item p {
    padding: 12px 14px 14px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .footer {
    gap: 12px;
    padding: 8px 2px 0;
  }

  .brand--footer .brand__logo {
    width: min(100%, 230px);
  }

  .footer__contact-link {
    font-size: 0.95rem;
  }

  .cart-drawer {
    top: max(12px, env(safe-area-inset-top));
    right: max(8px, env(safe-area-inset-right));
    left: auto;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: min(430px, 76vw);
    max-height: calc(100vh - max(12px, env(safe-area-inset-top)) - max(10px, env(safe-area-inset-bottom)));
    padding: 16px 14px calc(16px + env(safe-area-inset-bottom));
    border-radius: 24px;
  }

  .cart-drawer h2 {
    font-size: clamp(1.55rem, 9vw, 2.25rem);
  }

  .cart-summary {
    padding: 14px;
    border-radius: 18px;
  }

  .cart-summary-item__counter span {
    min-width: 36px;
  }

  .cart-item {
    grid-template-columns: 66px 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
  }

  .cart-item__image {
    height: 86px;
    border-radius: 12px;
    padding: 6px;
  }

  .cart-item__meta {
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 0.84rem;
  }

  .cart-item__controls {
    flex-wrap: wrap;
  }

  .field input,
  .field textarea {
    padding: 12px 13px;
    border-radius: 14px;
  }

  .cart-actions {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: calc(100% - 12px);
  }

  .topbar {
    position: sticky !important;
    top: max(4px, env(safe-area-inset-top));
    z-index: 90;
    gap: 8px;
    padding: 10px;
  }

  .topbar .brand {
    max-width: 185px;
  }

  .brand__logo {
    width: min(100%, 185px);
  }

  .topnav a {
    padding: 7px 9px;
    font-size: 0.85rem;
  }

  .cart-trigger {
    padding: 7px 10px;
    gap: 6px;
  }

  .cart-trigger__label {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 10.8vw, 2.55rem);
  }

  .hero__line-nowrap {
    font-size: 0.86em;
  }

  .hero__copy {
    padding-bottom: 74px;
  }

  .hero__galaxy {
    right: -6px;
    bottom: -20px;
    width: min(56%, 170px);
    opacity: 0.52;
  }

  .hero-shortcuts,
  .catalog-grid {
    gap: 9px;
  }

  .hero-shortcut__title {
    font-size: 1rem;
  }

  .hero-shortcut {
    padding: 10px 10px;
  }

  .hero-shortcut__desc {
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .section-card {
    padding: 18px 12px;
  }

  .story-pillars {
    margin-top: 12px;
    gap: 6px;
  }

  .story-pillars span {
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  .story-banner {
    margin-top: 12px;
    padding: 12px 10px;
    border-radius: 16px;
  }

  .story-banner__text {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .product-card__media {
    aspect-ratio: 1 / 1.02;
  }

  .product-card__body {
    padding: 12px;
  }

  .product-card h3 {
    font-size: 0.96rem;
  }

  .product-tags {
    margin-top: 8px;
    gap: 4px;
  }

  .product-tags li {
    padding: 4px 6px;
    font-size: 0.72rem;
  }

  .variant-row {
    margin-top: 9px;
  }

  .variant-chip {
    padding: 6px 7px;
    font-size: 0.76rem;
  }

  .product-details summary {
    font-size: 0.86rem;
  }

  .product-card__price {
    font-size: 1rem;
  }

  .product-card__cart-controls {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .product-card__qty-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .cart-drawer {
    right: max(6px, env(safe-area-inset-right));
    left: auto;
    width: min(390px, 78vw);
    max-height: calc(100vh - max(12px, env(safe-area-inset-top)) - max(10px, env(safe-area-inset-bottom)));
    padding: 14px 12px calc(14px + env(safe-area-inset-bottom));
  }

  .cart-summary-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cart-summary-item__counter {
    justify-content: flex-start;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item__image {
    width: 84px;
    height: 84px;
  }

  .cart-item__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-item__total {
    align-self: flex-end;
  }
}
