@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
  --bg: #08111f;
  --bg-soft: #0f1728;
  --surface: rgba(14, 22, 38, 0.88);
  --surface-strong: #121c2f;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --surface-soft-2: rgba(255, 255, 255, 0.06);
  --text: #f3f7ff;
  --muted: #9aa9c2;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --primary: #7c9cff;
  --primary-hover: #97adff;
  --accent: #ff6b57;
  --success: #33d17a;
  --success-soft: rgba(51, 209, 122, 0.14);
  --danger-soft: rgba(255, 107, 87, 0.16);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.16);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(124, 156, 255, 0.12), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(0, 214, 201, 0.1), transparent 24%),
    linear-gradient(180deg, #08111f 0%, #0a1424 100%);
  overflow-x: hidden;
}

body[data-page] {
  visibility: hidden;
}

body[data-page].i18n-ready {
  visibility: visible;
}

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

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

.container {
  width: min(1680px, calc(100% - 24px));
  margin: 0 auto;
}

.container--full {
  width: min(1760px, calc(100% - 24px));
}

.page-glow {
  position: fixed;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.34;
  pointer-events: none;
  animation: floatGlow 14s ease-in-out infinite;
}

.page-glow--left {
  top: 110px;
  left: -120px;
  background: rgba(124, 156, 255, 0.24);
}

.page-glow--right {
  top: 240px;
  right: -120px;
  background: rgba(0, 214, 201, 0.18);
  animation-duration: 18s;
}

.topbar {
  display: none;
}

.topbar__row {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.topbar__row > :first-child {
  display: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 13, 24, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header__row {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: transparent;
  font-size: 0;
  line-height: 1;
  white-space: nowrap;
}

.logo__wordmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 18px 4px 0;
  color: var(--text);
}

.logo__wordmark::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin-right: 4px;
  background: url("favicon-runner.svg") center/contain no-repeat;
  filter: drop-shadow(0 6px 16px rgba(215, 255, 47, 0.22));
}

.logo__wordmark::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 134px;
  height: 38px;
  border: 2px solid #d7ff2f;
  border-left: 0;
  border-radius: 0 999px 999px 0;
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(215, 255, 47, 0.12);
}

.logo__bar,
.logo__run {
  position: relative;
  font-family: var(--display-font, inherit);
  font-size: 1.52rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-style: italic;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.logo__bar {
  color: #fffdf5;
}

.logo__run {
  color: #d7ff2f;
  margin-left: -2px;
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.22s ease, background-color 0.22s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
}

.language-switcher__select {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  appearance: none;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 46px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.account-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.account-chip--accent {
  background: linear-gradient(135deg, rgba(124, 156, 255, 0.22), rgba(0, 214, 201, 0.14));
}

.account-chip--logged {
  border-color: rgba(124, 156, 255, 0.26);
  color: #d7e0ff;
}

.mobile-only {
  display: none;
}

.cart-button {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  min-height: 42px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.cart-button.is-bumped {
  transform: scale(1.03);
}

.icon-button.is-bumped {
  transform: scale(1.04);
}

.favorite-flight {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  font-size: 1.25rem;
  line-height: 1;
  color: #d94d68;
  pointer-events: none;
  will-change: transform, opacity;
  text-shadow: 0 6px 18px rgba(22, 6, 10, 0.26);
}

.catalog-page {
  position: relative;
  z-index: 1;
  padding: 28px 0 48px;
}

.home-page,
.auth-page,
.account-page {
  position: relative;
  z-index: 1;
}

.home-hero-clean {
  padding: 32px 0 18px;
}

.home-hero-clean__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.home-hero-clean__copy,
.home-hero-clean__panel,
.home-strip__item,
.home-link-card,
.home-category-card,
.home-point {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.home-hero-clean__copy,
.home-hero-clean__panel {
  border-radius: 30px;
  padding: 34px;
}

.home-hero-clean__copy h1 {
  margin: 8px 0 14px;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 760px;
}

.home-hero-clean__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.home-point {
  border-radius: 20px;
  padding: 16px 18px;
}

.home-point strong,
.home-link-card strong,
.home-category-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.home-point span,
.home-link-card span,
.home-category-card span,
.home-strip__item span {
  color: var(--muted);
}

.home-hero-clean__panel {
  background:
    radial-gradient(circle at top left, rgba(124, 156, 255, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(0, 214, 201, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(11, 18, 31, 0.96) 0%, rgba(8, 15, 27, 0.96) 100%);
}

.home-hero-clean--serious .home-hero-clean__copy h1 {
  max-width: 720px;
  font-size: clamp(2.4rem, 3.5vw, 4rem);
}

.home-summary-card {
  display: grid;
  gap: 14px;
}

.home-summary-card__row {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.home-summary-card__row span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.home-summary-card__row strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.4;
}

.home-product-teaser__label {
  margin-bottom: 18px;
  color: #c6d2fb;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-product-teaser__grid,
.home-links-grid,
.home-strip__grid {
  display: grid;
  gap: 14px;
}

.home-product-teaser__grid,
.home-strip__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-category-card,
.home-link-card {
  display: block;
  border-radius: 22px;
  padding: 20px;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.home-category-card:hover,
.home-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 156, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.home-strip {
  padding: 0 0 18px;
}

.home-strip__item {
  border-radius: 22px;
  padding: 18px 20px;
}

.home-strip__item strong {
  display: block;
  margin-bottom: 6px;
}

.home-section-clean {
  padding: 14px 0 48px;
}

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

.home-sections-board {
  display: grid;
  gap: 14px;
}

.home-sections-board__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.home-sections-board__item:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 156, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.home-sections-board__item span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.home-sections-board__item strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.4;
}

.home-sections-board__item small {
  color: #c9d5ea;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-hero {
  padding: 34px 0 28px;
}

.home-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(440px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.home-hero__copy,
.home-hero__visual,
.benefit-card,
.entry-card,
.home-showcase,
.home-card,
.auth-panel,
.account-order-card,
.account-favorite-card {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.home-hero__copy,
.home-hero__visual {
  min-height: 100%;
  padding: 34px;
  border-radius: 34px;
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero__copy h1 {
  margin: 10px 0 16px;
  font-size: clamp(2.6rem, 4vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 900px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.home-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    radial-gradient(circle at top left, rgba(124, 156, 255, 0.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(0, 214, 201, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(11, 18, 31, 0.96) 0%, rgba(8, 15, 27, 0.96) 100%);
}

.home-showcase {
  border-radius: 26px;
  padding: 24px;
}

.home-showcase--large {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-showcase__badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d2dcff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-showcase strong {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 1.05;
}

.home-showcase p,
.home-card span,
.benefit-card p,
.entry-card span,
.account-order-card span,
.account-favorite-card span {
  color: var(--muted);
}

.home-showcase-grid,
.benefits-grid,
.entry-grid,
.auth-panels,
.account-layout {
  display: grid;
  gap: 18px;
}

.home-showcase-grid,
.benefits-grid,
.entry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-card,
.benefit-card,
.entry-card {
  border-radius: 24px;
  padding: 22px;
}

.home-card strong,
.benefit-card h3,
.entry-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--text);
}

.home-section {
  padding: 12px 0 28px;
}

.home-section--alt {
  padding-bottom: 52px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.benefit-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(124, 156, 255, 0.16);
  color: #d7e0ff;
  font-weight: 800;
}

.entry-card {
  text-decoration: none;
}

.entry-card:hover,
.account-favorite-card:hover {
  border-color: rgba(124, 156, 255, 0.22);
  transform: translateY(-2px);
}

.shop-layout--wide {
  grid-template-columns: 300px minmax(0, 1fr) 340px;
}

.auth-hero {
  padding: 28px 0 48px;
}

.auth-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.auth-hero__copy {
  padding: 26px 8px 0 0;
}

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


.auth-form input,
.auth-form select,
.auth-form textarea {
  background: rgba(17, 22, 32, 0.94);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.auth-form input::placeholder,
.auth-form textarea::placeholder {
  color: rgba(243, 247, 255, 0.46);
}
.auth-panels--stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.auth-panel {
  border-radius: var(--radius-lg);
}

.auth-panel--hidden {
  display: none;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 4px 0;
}

.auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  background: var(--surface-strong);
  color: var(--muted);
}

.google-login {
  display: flex;
  justify-content: center;
}

.auth-google-secondary {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.auth-google-secondary__label {
  text-align: center;
  color: var(--muted);
  font-size: 0.96rem;
}

.auth-register-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.account-page {
  padding: 28px 0 48px;
}

.account-page__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.account-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.account-orders-panel {
  grid-column: 1 / -1;
}

.admin-panel {
  margin-top: 22px;
}

.admin-panel__heading {
  align-items: flex-start;
}

.admin-panel__actions,
.admin-toolbar,
.admin-order-card__head,
.admin-order-card__meta,
.admin-order-card__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-toolbar {
  margin-bottom: 16px;
  align-items: center;
}

.admin-toolbar__groups {
  display: grid;
  gap: 10px;
}

.admin-filters-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(2, minmax(180px, 0.8fr));
  gap: 14px;
  margin-bottom: 12px;
}

.admin-control-group {
  margin: 0;
}

.admin-content {
  display: grid;
  gap: 16px;
}

.admin-tab-chips {
  margin-bottom: 4px;
}

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

.admin-settings-card {
  display: grid;
  gap: 14px;
  align-self: start;
}

.admin-settings-form {
  gap: 14px;
}

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

.admin-promos-list,
.admin-products-list {
  display: grid;
  gap: 12px;
}

.admin-promo-card,
.admin-product-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.admin-promo-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-promo-card p,
.admin-product-card p {
  margin: 4px 0 0;
  color: var(--muted);
}

.admin-promo-card__meta,
.admin-product-card__head {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.admin-product-card {
  display: grid;
  gap: 12px;
}

.admin-settings-card input,
.admin-settings-card select,
.admin-settings-card textarea,
.admin-product-card input,
.admin-product-card textarea {
  background: rgba(17, 22, 32, 0.94);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.admin-settings-card input::placeholder,
.admin-settings-card textarea::placeholder,
.admin-product-card input::placeholder,
.admin-product-card textarea::placeholder {
  color: rgba(243, 247, 255, 0.46);
}

.admin-settings-card input:disabled,
.admin-settings-card select:disabled,
.admin-settings-card textarea:disabled,
.admin-product-card input:disabled,
.admin-product-card textarea:disabled {
  background: rgba(28, 33, 46, 0.98);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(243, 247, 255, 0.72);
  -webkit-text-fill-color: rgba(243, 247, 255, 0.72);
  opacity: 1;
}

.checkout-form__hint {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.admin-orders {
  display: grid;
  gap: 14px;
}

.admin-order-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.admin-order-card--problem {
  border-color: rgba(255, 107, 87, 0.34);
  box-shadow: 0 0 0 1px rgba(255, 107, 87, 0.08) inset;
}

.admin-order-card__meta {
  margin-top: 10px;
  color: var(--muted);
}

.admin-order-card__actions {
  margin-top: 12px;
}

.admin-order-card__comment {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
}

.admin-order-card__comment textarea {
  min-height: 92px;
  resize: vertical;
}

.admin-order-card__save {
  margin-top: 12px;
}

.admin-order-card__items {
  margin-top: 14px;
}

.admin-order-card__items ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.account-order-card__badge--danger {
  border-color: rgba(255, 107, 87, 0.35);
  background: rgba(255, 107, 87, 0.12);
  color: #ffd5cf;
}

.account-favorites,
.account-orders {
  display: grid;
  gap: 14px;
}

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

.account-favorite-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.account-favorite-card__image {
  position: relative;
  width: 84px;
  height: 110px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(180deg, #f9fcff 0%, #d7e0ea 100%);
}

.account-favorite-card__image::after {
  content: attr(data-label);
  position: absolute;
  left: 8px;
  right: 8px;
  top: 38px;
  padding: 7px 4px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c9cff, #00d6c9);
  color: #fff;
  text-align: center;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-favorite-card__image--photo,
.related-card__image--photo {
  background-color: rgba(255, 255, 255, 0.96);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 16px;
}

.account-favorite-card__image--photo::after,
.related-card__image--photo::after,
.cart-page-item__image--photo::before,
.cart-page-item__image--photo::after,
.product-card__image-bottle--photo::before,
.product-card__image-bottle--photo::after,
.product-hero__image--photo::before,
.product-hero__image--photo::after {
  display: none;
}

.account-order-card {
  padding: 18px;
  border-radius: 22px;
}

.account-order-card__head,
.account-order-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.account-order-card__meta {
  margin-top: 10px;
}

.account-order-card__status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.account-order-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8e1f4;
  font-size: 0.85rem;
  font-weight: 600;
}

.account-order-card__comment {
  margin: 12px 0 0;
  color: var(--muted);
}

.account-order-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.empty-state--soft {
  padding: 28px 18px;
}

.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.page-heading h1 {
  margin: 6px 0 12px;
  font-size: clamp(2rem, 3vw, 2.9rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.page-heading__eyebrow {
  margin: 0;
  color: #c1ceff;
  font-size: 0.92rem;
  font-weight: 700;
}

.page-heading__text {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 12px;
}

.quick-stats__item {
  min-width: 150px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.quick-stats__item:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 156, 255, 0.22);
}

.quick-stats__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

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

.shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.filters-panel,
.catalog-panel,
.cart-panel,
.checkout-note,
.checkout-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.filters-panel,
.catalog-panel,
.cart-panel,
.checkout-note,
.checkout-form {
  padding: 20px;
}

.catalog-panel {
  min-height: 620px;
}

.cart-panel--sticky {
  position: sticky;
  top: 96px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-heading h2 {
  margin: 0;
  font-size: 1.25rem;
}

.panel-heading--compact {
  margin-bottom: 16px;
}

.panel-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filters-close {
  display: none;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.control-group span {
  font-size: 0.92rem;
  font-weight: 600;
  color: #d8e1f4;
}

.control-group input,
.control-group select,
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(9, 16, 29, 0.94);
  color: var(--text);
  padding: 12px 14px;
  color-scheme: dark;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.control-group select option,
.checkout-form select option,
#delivery-details-select option {
  background: #0b1424;
  color: #f3f7ff;
}

#delivery-details-select,
#delivery-method,
.checkout-form select {
  background: rgba(9, 16, 29, 0.98);
}

.control-group input:focus,
.control-group select:focus,
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: rgba(124, 156, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(124, 156, 255, 0.12);
  outline: none;
}

.control-group input::placeholder,
.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
  color: #71819b;
}

.checkout-field {
  width: 100%;
}

.checkout-field--hidden {
  display: none;
}

.control-group--inline {
  margin: 0;
  min-width: 220px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 156, 255, 0.22);
}

.chip--active {
  background: linear-gradient(135deg, rgba(124, 156, 255, 0.24), rgba(0, 214, 201, 0.14));
  color: #ffffff;
  border-color: rgba(124, 156, 255, 0.34);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 600;
}

.text-button:hover {
  color: var(--text);
}

.panel-note {
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.panel-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.panel-note p {
  margin: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.catalog-toolbar__actions {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.catalog-toolbar h2 {
  margin: 0 0 4px;
  font-size: 1.3rem;
}

.results-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 24px;
  margin: 18px 0 16px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.88rem;
  border: 1px solid var(--border);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(17, 27, 45, 0.94), rgba(12, 20, 34, 0.98));
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
}

.product-card:not(.product-card--skeleton) {
  opacity: 0;
  animation: cardReveal 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--reveal-delay, 0) * 1ms);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124, 156, 255, 0.24);
}

.product-card--photo {
  min-height: 500px;
  background:
    radial-gradient(circle at top, rgba(124, 156, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(16, 26, 41, 0.96), rgba(9, 16, 28, 0.99));
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 0 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.product-card__media {
  position: relative;
  min-height: 210px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(124, 156, 255, 0.2), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0, 214, 201, 0.16), transparent 34%),
    linear-gradient(180deg, #111b2d 0%, #0c1422 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.product-card__media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card--photo .product-card__media-link {
  min-height: 274px;
}

.favorite-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(8, 17, 31, 0.72);
  color: #c9d5ea;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.favorite-toggle:hover {
  transform: scale(1.04);
  border-color: rgba(255, 255, 255, 0.16);
}

.favorite-toggle--active {
  color: #ff7e77;
  border-color: rgba(255, 126, 119, 0.38);
  background: rgba(255, 126, 119, 0.12);
}

.favorite-toggle--large {
  position: static;
  width: 48px;
  height: 48px;
}

.product-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 72%);
  transform: translateX(-120%);
  animation: shimmer 4.6s linear infinite;
}

.product-card__placeholder {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 60%;
}

.product-card__placeholder span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8e1f4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card__placeholder strong {
  font-size: 1.12rem;
  line-height: 1.25;
}

.product-card__placeholder small {
  color: var(--muted);
  line-height: 1.5;
}

.product-card__photo-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.08), rgba(7, 13, 24, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.product-card__photo-note span,
.product-card__photo-note strong {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__photo-note span {
  color: rgba(227, 236, 248, 0.78);
}

.product-card__photo-note strong {
  color: #ffffff;
}

.product-card__image-bottle {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 106px;
  height: 154px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(180deg, #f9fcff 0%, #d7e0ea 100%);
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 24px 34px rgba(0, 0, 0, 0.34);
  animation: bottleFloat 5.5s ease-in-out infinite;
}

.product-card__image-bottle::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 26px;
  width: 54px;
  height: 22px;
  border-radius: 8px 8px 0 0;
  background: #d7dee7;
}

.product-card__image-bottle::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50px;
  padding: 10px 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c9cff, #00d6c9);
  color: #ffffff;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card__image-bottle--photo {
  right: 18px;
  bottom: 16px;
  width: calc(100% - 36px);
  height: calc(100% - 32px);
  border-radius: 26px;
  background-color: rgba(255, 255, 255, 0.96);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
  transition: transform 0.24s ease, filter 0.24s ease;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.28));
}

.product-card--photo:hover .product-card__image-bottle--photo {
  transform: scale(1.03);
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.34));
}

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

.product-card--photo .product-card__body {
  gap: 14px;
}

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

.product-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.product-card__title a,
.cart-page-item__header h3 a,
.related-card,
.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.product-card__title a:hover,
.cart-page-item__header h3 a:hover,
.breadcrumbs a:hover {
  color: #cdd8ff;
}

.product-card__brand {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-card__badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: #d7e1f6;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.product-card__description {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.product-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-meta {
  min-width: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.product-meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-meta strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-card__footer--stack {
  align-items: stretch;
  flex-direction: column;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-price strong {
  display: block;
  font-size: 1.18rem;
}

.product-price span {
  color: var(--muted);
  font-size: 0.86rem;
}

.stock-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.stock-badge--in {
  background: var(--success-soft);
  color: var(--success);
}

.stock-badge--out {
  background: var(--danger-soft);
  color: #ff8f80;
}

.empty-state {
  padding: 48px 24px;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

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

.empty-state__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.filters-backdrop {
  display: none;
}

.skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 45%, transparent 80%);
  transform: translateX(-100%);
  animation: shimmer 1.6s linear infinite;
}

.skeleton--media {
  min-height: 210px;
  border-radius: 0;
}

.skeleton--line {
  height: 14px;
}

.skeleton--title {
  height: 28px;
}

.skeleton--w35 {
  width: 35%;
}

.skeleton--w40 {
  width: 40%;
}

.skeleton--w55 {
  width: 55%;
}

.skeleton--w70 {
  width: 70%;
}

.skeleton--card {
  min-height: 64px;
}

.skeleton--button {
  height: 46px;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.skeleton-grid--compact {
  margin-top: 4px;
}

.product-card--skeleton {
  min-height: 460px;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--border);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 80px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.cart-item__name {
  font-weight: 700;
}

.cart-item small {
  color: var(--muted);
}

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

.qty-btn,
.remove-btn {
  border-radius: 10px;
  cursor: pointer;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.remove-btn {
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0 16px;
  font-size: 1.04rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn--primary {
  background: linear-gradient(135deg, #7c9cff, #00d6c9);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(124, 156, 255, 0.24);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #8ca7ff, #1be1d5);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--wide {
  width: 100%;
}

.checkout-section {
  position: relative;
  z-index: 1;
  padding: 0 0 48px;
}

.checkout-section--hidden {
  display: none;
}

.container--narrow {
  width: min(1100px, calc(100% - 32px));
}

.checkout-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 20px;
}

.checkout-layout--single {
  align-items: start;
}

.cart-page {
  position: relative;
  z-index: 1;
  padding: 28px 0 48px;
}

.page-heading--compact {
  margin-bottom: 20px;
}

.cart-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.cart-main__panel {
  min-height: 400px;
}

.cart-sidebar {
  position: relative;
}

.cart-page-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-page-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.cart-page-item__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-page-item__image {
  display: block;
  position: relative;
  width: 88px;
  height: 128px;
  border-radius: 22px 22px 16px 16px;
  background: linear-gradient(180deg, #f9fcff 0%, #d7e0ea 100%);
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.24);
}

.cart-page-item__image::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 22px;
  width: 44px;
  height: 22px;
  border-radius: 8px 8px 0 0;
  background: #d7dee7;
}

.cart-page-item__image::after {
  content: attr(data-label);
  position: absolute;
  left: 10px;
  right: 10px;
  top: 42px;
  padding: 9px 6px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c9cff, #00d6c9);
  color: #ffffff;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-page-item__image--photo {
  background-color: rgba(255, 255, 255, 0.96);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 18px;
  box-shadow: none;
}

.cart-page-item__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-page-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cart-page-item__header h3 {
  margin: 4px 0;
  font-size: 1.1rem;
}

.cart-page-item__brand,
.cart-page-item__meta,
.cart-page__hint {
  margin: 0;
  color: var(--muted);
}

.cart-page-item__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cart-page-item__footer strong {
  font-size: 1.08rem;
}

.cart-page-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-summary-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.summary-row--total {
  font-size: 1.08rem;
  border-bottom: 0;
}

.summary-row strong {
  white-space: nowrap;
}

.checkout-note__content {
  color: var(--muted);
  line-height: 1.65;
}

.checkout-note__content p {
  margin-top: 0;
}

.checkout-note__content ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.product-page {
  position: relative;
  z-index: 1;
  padding: 24px 0 48px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
}

.product-view--hidden {
  display: none;
}

.product-loading {
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  gap: 20px;
}

.product-loading.product-view--hidden {
  display: none;
}

.product-loading__media {
  min-height: 520px;
}

.product-loading__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-hero {
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  gap: 20px;
}

.product-hero__media,
.product-hero__content,
.related-products,
.product-section__text {
  border-radius: var(--radius-lg);
}

.product-hero__media,
.product-hero__content,
.related-products {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.product-hero__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(124, 156, 255, 0.2), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0, 214, 201, 0.16), transparent 34%),
    linear-gradient(180deg, #111b2d 0%, #0c1422 100%);
}

.product-hero--photo .product-hero__media {
  background:
    radial-gradient(circle at top left, rgba(124, 156, 255, 0.18), transparent 34%),
    radial-gradient(circle at 70% 75%, rgba(0, 214, 201, 0.14), transparent 30%),
    linear-gradient(180deg, #101a2b 0%, #09111e 100%);
}

.product-hero__placeholder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 56%;
}

.product-hero__placeholder span {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-hero__placeholder strong {
  font-size: 1.4rem;
  line-height: 1.18;
}

.product-hero__placeholder small {
  color: var(--muted);
}

.product-hero__photo-note {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 15, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.product-hero__photo-note span,
.product-hero__photo-note strong {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-hero__photo-note span {
  color: rgba(225, 234, 248, 0.74);
}

.product-hero__photo-note strong {
  color: #fff;
}

.product-hero__image {
  position: absolute;
  right: 56px;
  bottom: 34px;
  width: 180px;
  height: 280px;
  border-radius: 34px 34px 24px 24px;
  background: linear-gradient(180deg, #f9fcff 0%, #d7e0ea 100%);
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 28px 40px rgba(0, 0, 0, 0.34);
}

.product-hero__image::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 44px;
  width: 92px;
  height: 28px;
  border-radius: 10px 10px 0 0;
  background: #d7dee7;
}

.product-hero__image::after {
  content: attr(data-label);
  position: absolute;
  left: 18px;
  right: 18px;
  top: 88px;
  padding: 14px 8px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7c9cff, #00d6c9);
  color: #fff;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-hero__image--photo {
  right: 24px;
  bottom: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.98);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.3));
}

.product-hero__content {
  padding: 24px;
}

.product-hero__brand {
  margin: 0 0 8px;
  color: var(--muted);
}

.product-hero__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-hero__heading h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.product-hero__description {
  color: var(--muted);
  line-height: 1.7;
  margin: 16px 0 18px;
}

.product-hero__badges,
.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-hero__price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin: 22px 0;
}

.product-price--large strong {
  font-size: 1.9rem;
}

.product-hero__details,
.product-section__grid,
.related-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.product-meta--tall {
  min-height: 0;
}

.product-section__text {
  margin: 0;
  min-height: 0;
  color: var(--muted);
  line-height: 1.7;
}

.related-products {
  padding: 20px;
}

.related-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.related-card--photo {
  grid-template-columns: 96px minmax(0, 1fr);
}

.related-card__image {
  position: relative;
  width: 74px;
  height: 96px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(180deg, #f9fcff 0%, #d7e0ea 100%);
}

.related-card__image--photo {
  width: 96px;
  height: 108px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.96);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.22));
}

.related-card__image::after {
  content: attr(data-label);
  position: absolute;
  left: 8px;
  right: 8px;
  top: 30px;
  padding: 7px 4px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c9cff, #00d6c9);
  color: #fff;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-card strong,
.related-card span {
  display: block;
}

.related-card span {
  margin-top: 6px;
  color: var(--muted);
}

.product-empty {
  max-width: 680px;
  margin: 0 auto;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.profile-form .form-grid {
  grid-template-columns: 1fr;
}

.checkout-form label,
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.payment-options {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.payment-options label {
  flex-direction: row;
  align-items: center;
  font-weight: 500;
}

.payment-options {
  gap: 12px;
}

.payment-options legend {
  margin-bottom: 2px;
  font-family: var(--display-font);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-option {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option__marker {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 5px transparent;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.payment-option__copy {
  display: grid;
  gap: 4px;
}

.payment-option__copy strong {
  color: var(--text);
  font-size: 1.06rem;
}

.payment-option__copy small {
  color: #c9bdb3;
  line-height: 1.5;
}

.payment-option:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 78, 78, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 46, 46, 0.05));
}

.payment-option:has(input:checked) {
  border-color: rgba(255, 78, 78, 0.28);
  background:
    radial-gradient(circle at left center, rgba(255, 52, 52, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 58, 58, 0.08));
}

.payment-option:has(input:checked) .payment-option__marker {
  border-color: #ff5a50;
  background: rgba(255, 90, 80, 0.12);
  box-shadow: inset 0 0 0 5px #ff5a50, 0 0 18px rgba(255, 70, 70, 0.2);
}

.form-message {
  min-height: 22px;
  margin: 0;
  font-weight: 600;
}

.form-message[data-state="error"] {
  color: #ff8f80;
}

.form-message[data-state="success"] {
  color: var(--success);
}

.form-message[data-state="info"] {
  color: var(--muted);
}

.checkout-payment-action {
  display: grid;
  gap: 10px;
}

.checkout-payment-action:empty {
  display: none;
}

.checkout-payment-action__hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.checkout-payment-action__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cart-success-card {
  text-align: left;
}

.cart-success-card__meta {
  margin: 8px 0 4px;
}

.cart-page__success-note {
  margin: 0;
  color: var(--muted);
}

.footer {
  position: relative;
  z-index: 1;
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
  background: rgba(7, 12, 22, 0.86);
}

.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal {
  margin-top: 18px;
  margin-left: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(248, 231, 219, 0.1);
  display: grid;
  justify-items: start;
  gap: 8px;
  max-width: 440px;
}

.footer__legal-title {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.footer__legal-link {
  width: fit-content;
  color: rgba(255, 243, 235, 0.76);
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.footer__legal-link:hover {
  color: #fff7ef;
}

.footer__legal-copy {
  margin: 0;
  max-width: 42ch;
  font-size: 0.94rem;
  color: rgba(255, 243, 235, 0.66);
  line-height: 1.55;
}

.footer__legal-copy--secondary {
  font-size: 0.88rem;
  color: rgba(255, 243, 235, 0.52);
}

.footer p,
.footer strong {
  color: var(--text);
}

.empty {
  color: var(--muted);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.04);
  }
}

@keyframes bottleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  100% {
    transform: translateX(160%);
  }
}

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

/* Performance overrides: reduce expensive blur/paint effects on lower-end GPUs */
.topbar,
.header {
  background: rgba(8, 13, 24, 0.94);
}

.page-glow {
  filter: blur(18px);
  opacity: 0.08;
  animation: none;
}

.header,
.cart-button,
.hero-tags span,
.quick-stats__item,
.home-hero__copy,
.home-hero__visual,
.home-hero-clean__copy,
.home-hero-clean__panel,
.home-strip__item,
.home-link-card,
.home-category-card,
.home-point,
.benefit-card,
.entry-card,
.home-showcase,
.home-card,
.catalog-panel,
.cart-panel,
.checkout-note,
.checkout-form,
.product-card,
.product-hero,
.checkout-summary,
.auth-panel,
.account-order-card,
.account-favorite-card,
.account-order-card__badge,
.home-sections-board__item,
.favorite-toggle,
.mini-cart,
.filters-panel {
  backdrop-filter: none;
}

.quick-stats__item,
.home-hero__copy,
.home-hero__visual,
.home-hero-clean__copy,
.home-hero-clean__panel,
.home-strip__item,
.home-link-card,
.home-category-card,
.home-point,
.benefit-card,
.entry-card,
.home-showcase,
.home-card,
.catalog-panel,
.cart-panel,
.checkout-note,
.checkout-form,
.product-card,
.product-hero,
.checkout-summary,
.auth-panel,
.account-order-card,
.account-favorite-card,
.home-sections-board__item,
.mini-cart,
.filters-panel {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.product-card,
.account-favorite-card,
.cart-page-item,
.home-sections-board__item,
.catalog-panel,
.auth-panel,
.checkout-summary,
.chip,
.favorite-toggle,
.btn {
  transition-duration: 0.12s;
}

.product-card__image-bottle,
.product-hero__image,
.skeleton::after,
.skeleton,
.page-glow {
  animation: none;
}

.product-card__media::before {
  display: none;
}

.product-card:hover,
.home-category-card:hover,
.home-link-card:hover,
.home-sections-board__item:hover,
.entry-card:hover,
.account-favorite-card:hover,
.quick-stats__item:hover,
.chip:hover,
.favorite-toggle:hover,
.btn:hover {
  transform: none;
}

.product-card:hover {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.btn,
.chip,
.favorite-toggle,
.cart-button,
.home-category-card,
.home-link-card,
.home-sections-board__item,
.entry-card,
.account-favorite-card,
.product-card {
  transition-property: background-color, border-color, color, opacity;
}

.catalog-panel,
.product-card,
.account-favorite-card,
.account-order-card,
.admin-order-card,
.cart-page-item {
  content-visibility: auto;
  contain: layout paint style;
  contain-intrinsic-size: 320px;
}

.home-hero__copy,
.home-hero__visual,
.home-hero-clean__copy,
.home-hero-clean__panel,
.home-strip__item,
.home-link-card,
.home-category-card,
.home-point,
.benefit-card,
.entry-card,
.home-showcase,
.home-card,
.quick-stats__item,
.checkout-note,
.checkout-form,
.cart-panel {
  contain: layout paint;
}

.product-card__media,
.product-card__body,
.admin-order-card__items,
.account-order-card ul {
  contain: layout paint;
}

@media (max-width: 1180px) {
  .shop-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .shop-layout--wide,
  .home-hero__layout,
  .home-hero-clean__layout,
  .auth-hero__layout,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-favorites {
    grid-template-columns: 1fr;
  }

  .home-links-grid,
  .home-points {
    grid-template-columns: 1fr;
  }

  .home-sections-board__item {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cart-panel--sticky {
    grid-column: 1 / -1;
    position: static;
  }
}

@media (max-width: 920px) {
  .page-heading,
  .catalog-toolbar,
  .checkout-layout,
  .section-heading--row,
  .auth-panels,
  .benefits-grid,
  .entry-grid,
  .home-showcase-grid,
  .home-product-teaser__grid,
  .home-strip__grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .header__row {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 10px 0;
    gap: 12px;
  }

  .header-actions {
    margin-left: 0;
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .nav a {
    flex: 0 0 auto;
  }

  .shop-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-loading,
  .product-hero,
  .product-sections {
    grid-template-columns: 1fr;
  }

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

  .quick-stats {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-tags {
    margin-bottom: 8px;
  }

  .home-hero__copy,
  .home-hero__visual,
  .auth-hero__copy,
  .home-hero-clean__copy,
  .home-hero-clean__panel {
    padding: 24px;
  }

  .mobile-only {
    display: inline-flex;
  }

  .filters-close {
    display: inline-flex;
  }

  .filters-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    width: min(360px, 100%);
    height: 100vh;
    overflow-y: auto;
    border-radius: 0 24px 24px 0;
    transform: translateX(-104%);
    transition: transform 0.24s ease;
  }

  .filters-backdrop {
    position: fixed;
    inset: 0;
    z-index: 35;
    background: rgba(3, 7, 15, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }

  .filters-open .filters-panel {
    transform: translateX(0);
  }

  .filters-open .filters-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 16px);
  }

  .container--full,
  .container--narrow {
    width: calc(100% - 16px);
  }

  .product-card__meta,
  .product-card__footer,
  .product-card__actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .header__row {
    gap: 10px;
  }

  .logo__bar,
  .logo__run {
    font-size: 1.34rem;
  }

  .logo__wordmark::after {
    width: 84px;
    height: 34px;
  }

  .header-actions {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    gap: 8px;
  }

  .account-chip,
  .icon-button,
  .cart-button {
    min-height: 40px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .cart-button {
    flex: 1 1 auto;
    justify-content: center;
  }

  .footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer__legal {
    max-width: 100%;
  }

  .footer__legal-copy {
    max-width: none;
  }

  .product-page {
    padding: 16px 0 32px;
  }

  .product-view {
    gap: 14px;
  }

  .product-hero,
  .product-loading,
  .product-sections,
  .related-products__grid,
  .product-section__grid,
  .product-hero__details,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-hero,
  .product-loading {
    gap: 14px;
  }

  .product-hero__media,
  .product-loading__media {
    min-height: 320px;
    padding: 16px;
  }

  .product-hero__image {
    right: 18px;
    bottom: 18px;
    width: 126px;
    height: 196px;
    border-radius: 26px 26px 18px 18px;
  }

  .product-hero__image::before {
    top: -14px;
    left: 28px;
    width: 68px;
    height: 22px;
  }

  .product-hero__image::after {
    left: 12px;
    right: 12px;
    top: 60px;
    padding: 10px 8px;
    font-size: 0.72rem;
  }

  .product-hero__image--photo {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    border-radius: 22px;
  }

  .product-hero__content {
    padding: 18px;
  }

  .product-hero__heading {
    flex-direction: column;
    gap: 12px;
  }

  .product-hero__description {
    margin: 12px 0 14px;
    line-height: 1.6;
  }

  .product-hero__price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 0;
  }

  .product-hero__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card--photo {
    min-height: 0;
  }

  .product-card__media {
    min-height: 180px;
  }

  .product-card--photo .product-card__media-link {
    min-height: 220px;
  }

  .product-card__body {
    padding: 14px;
  }

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

  .cart-page-item__media {
    justify-content: flex-start;
  }

  .cart-page-item__header,
  .cart-page-item__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-hero__price-row,
  .product-hero__details,
  .product-section__grid,
  .related-products__grid,
  .catalog-toolbar__actions,
  .header-actions,
  .empty-state__actions,
  .home-hero__actions,
  .account-page__actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .home-hero__copy,
  .home-hero__visual,
  .home-card,
  .benefit-card,
  .entry-card,
  .account-order-card,
  .home-link-card,
  .home-category-card,
  .home-strip__item,
  .home-point {
    padding: 18px;
    border-radius: 22px;
  }

  .home-hero__copy h1 {
    font-size: 2.2rem;
  }

  .home-hero-clean__copy h1 {
    font-size: 2.3rem;
  }

  .admin-filters-row {
    grid-template-columns: 1fr;
  }

  .product-hero__heading {
    flex-direction: column;
  }

  .product-hero__media {
    min-height: 420px;
  }

  .product-hero__image {
    width: 128px;
    height: 204px;
    right: 20px;
  }

  .product-hero__placeholder {
    max-width: 58%;
  }

  .product-card__placeholder {
    max-width: 54%;
  }

  .product-card__image-bottle {
    width: 92px;
    height: 138px;
    right: 16px;
  }
}

  :root {
    --bg: #100509;
    --bg-soft: #220d13;
    --surface: rgba(46, 16, 23, 0.84);
    --surface-strong: #43131d;
    --surface-soft: rgba(255, 246, 239, 0.05);
    --surface-soft-2: rgba(255, 246, 239, 0.09);
    --text: #fcf4ec;
    --muted: #dcc9be;
    --border: rgba(249, 233, 220, 0.16);
    --border-strong: rgba(249, 233, 220, 0.26);
    --primary: #931f33;
    --primary-hover: #b02b42;
    --accent: #d88d80;
    --danger-soft: rgba(147, 31, 51, 0.22);
    --shadow-sm: 0 20px 46px rgba(16, 4, 7, 0.32);
    --shadow-md: 0 36px 96px rgba(9, 2, 4, 0.48);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --display-font: "Bebas Neue", Inter, system-ui, sans-serif;
  }

  body {
    background-image:
      radial-gradient(circle at 14% 12%, rgba(150, 32, 56, 0.26), transparent 24%),
      radial-gradient(circle at 84% 8%, rgba(255, 240, 227, 0.08), transparent 20%),
      radial-gradient(circle at 52% 100%, rgba(92, 18, 34, 0.18), transparent 28%),
      linear-gradient(180deg, #100509 0%, #1a090e 42%, #0f0508 100%);
  }

  h1,
  h2,
  .logo,
  .page-heading__eyebrow,
  .section-heading h2,
  .impact-hero__headline,
  .impact-heading h2,
  .impact-system__lead h2 {
    font-family: var(--display-font);
    letter-spacing: 0.02em;
  }

  .page-glow--left {
    background: rgba(132, 24, 45, 0.34);
  }

  .page-glow--right {
    background: rgba(249, 234, 222, 0.12);
  }

  .topbar {
    background: linear-gradient(90deg, rgba(80, 7, 7, 0.95), rgba(18, 18, 18, 0.96));
    color: rgba(255, 245, 240, 0.82);
    border-bottom: 1px solid rgba(255, 77, 77, 0.18);
  }

  .header {
    background: rgba(18, 7, 11, 0.84);
  }

  .logo {
    font-size: 0.92rem;
  }

  .logo__bar,
  .logo__run {
    font-size: 1.68rem;
  }

  .logo__wordmark::after {
    border-color: #ebc8b8;
    box-shadow: 0 0 18px rgba(235, 200, 184, 0.12);
  }

  .logo__bar {
    color: #fff7ef;
  }

  .logo__run {
    color: #cf7b6e;
  }

  .nav a {
    color: #eddcd0;
    border-radius: 12px;
    padding: 7px 11px;
  }

  .nav a:hover {
    background: rgba(255, 244, 236, 0.06);
  }

  .icon-button,
  .account-chip,
  .cart-button {
    border-radius: 12px;
    background: rgba(255, 245, 236, 0.04);
    min-height: 40px;
  }

  .account-chip--accent {
    background: linear-gradient(135deg, rgba(158, 41, 64, 0.32), rgba(83, 15, 28, 0.18));
  }

  .account-chip--logged {
    border-color: rgba(236, 196, 181, 0.32);
    color: #fff6ef;
  }

  .cart-button {
    background: linear-gradient(180deg, rgba(60, 18, 28, 0.94), rgba(24, 8, 12, 0.98));
  }

  .page-heading__eyebrow {
    color: #d9a392;
  }

  .hero-tags span,
  .chip--active,
  .product-card__badge,
  .account-order-card__badge,
  .cart-badge {
    background: rgba(146, 29, 51, 0.2);
    border-color: rgba(216, 141, 128, 0.22);
    color: #fff5ee;
  }

  .chip,
  .hero-tags span,
  .btn,
  .filters-panel__reset,
  .filters-panel__sort,
  .filters-panel__search,
  .filters-panel__select {
    border-radius: 10px;
  }

  .btn--primary {
    background: linear-gradient(180deg, #b72f48, #741728);
    box-shadow: 0 22px 38px rgba(103, 17, 33, 0.38);
  }

  .btn--primary:hover {
    background: linear-gradient(180deg, #cd425c, #8a1e32);
  }

  .btn--ghost {
    background: rgba(255, 245, 236, 0.04);
    border-color: rgba(248, 231, 219, 0.12);
  }

  .footer {
    background: linear-gradient(180deg, rgba(24, 8, 12, 0.96), rgba(13, 5, 8, 0.99));
  }

  .filters-panel,
  .catalog-panel,
  .cart-panel,
  .checkout-note,
  .checkout-form,
  .product-card,
  .account-order-card,
  .account-favorite-card,
  .admin-order-card,
  .auth-panel,
  .product-hero__media,
  .product-hero__content,
  .related-products,
  .page-heading,
  .quick-stats__item {
    background: linear-gradient(180deg, rgba(48, 18, 25, 0.94), rgba(19, 8, 12, 0.98));
  }

  .control-group input,
  .control-group select,
  .checkout-form input,
  .checkout-form select,
  .checkout-form textarea {
    background: rgba(34, 12, 17, 0.92);
    border-color: rgba(248, 231, 219, 0.12);
    color: #fcf4ec;
  }

  .control-group input::placeholder,
  .checkout-form input::placeholder,
  .checkout-form textarea::placeholder {
    color: #b88c81;
  }

  .chip {
    background: rgba(255, 245, 236, 0.04);
    border-color: rgba(248, 231, 219, 0.1);
  }

  .chip:hover {
    border-color: rgba(216, 141, 128, 0.2);
  }

  .product-card__image-bottle::after,
  .cart-page-item__image::after,
  .product-hero__image::after,
  .related-card__image::after,
  .account-favorite-card__image::after {
    background: linear-gradient(180deg, #d69f8e, #8e2435);
  }

  .home-page--impact {
    padding-bottom: 56px;
  }

  .impact-hero {
    position: relative;
    padding: 28px 0 18px;
  }

  @keyframes heroRiseIn {
    0% {
      opacity: 0;
      transform: translate3d(0, 26px, 0) scale(0.992);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }

  @keyframes heroBeamDrift {
    0%,
    100% {
      transform: translate3d(-1.2%, 0, 0) scale(0.98);
      opacity: 0.78;
    }
    50% {
      transform: translate3d(1.8%, -1.1%, 0) scale(1.02);
      opacity: 0.94;
    }
  }

  @keyframes heroGlowSweep {
    0%,
    100% {
      transform: translate3d(0, 0, 0) scale(1);
      opacity: 0.78;
    }
    50% {
      transform: translate3d(0.9%, -0.9%, 0) scale(1.02);
      opacity: 0.94;
    }
  }

  @keyframes railReveal {
    0% {
      opacity: 0;
      transform: translate3d(18px, 0, 0) scale(0.992);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }

  @keyframes railSweep {
    0% {
      transform: translateX(-118%) skewX(-14deg);
      opacity: 0;
    }
    22% {
      opacity: 0.1;
    }
    100% {
      transform: translateX(145%) skewX(-14deg);
      opacity: 0;
    }
  }

  @keyframes cardReveal {
    0% {
      opacity: 0;
      transform: translate3d(0, 16px, 0) scale(0.992);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }

  .impact-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 560px;
    background:
      radial-gradient(circle at 12% 22%, rgba(156, 28, 54, 0.28), transparent 28%),
      radial-gradient(circle at 78% 24%, rgba(248, 234, 223, 0.08), transparent 22%),
      linear-gradient(90deg, rgba(11, 9, 10, 0.2), rgba(11, 9, 10, 0));
    pointer-events: none;
    filter: blur(4px);
    animation: heroGlowSweep 9s ease-in-out infinite;
  }

  .impact-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: 22px;
    align-items: stretch;
  }

  .impact-hero__copy,
  .impact-hero__visual,
  .impact-zone-card,
  .impact-system__lead,
  .impact-system-card,
  .impact-usecases__item {
    position: relative;
    border: 1px solid rgba(255, 245, 236, 0.07);
    background: linear-gradient(180deg, rgba(37, 13, 19, 0.94), rgba(14, 6, 9, 0.98));
    box-shadow: var(--shadow-md);
    overflow: hidden;
  }

  [data-page="home"] .impact-hero__copy,
  [data-page="home"] .impact-hero__visual,
  [data-page="home"] .impact-benefit,
  [data-page="home"] .impact-hero__bottom-cta,
  [data-page="home"] .impact-zone-card,
  [data-page="home"] .impact-system__lead,
  [data-page="home"] .impact-system-card,
  [data-page="home"] .impact-usecases__item {
    opacity: 0;
    animation: heroRiseIn 1.02s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  [data-page="home"] .impact-hero__copy {
    animation-delay: 0.08s;
  }

  [data-page="home"] .impact-hero__visual {
    animation-delay: 0.2s;
  }

  [data-page="home"] .impact-benefit:nth-child(1) {
    animation-delay: 0.26s;
  }

  [data-page="home"] .impact-benefit:nth-child(2) {
    animation-delay: 0.34s;
  }

  [data-page="home"] .impact-benefit:nth-child(3) {
    animation-delay: 0.42s;
  }

  [data-page="home"] .impact-benefit:nth-child(4) {
    animation-delay: 0.5s;
  }

  [data-page="home"] .impact-hero__bottom-cta {
    animation-delay: 0.44s;
  }

  .impact-hero__copy {
    border-radius: 28px;
    padding: 36px;
    background:
      radial-gradient(circle at top left, rgba(185, 43, 69, 0.18), transparent 32%),
      linear-gradient(180deg, rgba(46, 16, 23, 0.95), rgba(16, 7, 10, 1));
  }

  .impact-hero__eyebrow,
  .impact-heading p,
  .impact-system__lead p {
    margin: 0;
    color: #dd998c;
    font-family: var(--display-font);
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .impact-hero__headline {
    margin: 16px 0 18px;
    font-size: clamp(4rem, 8vw, 7.4rem);
    line-height: 0.84;
    text-transform: uppercase;
  }

  .impact-hero__headline span,
  .impact-hero__headline strong {
    display: block;
  }

  .impact-hero__headline strong {
    color: #c92b46;
  }

  .impact-hero__text {
    max-width: 660px;
    margin: 0;
    color: #d7c0b6;
    font-size: 1.04rem;
    line-height: 1.7;
  }

  .impact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }

  .impact-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .impact-benefit {
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.42s ease, background 0.42s ease;
  }

  .impact-benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(211, 83, 107, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  }

  .impact-benefit span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #ff4d4d;
    font-family: var(--display-font);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
  }

  .impact-benefit strong,
  .impact-zone-card strong,
  .impact-system__lead strong,
  .impact-system-card strong,
  .impact-usecases__item strong {
    display: block;
    color: var(--text);
  }

  .impact-benefit strong {
    margin-bottom: 8px;
    font-size: 1.06rem;
  }

  .impact-benefit small,
  .impact-zone-card small {
    color: var(--muted);
    line-height: 1.55;
  }

  .impact-hero__visual {
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "rail"
      "cta";
    align-content: space-between;
    gap: 18px;
    min-height: 100%;
    border-radius: 30px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
    background:
      radial-gradient(circle at 28% 52%, rgba(255, 46, 46, 0.18), transparent 28%),
      radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.04), transparent 18%),
      linear-gradient(180deg, rgba(14, 12, 13, 0.98), rgba(4, 4, 5, 1));
  }

  .impact-hero__visual::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 22px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
      radial-gradient(circle at 72% 68%, rgba(255, 41, 41, 0.1), transparent 14%),
      radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.03), transparent 12%);
    pointer-events: none;
    z-index: 0;
    animation: heroGlowSweep 11s ease-in-out infinite;
  }

  .impact-hero__beam {
    position: absolute;
    inset: 14% 10% 14% 10%;
    height: auto;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 44, 44, 0.18), rgba(255, 44, 44, 0));
    filter: blur(54px);
    pointer-events: none;
    animation: heroBeamDrift 12s ease-in-out infinite;
  }

  .impact-category-rail {
    grid-area: rail;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-content: stretch;
    z-index: 1;
  }

  .impact-category-rail__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 106px;
    padding: 16px 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
      linear-gradient(98deg, rgba(26, 19, 20, 0.98) 0%, rgba(62, 23, 23, 0.92) 72%, rgba(108, 22, 22, 0.88) 100%);
    color: #fff5ee;
    text-decoration: none;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.34s ease, box-shadow 0.46s ease, background 0.46s ease;
  }

  [data-page="home"] .impact-category-rail__item {
    opacity: 0;
    animation: railReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  [data-page="home"] .impact-category-rail__item:nth-child(1) {
    animation-delay: 0.24s;
  }

  [data-page="home"] .impact-category-rail__item:nth-child(2) {
    animation-delay: 0.33s;
  }

  [data-page="home"] .impact-category-rail__item:nth-child(3) {
    animation-delay: 0.42s;
  }

  [data-page="home"] .impact-category-rail__item:nth-child(4) {
    animation-delay: 0.51s;
  }

  .impact-category-rail__item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, rgba(255, 155, 155, 0.95), rgba(255, 44, 44, 0.3));
    opacity: 0.9;
  }

  .impact-category-rail__item .impact-category-rail__thumb {
    transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1), filter 0.52s ease;
  }

  .impact-category-rail__item--active,
  .impact-category-rail__item:hover {
    transform: translateX(6px);
    border-color: rgba(255, 116, 116, 0.28);
    box-shadow: 0 22px 34px rgba(0, 0, 0, 0.24);
  }

  .impact-category-rail__item:hover .impact-category-rail__thumb,
  .impact-category-rail__item--active .impact-category-rail__thumb {
    transform: translate3d(-4px, 0, 0) scale(1.04);
    filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.36));
  }

  .impact-category-rail__item::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 240px;
    height: auto;
    border-radius: 50%;
    background: radial-gradient(circle at 100% 50%, rgba(255, 98, 98, 0.16), rgba(255, 255, 255, 0));
    pointer-events: none;
    transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.48s ease;
  }

  .impact-category-rail__item .impact-category-rail__copy::after {
    content: "";
    position: absolute;
    inset: -18px auto -18px -44px;
    width: 68px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 244, 236, 0.22), rgba(255, 255, 255, 0));
    transform: translateX(-135%) skewX(-18deg);
    pointer-events: none;
    opacity: 0;
  }

  .impact-category-rail__item:hover::after,
  .impact-category-rail__item--active::after {
    transform: scale(1.08);
    opacity: 1;
  }

  .impact-category-rail__item:hover .impact-category-rail__copy::after,
  .impact-category-rail__item--active .impact-category-rail__copy::after {
    animation: railSweep 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .impact-category-rail__copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
    min-width: 0;
  }

  .impact-category-rail__copy strong {
    display: block;
    font-family: var(--display-font);
    font-size: 1.18rem;
    letter-spacing: 0.045em;
    line-height: 1;
    text-transform: uppercase;
  }

  .impact-category-rail__copy small {
    max-width: 24ch;
    color: rgba(255, 244, 237, 0.72);
    font-size: 0.98rem;
    line-height: 1.34;
  }

  .impact-category-rail__tap {
    display: inline-flex;
    width: fit-content;
    margin-top: 4px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 244, 237, 0.06);
    color: rgba(255, 244, 237, 0.84);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .impact-category-rail__thumb {
    position: relative;
    z-index: 1;
    flex: 0 0 112px;
    width: 112px;
    height: 112px;
    object-fit: contain;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.28));
  }

  .impact-hero__bottom-cta {
    grid-area: cta;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(19, 15, 16, 0.96), rgba(9, 8, 9, 0.98));
    font-family: var(--display-font);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .impact-hero__bottom-cta span {
    color: rgba(255, 244, 237, 0.86);
  }

  .impact-hero__bottom-cta a {
    color: #fff4ed;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(173, 16, 16, 0.96), rgba(244, 50, 50, 0.96));
    box-shadow: 0 14px 28px rgba(97, 9, 9, 0.34);
  }

  .impact-usecases {
    padding: 10px 0 20px;
  }

  .impact-usecases__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .impact-usecases__item {
    padding: 20px 22px;
    border-radius: 18px;
    min-height: 132px;
  }

  .impact-usecases__item span {
    display: inline-flex;
    margin-bottom: 18px;
    color: #ff4b4b;
    font-family: var(--display-font);
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .impact-usecases__item strong {
    font-size: 1.1rem;
    line-height: 1.35;
  }

  .impact-zones,
  .impact-system {
    padding: 12px 0 22px;
  }

  .impact-heading {
    margin-bottom: 18px;
  }

  .impact-heading h2,
  .impact-system__lead h2 {
    margin: 8px 0 0;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 0.92;
    text-transform: uppercase;
  }

  .impact-system__headline {
    display: flex;
    flex-direction: column;
    gap: 0.04em;
    max-width: 7.2ch;
  }

  .impact-system__headline span,
  .impact-system__headline strong {
    display: block;
  }

  .impact-system__headline span:nth-child(2) {
    color: #f3ebe3;
    transform: translateX(0.08em);
  }

  .impact-system__headline strong {
    position: relative;
    color: #ff4e43;
    font-size: 1.08em;
    letter-spacing: 0.01em;
  }

  .impact-system__headline strong::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 82%;
    height: 0.16em;
    background: linear-gradient(90deg, rgba(255, 78, 67, 0.9), rgba(255, 78, 67, 0));
    z-index: -1;
    filter: blur(1px);
  }

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

  .impact-zone-card,
  .impact-system-card,
  .impact-system__lead {
    border-radius: 24px;
    padding: 24px;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease;
  }

  .impact-zone-card span,
  .impact-system-card span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #ff8a7c;
    font-family: var(--display-font);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .impact-zone-card strong,
  .impact-system-card strong {
    margin-bottom: 18px;
    font-size: 1.12rem;
    line-height: 1.45;
  }

  .impact-zone-card small {
    font-family: var(--display-font);
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .impact-zone-card__benefit {
    display: block;
    font-family: inherit;
    font-size: 0.96rem;
    line-height: 1.45;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 244, 237, 0.74);
  }

  .impact-zone-card:hover,
  .impact-system-card:hover {
    border-color: rgba(255, 66, 66, 0.22);
    transform: translateY(-3px);
  }

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

  .impact-system__lead {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
      radial-gradient(circle at top left, rgba(255, 46, 46, 0.14), transparent 34%),
      linear-gradient(180deg, rgba(18, 18, 19, 0.98), rgba(8, 8, 9, 1));
  }

  .impact-system__lead strong {
    margin-top: 18px;
    color: #d6cbc1;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    max-width: 34rem;
  }

  @media (max-width: 1180px) {
    .impact-hero__grid,
    .impact-system__grid {
      grid-template-columns: minmax(0, 1fr);
    }

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

  }

  @media (max-width: 760px) {
    .impact-hero__copy,
    .impact-hero__visual,
    .impact-zone-card,
    .impact-system-card,
    .impact-system__lead,
    .impact-usecases__item {
      border-radius: 20px;
    }

    .impact-hero__copy,
    .impact-hero__visual {
      padding: 22px;
    }

    .impact-hero__headline {
      font-size: clamp(3rem, 16vw, 4.8rem);
    }

    .impact-benefits,
    .impact-zones__grid,
    .impact-usecases__grid,
    .impact-category-rail {
      grid-template-columns: minmax(0, 1fr);
    }

    .impact-category-rail__item {
      min-height: 98px;
      padding: 14px 18px;
    }

    .impact-category-rail__thumb {
      width: 78px;
      height: 78px;
      flex-basis: 78px;
    }

    .impact-hero__bottom-cta {
      position: static;
      margin-top: 18px;
      flex-direction: column;
      align-items: flex-start;
    }

    .impact-heading h2,
    .impact-system__lead h2 {
      font-size: clamp(2rem, 11vw, 3.1rem);
    }

    .impact-system__headline {
      max-width: none;
    }
  }

  .catalog-page,
  .product-page,
  .cart-page,
  .account-page {
    padding-bottom: 48px;
  }

  .page-heading,
  .page-heading.page-heading--compact {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 30px 32px;
    background:
      radial-gradient(circle at top left, rgba(255, 48, 48, 0.14), transparent 34%),
      linear-gradient(180deg, rgba(16, 16, 17, 0.97), rgba(7, 7, 8, 0.99));
    box-shadow: var(--shadow-md);
  }

  .page-heading h1 {
    margin: 10px 0 12px;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 0.9;
    text-transform: uppercase;
  }

  .page-heading__text {
    max-width: 720px;
    color: #d1c5bc;
    line-height: 1.7;
  }

  .shop-layout.shop-layout--wide {
    align-items: start;
    gap: 18px;
  }

  .filters-panel,
  .catalog-panel,
  .cart-panel,
  .checkout-note,
  .checkout-form,
  .product-loading,
  .empty-state,
  .breadcrumbs,
  .account-layout > .catalog-panel {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
  }

  .filters-panel,
  .catalog-panel,
  .cart-panel,
  .checkout-note,
  .checkout-form,
  .empty-state,
  .breadcrumbs {
    border-radius: 24px;
  }

  .panel-heading h2,
  .catalog-toolbar h2,
  .checkout-note h2,
  .checkout-form h2,
  .account-orders-panel h2 {
    font-family: var(--display-font);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .filters-panel {
    top: 94px;
  }

  .control-group > span,
  .control-group label span,
  .results-count,
  .summary-row span,
  .summary-row strong,
  .breadcrumbs a,
  .breadcrumbs span {
    color: #ddd1c7;
  }

  .control-group input,
  .control-group select,
  .checkout-form input,
  .checkout-form select,
  .checkout-form textarea,
  .profile-form input,
  .payment-options,
  .checkout-field {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    border-radius: 12px;
  }

  .control-group input:focus,
  .control-group select:focus,
  .checkout-form input:focus,
  .checkout-form select:focus,
  .checkout-form textarea:focus,
  .profile-form input:focus {
    border-color: rgba(255, 74, 74, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 61, 61, 0.12);
  }

  .checkbox-row,
  .payment-options label {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .active-filters {
    margin-bottom: 18px;
  }

  .active-filters .chip,
  .chip-group .chip {
    background: rgba(255, 255, 255, 0.03);
  }

  .products-grid {
    gap: 18px;
  }

  .product-card,
  .account-favorite-card,
  .related-card,
  .cart-page-item,
  .account-order-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
  }

  .product-card {
    background:
      radial-gradient(circle at top left, rgba(255, 42, 42, 0.08), transparent 28%),
      linear-gradient(180deg, rgba(16, 16, 17, 0.98), rgba(8, 8, 9, 1));
  }

  .product-card__media,
  .account-favorite-card__media,
  .related-card__media,
  .cart-page-item__media {
    background:
      radial-gradient(circle at center, rgba(255, 54, 54, 0.14), transparent 30%),
      linear-gradient(180deg, rgba(24, 16, 16, 0.88), rgba(12, 12, 13, 0.98));
  }

  .product-card__title,
  .related-card__title,
  .account-favorite-card__title,
  .cart-page-item__title,
  .account-order-card__title {
    font-size: 1.08rem;
    line-height: 1.35;
  }

  .product-card__price,
  .related-card__price,
  .cart-page-item__price,
  .product-hero__price,
  .summary-row--total strong,
  #cart-total,
  #cart-page-total {
    color: #ff6055;
    font-family: var(--display-font);
    letter-spacing: 0.04em;
  }

  .product-card__meta,
  .product-card__description,
  .related-card__meta,
  .account-order-card__meta,
  .cart-page__hint,
  .checkout-note__content,
  .empty-state p,
  .product-hero__description,
  .product-hero__availability,
  .product-hero__code,
  .product-section__content,
  .product-section__content li {
    color: #cfc2b8;
  }

  .product-card__actions,
  .cart-page-item__footer,
  .product-hero__actions,
  .account-page__actions {
    gap: 12px;
  }

  .product-view {
    gap: 22px;
  }

  .breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 16px;
    background: rgba(14, 14, 15, 0.96);
  }

  .product-loading {
    padding: 26px;
    background:
      radial-gradient(circle at top left, rgba(255, 48, 48, 0.12), transparent 28%),
      linear-gradient(180deg, rgba(14, 14, 15, 0.98), rgba(8, 8, 9, 1));
  }

  .product-hero__media,
  .product-hero__content,
  .product-section,
  .related-products,
  .checkout-note,
  .checkout-form,
  .cart-main__panel,
  .cart-summary-panel,
  .catalog-panel,
  .empty-state {
    border-radius: 28px;
  }

  .product-hero__media,
  .product-hero__content,
  .product-section,
  .related-products,
  .checkout-note,
  .checkout-form,
  .cart-main__panel,
  .cart-summary-panel,
  .catalog-panel,
  .empty-state,
  .product-loading {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
  }

  .product-hero__content {
    background:
      radial-gradient(circle at top left, rgba(255, 48, 48, 0.15), transparent 30%),
      linear-gradient(180deg, rgba(14, 14, 15, 0.98), rgba(8, 8, 9, 1));
  }

  .product-hero__heading h1 {
    margin: 6px 0 10px;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 0.92;
    text-transform: uppercase;
  }

  .product-hero__chips .chip,
  .product-hero__details .detail-card,
  .product-section,
  .summary-row,
  .checkout-payment-action,
  .account-page__actions .btn,
  .empty-state__actions .btn {
    border-radius: 16px;
  }

  .product-hero__details .detail-card,
  .product-section,
  .summary-row,
  .checkout-payment-action {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .product-section__heading h2,
  .related-products__header h2 {
    font-family: var(--display-font);
    font-size: 2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .cart-page__layout,
  .checkout-layout.checkout-layout--single,
  .account-layout {
    gap: 18px;
  }

  .summary-row,
  .checkout-note__content ul,
  .payment-options {
    padding: 16px 18px;
  }

  .summary-row--total {
    background: linear-gradient(90deg, rgba(117, 10, 10, 0.5), rgba(255, 44, 44, 0.12));
  }

  .checkout-note__content ul {
    margin: 18px 0 0;
  }

  .checkout-note__content li {
    color: #f0e4d9;
  }

  .checkout-form label,
  .profile-form label {
    color: #efe3d8;
  }

  .checkout-submit-button,
  #checkout-submit-button,
  .profile-form .btn--primary {
    min-height: 52px;
  }

  .account-layout {
    display: grid;
  }

  .account-layout.product-view--hidden {
    display: none;
  }

  .account-favorites,
  .account-orders,
  .cart-page-items {
    gap: 16px;
  }

  .account-order-card__head,
  .cart-page-item__header,
  .cart-page-item__footer {
    gap: 10px;
  }

  .empty-state {
    padding: 30px;
    background:
      radial-gradient(circle at top left, rgba(255, 48, 48, 0.12), transparent 28%),
      linear-gradient(180deg, rgba(15, 15, 16, 0.98), rgba(8, 8, 9, 1));
  }

  .empty-state h3 {
    margin: 0 0 10px;
    font-family: var(--display-font);
    font-size: 2.1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  @media (max-width: 980px) {
    .page-heading,
    .page-heading.page-heading--compact {
      padding: 24px;
    }

    .page-heading h1,
    .product-hero__heading h1 {
      font-size: clamp(2.4rem, 10vw, 4rem);
    }
  }

  @media (max-width: 760px) {
    .page-heading,
    .page-heading.page-heading--compact,
    .filters-panel,
    .catalog-panel,
    .cart-panel,
    .checkout-note,
    .checkout-form,
    .product-hero__media,
    .product-hero__content,
    .product-section,
    .related-products,
    .empty-state,
    .product-loading,
    .breadcrumbs {
      border-radius: 20px;
    }

    .page-heading,
    .page-heading.page-heading--compact,
    .product-loading,
    .empty-state {
      padding: 22px;
    }

    .products-grid,
    .account-favorites,
    .account-orders,
    .cart-page-items {
      gap: 14px;
    }

    .payment-options {
      gap: 10px;
      padding: 14px;
    }

    .payment-options legend {
      margin-bottom: 6px;
      font-size: 1.15rem;
    }

    .payment-option {
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 16px;
    }

    .payment-option__marker {
      width: 20px;
      height: 20px;
    }

    .payment-option__copy {
      gap: 6px;
    }

    .payment-option__copy strong {
      font-size: 1rem;
      line-height: 1.3;
    }

    .payment-option__copy small {
      font-size: 0.92rem;
      line-height: 1.45;
    }
  }

  @media (max-width: 980px) {
    .header {
      padding: 14px 0 12px;
    }

    .header__row {
      align-items: stretch;
      gap: 10px;
    }

    .logo-link {
      align-self: flex-start;
    }

    .nav {
      order: 2;
      width: 100%;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 6px;
      padding-bottom: 4px;
    }

    .nav a {
      padding: 10px 14px;
      font-size: 0.95rem;
      white-space: nowrap;
    }

    .header-actions {
      order: 3;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
      gap: 8px;
      width: 100%;
    }

    .account-chip,
    .icon-button,
    .cart-button {
      width: 100%;
      min-width: 0;
      justify-content: center;
      padding-left: 10px;
      padding-right: 10px;
      white-space: nowrap;
    }

    .icon-button {
      gap: 6px;
    }

    .footer {
      padding: 24px 0 30px;
    }

    .footer__row {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    .footer__row > * {
      width: 100%;
    }

    .footer__legal {
      max-width: none;
    }

    .impact-category-rail__item {
      min-height: 92px;
      padding: 14px 16px;
      border-radius: 18px;
      gap: 12px;
    }

    .impact-category-rail__thumb {
      width: 86px;
      height: 86px;
      flex-basis: 86px;
    }

    .impact-category-rail__copy strong {
      font-size: 1rem;
      line-height: 1.06;
    }

    .impact-category-rail__copy small {
      max-width: none;
      font-size: 0.92rem;
      line-height: 1.28;
    }

    .catalog-page {
      padding: 18px 0 28px;
    }

    .catalog-page .page-heading {
      padding: 20px;
      margin-bottom: 14px;
      border-radius: 22px;
    }

    .catalog-page .page-heading__eyebrow {
      margin-bottom: 10px;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
    }

    .catalog-page .page-heading h1 {
      font-size: clamp(2.5rem, 7vw, 4rem);
      line-height: 0.9;
      margin-bottom: 10px;
    }

    .catalog-page .page-heading__text {
      max-width: 40ch;
      font-size: 0.98rem;
      line-height: 1.42;
    }

    .catalog-page .hero-tags {
      gap: 8px;
      margin-top: 14px;
    }

    .catalog-page .hero-tags span {
      padding: 8px 10px;
      font-size: 0.74rem;
    }

    .catalog-panel,
    .filters-panel {
      padding: 16px;
      border-radius: 22px;
    }

    .catalog-toolbar {
      align-items: flex-start;
      gap: 12px;
      padding-bottom: 14px;
    }

    .catalog-toolbar__actions {
      width: 100%;
      justify-content: space-between;
      gap: 10px;
    }

    .catalog-toolbar .control-group--inline {
      min-width: 0;
      flex: 1 1 auto;
    }

    .catalog-toolbar .control-group--inline select {
      min-width: 0;
    }

    .active-filters {
      margin: 12px 0 12px;
      min-height: 0;
    }

    .products-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .product-card,
    .product-card--photo {
      min-height: 0;
      border-radius: 20px;
    }

    .product-card__media {
      min-height: 154px;
      padding: 12px;
    }

    .product-card--photo .product-card__media-link {
      min-height: 168px;
    }

    .product-card__photo-note,
    .product-card__description,
    .product-card__meta {
      display: none;
    }

    .product-card__image-bottle {
      right: 14px;
      bottom: 12px;
      width: 76px;
      height: 118px;
    }

    .product-card__image-bottle--photo {
      right: 10px;
      bottom: 10px;
      width: calc(100% - 20px);
      height: calc(100% - 20px);
      border-radius: 20px;
    }

    .product-card__body {
      gap: 8px;
      padding: 12px;
    }

    .product-card__brand {
      margin-bottom: 2px;
      font-size: 0.74rem;
    }

    .product-card__title {
      font-size: 0.86rem;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .product-card__badge {
      padding: 4px 8px;
      font-size: 0.64rem;
    }

    .product-card__footer {
      gap: 8px;
      flex-direction: column;
      align-items: stretch;
    }

    .product-price strong {
      font-size: 1rem;
    }

    .product-price span,
    .stock-badge {
      font-size: 0.74rem;
    }

    .product-card__actions {
      grid-template-columns: 1fr;
      gap: 6px;
    }

    .product-card__actions .btn {
      min-height: 38px;
      padding: 9px 10px;
      font-size: 0.72rem;
    }
  }

  @media (max-width: 640px) {
    .header-actions {
      grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
    }

    .logo__bar,
    .logo__run {
      font-size: 1.18rem;
    }

    .nav a {
      padding: 9px 12px;
      font-size: 0.9rem;
    }

    .impact-category-rail__item {
      min-height: 84px;
      padding: 12px 14px;
      gap: 10px;
    }

    .impact-category-rail__thumb {
      width: 68px;
      height: 68px;
      flex-basis: 68px;
    }

    .impact-category-rail__copy {
      gap: 4px;
    }

    .impact-category-rail__copy strong {
      font-size: 0.92rem;
    }

    .impact-category-rail__copy small {
      font-size: 0.84rem;
      line-height: 1.24;
    }

    .impact-category-rail__tap {
      padding: 5px 8px;
      font-size: 0.62rem;
      letter-spacing: 0.06em;
    }

    .catalog-page {
      padding-top: 14px;
    }

    .catalog-page .page-heading,
    .catalog-toolbar,
    .filters-panel,
    .catalog-panel {
      border-radius: 18px;
    }

    .catalog-page .page-heading {
      padding: 18px;
    }

    .catalog-page .page-heading h1 {
      font-size: clamp(2.1rem, 10vw, 3.2rem);
      line-height: 0.94;
    }

    .catalog-page .page-heading p {
      font-size: 0.96rem;
      line-height: 1.45;
    }

    .catalog-page .page-heading__text,
    .catalog-page .hero-tags {
      display: none;
    }

    .catalog-toolbar {
      padding-bottom: 12px;
    }

    .catalog-toolbar h2 {
      font-size: 1.05rem;
    }

    .results-count {
      font-size: 0.82rem;
    }

    .catalog-toolbar__actions {
      gap: 8px;
    }

    .catalog-toolbar .control-group--inline span {
      font-size: 0.74rem;
    }

    .catalog-toolbar .control-group--inline select,
    #open-filters {
      min-height: 38px;
      padding: 8px 10px;
      font-size: 0.78rem;
    }

    .catalog-panel {
      padding: 12px;
    }

    .chip-group {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: none;
    }

    .chip-group::-webkit-scrollbar {
      display: none;
    }

    .chip-group .chip {
      flex: 0 0 auto;
      white-space: nowrap;
    }

    .products-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .product-card,
    .product-card--photo {
      min-height: 0;
      border-radius: 18px;
    }

    .product-card__media {
      min-height: 132px;
      padding: 10px;
    }

    .product-card--photo .product-card__media-link {
      min-height: 148px;
    }

    .product-card__photo-note {
      display: none;
    }

    .favorite-toggle {
      top: 10px;
      right: 10px;
      width: 32px;
      height: 32px;
    }

    .product-card__image-bottle {
      right: 12px;
      bottom: 10px;
      width: 68px;
      height: 108px;
      border-radius: 18px 18px 12px 12px;
    }

    .product-card__image-bottle::before {
      top: -10px;
      left: 18px;
      width: 32px;
      height: 16px;
    }

    .product-card__image-bottle::after {
      left: 8px;
      right: 8px;
      top: 34px;
      padding: 6px 4px;
      border-radius: 10px;
      font-size: 0.54rem;
    }

    .product-card__image-bottle--photo {
      right: 10px;
      bottom: 10px;
      width: calc(100% - 20px);
      height: calc(100% - 20px);
      border-radius: 18px;
      background-size: contain;
      background-position: center center;
      filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.24));
    }

    .product-card__body {
      gap: 8px;
      padding: 10px;
    }

    .product-card--photo .product-card__body {
      gap: 8px;
    }

    .product-card__header {
      gap: 8px;
    }

    .product-card__brand {
      margin-bottom: 2px;
      font-size: 0.72rem;
    }

    .product-card__title {
      font-size: 0.82rem;
      line-height: 1.28;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .product-card__badge {
      padding: 4px 8px;
      font-size: 0.62rem;
    }

    .product-card__description,
    .product-card__meta {
      display: none;
    }

    .product-card__footer {
      gap: 8px;
      align-items: stretch;
      flex-direction: column;
    }

    .product-price strong {
      font-size: 0.96rem;
    }

    .product-price span,
    .stock-badge {
      font-size: 0.72rem;
    }

    .product-card__actions {
      grid-template-columns: 1fr;
      gap: 6px;
    }

    .product-card__actions .btn {
      min-height: 36px;
      padding: 9px 10px;
      font-size: 0.72rem;
    }
  }

  @media (max-width: 420px) {
    .products-grid {
      gap: 8px;
    }

    .product-card__media {
      min-height: 122px;
      padding: 8px;
    }

    .product-card--photo .product-card__media-link {
      min-height: 136px;
    }

    .product-card__body {
      padding: 9px;
    }

    .product-card__actions .btn {
      min-height: 34px;
      padding: 8px 8px;
      font-size: 0.68rem;
    }
  }

@media (max-width: 980px) {
  body {
    padding-top: 216px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
  }

  .filters-panel {
    top: 216px;
    height: calc(100vh - 216px);
  }

  .filters-backdrop {
    top: 216px;
  }

  .cart-page-item__media {
    background: none;
    min-height: 0;
    padding: 0;
  }

  .cart-page-item__image,
  .cart-page-item__image--photo {
    width: 88px;
    height: 118px;
    background-size: contain;
    background-position: center center;
  }

  .cart-page-item__image--photo {
    border-radius: 18px;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 198px;
  }

  .filters-panel {
    top: 198px;
    width: min(340px, calc(100vw - 12px));
    height: calc(100vh - 198px);
  }

  .filters-backdrop {
    top: 198px;
  }

  .cart-page-item__media {
    justify-content: center;
  }

  .cart-page-item__image,
  .cart-page-item__image--photo {
    width: 96px;
    height: 122px;
  }
}

.product-section--detail {
  min-height: 0;
  padding: 20px;
  align-self: start;
}

.product-section--detail .panel-heading {
  margin-bottom: 12px;
}

.product-section--detail .panel-heading h2 {
  margin: 0;
}

.account-favorite-card--photo,
.related-card--photo {
  align-items: center;
}

@media (max-width: 980px) {
  .product-section--detail {
    padding: 18px;
  }

  .product-section__text {
    line-height: 1.58;
  }

  .related-products {
    padding: 16px;
  }

  .related-products__grid {
    gap: 10px;
  }

  .related-card,
  .related-card--photo,
  .account-favorite-card,
  .account-favorite-card--photo {
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
  }

  .related-card {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .related-card--photo,
  .account-favorite-card--photo {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .related-card__image,
  .account-favorite-card__image {
    width: 68px;
    height: 88px;
    border-radius: 16px 16px 10px 10px;
  }

  .related-card__image--photo,
  .account-favorite-card__image--photo {
    width: 76px;
    height: 88px;
    border-radius: 16px;
    background-size: contain;
    background-position: center center;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.2));
  }

  .related-card strong,
  .account-favorite-card strong {
    font-size: 0.86rem;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .related-card span,
  .account-favorite-card span,
  .account-favorite-card small {
    font-size: 0.74rem;
    line-height: 1.28;
  }

  .cart-page-item__image--photo {
    width: 74px;
    height: 104px;
    border-radius: 16px;
    background-size: contain;
    background-position: center center;
  }
}

@media (max-width: 760px) {
  .product-sections {
    gap: 12px;
  }

  .product-section--detail {
    padding: 14px;
  }

  .product-section--detail .panel-heading {
    margin-bottom: 10px;
  }

  .product-section--detail .panel-heading h2,
  .related-products .panel-heading h2 {
    font-size: 1.18rem;
    letter-spacing: 0.03em;
  }

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

  .product-meta {
    padding: 9px 10px;
    border-radius: 12px;
  }

  .product-meta span {
    font-size: 0.68rem;
  }

  .product-meta strong {
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .account-favorites {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .related-products {
    padding: 12px;
  }

  .related-products__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .related-card,
  .related-card--photo,
  .account-favorite-card,
  .account-favorite-card--photo {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 14px;
  }

  .related-card__image,
  .related-card__image--photo,
  .account-favorite-card__image,
  .account-favorite-card__image--photo {
    width: 62px;
    height: 74px;
    border-radius: 14px;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
  }

  .cart-page-item__image,
  .cart-page-item__image--photo {
    width: 68px;
    height: 88px;
    border-radius: 14px;
  }

  .cart-page-item__body {
    gap: 10px;
  }
}

@media (max-width: 980px) {
  body {
    padding-top: 188px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
  }

  .header__row {
    min-height: 0;
  }

  .nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    touch-action: pan-x;
  }

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

  .nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .filters-panel {
    top: 188px;
    left: 8px;
    width: min(356px, calc(100vw - 16px));
    height: calc(100vh - 196px);
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  }

  .filters-backdrop {
    display: none !important;
  }

  .filters-open .filters-panel {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .filters-open .filters-backdrop {
    opacity: 0;
    pointer-events: none;
  }

  .cart-page-item__media {
    background: transparent;
    min-height: 0;
    padding: 0;
  }

  .cart-page-item__image,
  .cart-page-item__image--photo {
    width: 92px;
    height: 122px;
    background-size: contain;
    background-position: center center;
  }

  .cart-page-item__image--photo {
    border-radius: 18px;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
  }

  .product-hero--photo .product-hero__media {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
  }

  .product-hero__image--photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(220px, 84%);
    height: 244px;
    margin: 0 auto;
    border-radius: 22px;
    background-color: transparent;
    border: 0;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.24));
  }

  .product-card--photo .product-card__media-link {
    min-height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-card__image-bottle--photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 136px);
    height: 144px;
    margin: 0 auto;
    border-radius: 18px;
    background-color: transparent;
    border: 0;
    background-size: contain;
    background-position: center center;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.2));
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 174px;
  }

  .header {
    padding: 10px 0 8px;
  }

  .header__row {
    gap: 8px;
  }

  .nav {
    gap: 4px;
    padding-bottom: 2px;
  }

  .nav a {
    padding: 8px 11px;
    font-size: 0.88rem;
  }

  .header-actions {
    grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr);
  }

  .account-chip,
  .icon-button,
  .cart-button {
    min-height: 38px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 0.84rem;
  }

  .filters-panel {
    top: 174px;
    left: 6px;
    width: min(336px, calc(100vw - 12px));
    height: calc(100vh - 180px);
  }

  .product-hero--photo .product-hero__media {
    min-height: 254px;
    padding: 12px;
  }

  .product-hero__image--photo {
    width: min(190px, 82%);
    height: 210px;
    border-radius: 18px;
  }

  .product-card__media {
    min-height: 118px;
    padding: 8px;
  }

  .product-card--photo .product-card__media-link {
    min-height: 124px;
  }

  .product-card__image-bottle--photo {
    width: min(100%, 116px);
    height: 124px;
    border-radius: 14px;
  }

  .cart-page-item__image,
  .cart-page-item__image--photo {
    width: 84px;
    height: 108px;
  }
}

@media (max-width: 980px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: none;
  }

  body {
    position: relative;
    touch-action: pan-y pinch-zoom;
  }

  main,
  .container,
  .container--full {
    max-width: 100%;
  }

  .header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: rgba(18, 7, 11, 0.98) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    will-change: auto;
    backface-visibility: hidden;
    contain: paint;
    transform: translateZ(0);
  }

  .topbar {
    display: none !important;
  }

  body {
    padding-top: 182px !important;
  }

  .admin-settings-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-settings-grid > :first-child {
    order: 1;
  }

  .admin-settings-grid > :last-child {
    order: 2;
  }

  .admin-settings-actions {
    flex-direction: column;
  }

  .admin-settings-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 168px !important;
  }

  .admin-settings-card .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  .cart-page-item__media {
    background: transparent !important;
  }

  .cart-page-item__image--photo {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    filter: none;
  }
}
