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

:root {
  --ink: #0d1110;
  --forest: #073f39;
  --forest-2: #0b2f2b;
  --moss: #77856e;
  --ivory: #f4efe6;
  --stone: #c7bdaa;
  --line: rgba(244, 239, 230, 0.16);
  --wine: #6b2637;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-family-base: "Poiret One", "Segoe UI", Arial, sans-serif;
  --font-family-heading: "Poiret One", "Segoe UI Light", Arial, sans-serif;
  --font-family-ui: Inter, "Segoe UI", Arial, sans-serif;
  --display-font: var(--font-family-heading);
  --text-font: var(--font-family-base);
  --font-weight-body: 520;
  --font-weight-ui: 620;
  --font-weight-heading: 400;
  --line-height-body: 1.58;
  --line-height-compact: 1.32;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: var(--font-weight-body);
  line-height: var(--line-height-body);
  color: var(--ivory);
  background:
    radial-gradient(circle at 14% 4%, rgba(107, 38, 55, 0.22), transparent 30rem),
    radial-gradient(circle at 84% 18%, rgba(7, 63, 57, 0.42), transparent 34rem),
    linear-gradient(135deg, #090b0a 0%, #111b18 52%, #070807 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 239, 230, 0.09), transparent 30rem),
    linear-gradient(180deg, rgba(244, 239, 230, 0.025), transparent 45%);
}

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

body.menu-is-open {
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-ui);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 46px;
  padding: 10px 12px;
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 999px;
  background: rgba(8, 10, 9, 0.42);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  animation: slideDown 680ms var(--ease) both;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(244, 239, 230, 0.055);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  grid-area: 1 / 1;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 240ms var(--ease), opacity 200ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.site-header,
.hero,
.section,
.custom-order,
.catalog-hero,
.site-footer {
  max-width: calc(100% - 24px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  font-family: var(--display-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}

.brand:hover img {
  box-shadow: 0 0 0 5px rgba(244, 239, 230, 0.08);
  transform: rotate(-4deg) scale(1.04);
}

.main-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  min-width: 0;
}

.main-nav a,
.cart-button,
.filters button,
.product-bottom button {
  border: 1px solid var(--line);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.045);
}

.main-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(244, 239, 230, 0.74);
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, transform 260ms var(--ease);
}

.main-nav a:hover {
  border-color: rgba(244, 239, 230, 0.34);
  color: var(--ivory);
  background: rgba(244, 239, 230, 0.09);
  transform: translateY(-2px);
}

.cart-button {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 45;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-height: 0;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
  cursor: pointer;
  box-shadow: none;
  transition: transform 260ms var(--ease), background 260ms ease, border-color 260ms ease;
  backdrop-filter: blur(16px);
}

.cart-button::before {
  width: 25px;
  height: 25px;
  content: "";
  background: var(--ivory);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM5.2 4l.35 2H21l-2 8H8.1l.25 1.3c.09.42.45.7.88.7H19v2H9.23a2.9 2.9 0 0 1-2.84-2.34L4.04 3H1V1h4.7l.5 3Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM5.2 4l.35 2H21l-2 8H8.1l.25 1.3c.09.42.45.7.88.7H19v2H9.23a2.9 2.9 0 0 1-2.84-2.34L4.04 3H1V1h4.7l.5 3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cart-button:hover {
  border-color: rgba(244, 239, 230, 0.34);
  background: rgba(244, 239, 230, 0.09);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid rgba(8, 10, 9, 0.95);
  border-radius: 50%;
  color: var(--ink);
  background: var(--ivory);
  font-size: 12px;
  font-weight: 900;
  transition: transform 320ms var(--ease), background 320ms ease;
}

.cart-count.bump {
  animation: cartBump 520ms var(--ease);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: min(820px, calc(100svh - 150px));
  margin: 0 auto;
  padding: 44px 0 52px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 42%, rgba(244, 239, 230, 0.08), transparent 24rem),
    linear-gradient(135deg, #070908, #101714 48%, #050606);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.38);
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 38% 42%, rgba(244, 239, 230, 0.07), transparent 22rem),
    radial-gradient(circle at 78% 22%, rgba(7, 63, 57, 0.2), transparent 28rem);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.9), rgba(8, 10, 9, 0.68) 48%, rgba(8, 10, 9, 0.24)),
    linear-gradient(0deg, rgba(8, 10, 9, 0.84), rgba(8, 10, 9, 0.1) 58%),
    linear-gradient(180deg, rgba(8, 10, 9, 0.38), transparent 32%);
}

.hero-media img,
.hero-media video {
  position: absolute;
  right: -7%;
  bottom: -8%;
  width: 92%;
  height: 104%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.95) contrast(1.06) brightness(0.9);
  mask-image: radial-gradient(ellipse at 55% 52%, #000 0%, #000 34%, rgba(0, 0, 0, 0.76) 44%, rgba(0, 0, 0, 0.28) 57%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 55% 52%, #000 0%, #000 34%, rgba(0, 0, 0, 0.76) 44%, rgba(0, 0, 0, 0.28) 57%, transparent 72%);
  transform: scale(1);
}

.hero-media img {
  animation: heroFloat 16s var(--ease) infinite alternate;
}

.hero-media video {
  display: block;
  opacity: 0.9;
  filter: saturate(1.08) contrast(1.08) brightness(1.08);
  mix-blend-mode: screen;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  min-width: 0;
  max-width: 720px;
  padding: 0 0 0 42px;
  animation: fadeLift 800ms 120ms var(--ease) both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--stone);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display-font);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 1.02;
}

.hero-title span {
  display: inline;
}

.hero > .hero-points {
  position: relative;
  z-index: 1;
  margin-left: 42px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(244, 239, 230, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 620px;
  margin-top: 18px;
  color: rgba(244, 239, 230, 0.72);
  font-size: 14px;
}

.hero-points span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.hero-points span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  content: "";
  background: var(--stone);
}

.hero-actions,
.product-bottom,
.section-heading,
.site-footer {
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero-actions,
.product-bottom,
.section-heading,
.site-footer,
.filters,
.cart-item-top {
  min-width: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: normal;
  transition: transform 260ms var(--ease), box-shadow 260ms ease, background 260ms ease, border-color 260ms ease;
}

.button::after,
.product-bottom button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 650ms var(--ease);
}

.button:hover,
.product-bottom button:hover,
.filters button:hover {
  transform: translateY(-2px);
}

.button:hover::after,
.product-bottom button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  border: 1px solid var(--ivory);
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 12px 34px rgba(244, 239, 230, 0.14);
}

.button.primary:hover {
  box-shadow: 0 18px 42px rgba(244, 239, 230, 0.22);
}

.button.is-loading {
  gap: 10px;
  cursor: progress;
  opacity: 0.94;
}

.button.is-loading::after {
  display: none;
}

.button-loader {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  animation: buttonLoaderSpin 920ms linear infinite;
}

.button-loader span,
.button-loader i {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
}

.button-loader span {
  width: 6px;
  height: 11px;
  border-radius: 999px 999px 4px 4px;
  background: currentColor;
  opacity: 0.82;
  transform-origin: 50% 10px;
}

.button-loader span:nth-child(1) {
  transform: translate(-50%, -100%) rotate(0deg);
}

.button-loader span:nth-child(2) {
  transform: translate(-50%, -100%) rotate(90deg);
}

.button-loader span:nth-child(3) {
  transform: translate(-50%, -100%) rotate(180deg);
}

.button-loader span:nth-child(4) {
  transform: translate(-50%, -100%) rotate(270deg);
}

.button-loader i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.button.ghost {
  border: 1px solid rgba(244, 239, 230, 0.32);
  color: var(--ivory);
  background: rgba(8, 10, 9, 0.34);
}

.button.ghost:hover {
  border-color: rgba(244, 239, 230, 0.5);
  background: rgba(244, 239, 230, 0.08);
}

.hero-panel {
  display: grid;
  gap: 10px;
  margin-right: 26px;
  margin-bottom: 34px;
}

.hero-panel div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 10, 9, 0.56);
  backdrop-filter: blur(12px);
  transition: transform 360ms var(--ease), background 360ms ease, border-color 360ms ease;
}

.hero-panel div:hover {
  border-color: rgba(244, 239, 230, 0.32);
  background: rgba(8, 10, 9, 0.68);
  transform: translateX(-6px);
}

.hero-panel span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display-font);
  font-size: 32px;
}

.hero-panel p {
  margin: 0;
  color: rgba(244, 239, 230, 0.64);
}

.section,
.custom-order {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.catalog-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 42px;
}

.catalog-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
}

.catalog-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(244, 239, 230, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: end;
}

.intro > p,
.custom-copy p,
.service p {
  color: rgba(244, 239, 230, 0.68);
  line-height: 1.65;
}

.section-heading {
  justify-content: space-between;
  margin-bottom: 30px;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filters button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(244, 239, 230, 0.72);
  cursor: pointer;
  transition: transform 240ms var(--ease), color 240ms ease, background 240ms ease, border-color 240ms ease;
}

.filters .active {
  color: var(--ink);
  background: var(--stone);
}

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

.product-carousel {
  position: relative;
  overflow: hidden;
  padding: 2px 0 22px;
  cursor: grab;
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.product-carousel:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  user-select: none;
  will-change: transform;
}

.product-carousel .product-card {
  width: min(270px, 72vw);
  flex: 0 0 min(270px, 72vw);
}

.carousel-arrow {
  position: absolute;
  top: 42%;
  z-index: 4;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(244, 239, 230, 0.24);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(8, 10, 9, 0.76);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 240ms var(--ease), background 240ms ease, border-color 240ms ease;
  backdrop-filter: blur(14px);
}

.carousel-arrow:hover {
  border-color: rgba(244, 239, 230, 0.48);
  background: rgba(244, 239, 230, 0.14);
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow-left {
  left: 6px;
}

.carousel-arrow-right {
  right: 6px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
  transform: translateZ(0);
  transition: transform 420ms var(--ease), border-color 420ms ease, box-shadow 420ms ease, background 420ms ease;
}

.product-card:hover {
  border-color: rgba(244, 239, 230, 0.34);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-8px);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  background: var(--forest-2);
  transition: transform 700ms var(--ease), filter 700ms ease;
}

.product-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.product-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 5;
  overflow: hidden;
  background: var(--forest-2);
}

.product-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms ease, transform 700ms var(--ease), filter 700ms ease;
}

.product-gallery img.active {
  opacity: 1;
}

.product-card:hover .product-gallery img {
  filter: none;
  transform: none;
}

.product-card:hover .product-gallery img.active {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 239, 230, 0.28);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(8, 10, 9, 0.62);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
  backdrop-filter: blur(10px);
}

.product-gallery-arrow:hover {
  border-color: rgba(244, 239, 230, 0.52);
  background: rgba(8, 10, 9, 0.82);
  transform: translateY(-50%) scale(1.05);
}

.product-gallery-prev {
  left: 6px;
}

.product-gallery-next {
  right: 6px;
}

.product-gallery-dots {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.product-gallery-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(244, 239, 230, 0.46);
  cursor: pointer;
  padding: 0;
}

.product-gallery-dots button.active {
  background: var(--ivory);
}

.product-card-unavailable {
  opacity: 0.68;
}

.product-card-unavailable:hover {
  transform: none;
}

.product-card.is-hidden {
  display: none;
}

.product-info {
  padding: 18px;
}

.product-info p {
  margin-bottom: 8px;
  color: var(--stone);
  font-size: 13px;
}

.product-warning {
  color: #ffd9df !important;
  line-height: 1.45;
}

.product-info h3 {
  margin-bottom: 18px;
  font-family: var(--display-font);
  font-size: 25px;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.product-bottom {
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-bottom span {
  font-size: 18px;
  font-weight: 900;
}

.product-bottom button {
  position: relative;
  overflow: hidden;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 260ms var(--ease), color 260ms ease, background 260ms ease, border-color 260ms ease;
  white-space: nowrap;
}

.product-bottom button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.product-bottom button.added {
  border-color: rgba(244, 239, 230, 0.85);
  color: var(--ink);
  background: var(--ivory);
  animation: addedPulse 760ms var(--ease);
}

.product-bottom button.has-items {
  border-color: rgba(244, 239, 230, 0.72);
  color: var(--ink);
  background: var(--ivory);
}

.product-bottom button.has-items::before {
  content: "+ ";
  font-weight: 900;
}

.product-bottom button .qty {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  margin-left: 8px;
  place-items: center;
  border-radius: 999px;
  color: var(--ivory);
  background: var(--forest);
  font-size: 12px;
}

.fly-item {
  position: fixed;
  z-index: 80;
  width: 72px;
  height: 90px;
  border: 1px solid rgba(244, 239, 230, 0.34);
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  transition: transform 720ms var(--ease), opacity 720ms ease, border-radius 720ms ease;
}

.custom-order {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  border-block: 1px solid var(--line);
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(244, 239, 230, 0.055);
  transition: border-color 360ms ease, box-shadow 360ms ease;
}

.order-form:focus-within {
  border-color: rgba(244, 239, 230, 0.32);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--stone);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.order-form .wide {
  grid-column: 1 / -1;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 239, 230, 0.2);
  border-radius: 4px;
  color: var(--ivory);
  background: rgba(8, 10, 9, 0.54);
  outline: none;
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: rgba(244, 239, 230, 0.46);
  background: rgba(8, 10, 9, 0.72);
  box-shadow: 0 0 0 4px rgba(244, 239, 230, 0.06);
}

.order-form input {
  height: 48px;
  padding: 0 14px;
}

.order-form textarea {
  resize: vertical;
  padding: 14px;
}

.custom-select {
  position: relative;
  min-width: 0;
}

.custom-select-button {
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(244, 239, 230, 0.2);
  border-radius: 4px;
  color: var(--ivory);
  background: rgba(8, 10, 9, 0.54);
  cursor: pointer;
  padding: 0 12px 0 14px;
  text-align: left;
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.custom-select-button span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select.open .custom-select-button,
.custom-select-button:focus-visible {
  border-color: rgba(244, 239, 230, 0.46);
  background: rgba(8, 10, 9, 0.72);
  box-shadow: 0 0 0 4px rgba(244, 239, 230, 0.06);
  outline: none;
}

.custom-select.is-disabled .custom-select-button {
  cursor: not-allowed;
  opacity: 0.72;
}

.custom-select.is-disabled .select-chevron {
  opacity: 0.38;
}

.select-chevron {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--stone);
  background: rgba(244, 239, 230, 0.07);
  transform: translateY(-1px);
  transition: transform 260ms var(--ease), background 260ms ease;
}

.select-chevron::before,
.select-chevron::after {
  position: absolute;
  content: "";
  transition: opacity 180ms ease, transform 260ms var(--ease);
}

.select-chevron::before {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.select-chevron::after {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  opacity: 0;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round'%3E%3Cellipse cx='20' cy='7.5' rx='3.5' ry='6'/%3E%3Cellipse cx='20' cy='32.5' rx='3.5' ry='6'/%3E%3Cellipse cx='7.5' cy='20' rx='6' ry='3.5'/%3E%3Cellipse cx='32.5' cy='20' rx='6' ry='3.5'/%3E%3Cellipse cx='11.2' cy='11.2' rx='3.5' ry='6' transform='rotate(-45 11.2 11.2)'/%3E%3Cellipse cx='28.8' cy='11.2' rx='3.5' ry='6' transform='rotate(45 28.8 11.2)'/%3E%3Cellipse cx='28.8' cy='28.8' rx='3.5' ry='6' transform='rotate(-45 28.8 28.8)'/%3E%3Cellipse cx='11.2' cy='28.8' rx='3.5' ry='6' transform='rotate(45 11.2 28.8)'/%3E%3Ccircle cx='20' cy='20' r='2.4'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round'%3E%3Cellipse cx='20' cy='7.5' rx='3.5' ry='6'/%3E%3Cellipse cx='20' cy='32.5' rx='3.5' ry='6'/%3E%3Cellipse cx='7.5' cy='20' rx='6' ry='3.5'/%3E%3Cellipse cx='32.5' cy='20' rx='6' ry='3.5'/%3E%3Cellipse cx='11.2' cy='11.2' rx='3.5' ry='6' transform='rotate(-45 11.2 11.2)'/%3E%3Cellipse cx='28.8' cy='11.2' rx='3.5' ry='6' transform='rotate(45 28.8 11.2)'/%3E%3Cellipse cx='28.8' cy='28.8' rx='3.5' ry='6' transform='rotate(-45 28.8 28.8)'/%3E%3Cellipse cx='11.2' cy='28.8' rx='3.5' ry='6' transform='rotate(45 11.2 28.8)'/%3E%3Ccircle cx='20' cy='20' r='2.4'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  transform: scale(0.7) rotate(0deg);
}

.custom-select.open .select-chevron {
  background: rgba(244, 239, 230, 0.14);
  transform: translateY(0);
  animation: selectPetalsSpin 420ms var(--ease);
}

.custom-select.open .select-chevron::before {
  opacity: 0;
  transform: translateY(2px) rotate(45deg) scale(0.55);
}

.custom-select.open .select-chevron::after {
  opacity: 1;
  transform: scale(1) rotate(180deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 12;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(244, 239, 230, 0.18);
  border-radius: 8px;
  background: rgba(8, 10, 9, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top;
  transition: opacity 220ms ease, transform 220ms var(--ease);
  backdrop-filter: blur(16px);
}

.custom-select.open .custom-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.custom-select-menu button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  color: rgba(244, 239, 230, 0.78);
  background: transparent;
  cursor: pointer;
  padding: 0 10px;
  text-align: left;
  transition: color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}

.custom-select-menu button:hover,
.custom-select-menu button:focus-visible {
  color: var(--ivory);
  background: rgba(244, 239, 230, 0.09);
  outline: none;
  transform: translateX(2px);
}

.custom-select-menu .selected {
  color: var(--ink);
  background: var(--stone);
}

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

.service article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(244, 239, 230, 0.08), rgba(244, 239, 230, 0.025));
  transition: transform 380ms var(--ease), border-color 380ms ease, background 380ms ease;
}

.service article:hover {
  border-color: rgba(244, 239, 230, 0.3);
  background: linear-gradient(145deg, rgba(244, 239, 230, 0.115), rgba(244, 239, 230, 0.04));
  transform: translateY(-6px);
}

.service span {
  display: block;
  margin-bottom: 70px;
  color: var(--stone);
  font-weight: 900;
}

.service h3 {
  font-family: var(--display-font);
  font-size: 28px;
  font-weight: 400;
}

.site-footer {
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 46px;
  color: rgba(244, 239, 230, 0.74);
}

.site-footer div {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ivory);
  font-weight: 800;
}

.site-footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer address {
  font-style: normal;
  line-height: 1.6;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 360ms ease, visibility 0s linear 360ms;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.cart-card {
  position: relative;
  width: min(440px, 100%);
  max-height: 100svh;
  overflow-y: auto;
  padding: 34px;
  color: var(--ivory);
  background: var(--ink);
  border-left: 1px solid var(--line);
  opacity: 0.92;
  transform: translateX(28px);
  transition: transform 460ms var(--ease), opacity 360ms ease;
}

.cart-drawer.open .cart-card {
  opacity: 1;
  transform: translateX(0);
}

.cart-card h2 {
  margin-bottom: 18px;
}

.cart-empty {
  margin-bottom: 22px;
  color: rgba(244, 239, 230, 0.66);
  line-height: 1.55;
}

.cart-list {
  display: grid;
  gap: 14px;
  max-height: min(52svh, 520px);
  overflow-y: auto;
  padding-right: 4px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(244, 239, 230, 0.055);
}

.cart-item img {
  width: 72px;
  height: 88px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--forest-2);
}

.cart-item-info {
  min-width: 0;
}

.cart-item-top {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: start;
}

.cart-item h3 {
  margin: 0 0 6px;
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.cart-item-price {
  margin: 0 0 14px;
  color: var(--stone);
  font-weight: 800;
}

.cart-remove,
.qty-button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 239, 230, 0.22);
  color: var(--ivory);
  background: rgba(8, 10, 9, 0.4);
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease;
}

.cart-remove {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.cart-remove:hover,
.qty-button:hover {
  border-color: rgba(244, 239, 230, 0.48);
  background: rgba(244, 239, 230, 0.1);
  transform: translateY(-1px);
}

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

.qty-button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
}

.cart-qty {
  min-width: 22px;
  text-align: center;
  font-weight: 900;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(244, 239, 230, 0.76);
}

.cart-summary strong {
  color: var(--ivory);
  font-size: 24px;
}

.cart-order-form {
  display: grid;
  gap: 10px;
  align-content: start;
}

.order-form > .button.primary,
.cart-order-form > .button.primary {
  min-height: 48px;
  height: 48px;
  align-self: start;
}

.cart-order-form label {
  display: grid;
  gap: 6px;
  color: var(--stone);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-order-form label span {
  padding-left: 2px;
}

.cart-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cart-order-form.is-pickup .cart-form-row {
  grid-template-columns: 1fr;
}

.cart-order-form input,
.cart-order-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 239, 230, 0.2);
  border-radius: 6px;
  color: var(--ivory);
  background: rgba(244, 239, 230, 0.06);
  outline: none;
}

.cart-order-form input {
  height: 44px;
  padding: 0 12px;
}

.cart-order-form textarea {
  resize: vertical;
  padding: 12px;
}

.cart-order-form input:focus,
.cart-order-form textarea:focus {
  border-color: rgba(244, 239, 230, 0.46);
  background: rgba(244, 239, 230, 0.1);
}

.order-form select,
.cart-order-form select {
  width: 100%;
  border: 1px solid rgba(244, 239, 230, 0.2);
  border-radius: 4px;
  color: var(--ivory);
  background: rgba(8, 10, 9, 0.54);
  outline: none;
}

.order-form select {
  height: 48px;
  padding: 0 14px;
}

.cart-order-form select {
  height: 44px;
  padding: 0 12px;
}

.fulfillment-toggle {
  display: grid;
  gap: 0;
  min-width: 0;
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
}

.fulfillment-toggle legend {
  display: block;
  margin: 0 0 8px;
  padding: 0;
  color: var(--stone);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.fulfillment-switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 42px;
  min-height: 42px;
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.06);
  padding: 3px;
  overflow: hidden;
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.fulfillment-toggle:has(input[value="pickup"]:checked) .fulfillment-switch {
  border-color: rgba(234, 216, 146, 0.28);
  background: rgba(234, 216, 146, 0.08);
  box-shadow: inset 0 0 0 1px rgba(234, 216, 146, 0.04);
}

.fulfillment-switch::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  content: "";
  background: #ead892;
  box-shadow: 0 8px 24px rgba(234, 216, 146, 0.18);
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 260ms ease;
}

.fulfillment-toggle:has(input[value="pickup"]:checked) .fulfillment-switch::before {
  transform: translateX(100%);
}

.fulfillment-switch label {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 0;
  height: 34px;
  min-height: 34px;
  color: rgba(244, 239, 230, 0.72);
  cursor: pointer;
  padding: 0 8px;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
  transition: color 260ms ease;
}

.fulfillment-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fulfillment-switch label:has(input:checked) {
  color: var(--ink);
}

.cart-fulfillment-toggle {
  width: 100%;
}

.cart-fulfillment-toggle legend {
  padding-left: 2px;
  font-size: 12px;
  font-weight: 800;
}

.pickup-info {
  display: grid;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
}

.pickup-info span {
  color: var(--stone);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pickup-info strong {
  color: var(--ivory);
  line-height: 1.35;
}

.pickup-info .button {
  width: max-content;
  min-height: 34px;
  border-color: #ead892;
  color: var(--ink);
  background: #ead892;
  padding: 0 13px;
  font-size: 13px;
}

.cart-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  transition: transform 240ms var(--ease), background 240ms ease;
}

.cart-close:hover {
  background: rgba(244, 239, 230, 0.08);
  transform: rotate(90deg);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  max-width: min(360px, calc(100% - 32px));
  padding: 16px 18px;
  border: 1px solid rgba(244, 239, 230, 0.22);
  border-radius: 8px;
  color: var(--ivory);
  background: rgba(8, 10, 9, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transition: opacity 320ms ease, transform 320ms var(--ease);
  backdrop-filter: blur(18px);
}

.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-18px, -10px, 0);
  }
}

@keyframes cartBump {
  0%,
  100% {
    transform: scale(1);
  }
  38% {
    transform: scale(1.28);
  }
}

@keyframes addedPulse {
  0% {
    transform: scale(1);
  }
  36% {
    transform: scale(0.96);
  }
  72% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes buttonLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes selectPetalsSpin {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(0) rotate(180deg);
  }
}


@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: start;
    border-radius: 28px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 0 28px;
  }

  .hero-content {
    padding: 0 22px;
  }

  .hero > .hero-points {
    margin-right: 22px;
    margin-left: 22px;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 22px 22px;
  }

  .intro,
  .custom-order,
  .service {
    grid-template-columns: 1fr;
  }

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

  .product-carousel {
    overflow: hidden;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: sticky;
    top: 8px;
    grid-template-columns: 1fr auto;
    width: calc(100% - 20px);
    gap: 9px;
    align-items: stretch;
    margin-top: 8px;
    margin-bottom: 18px;
    padding: 10px;
    border-color: rgba(244, 239, 230, 0.1);
    border-radius: 12px;
    background: rgba(8, 10, 9, 0.62);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
  }

  .brand {
    justify-self: start;
  }

  .menu-toggle {
    justify-self: end;
    width: 40px;
    height: 40px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    display: none;
  }

  .cart-button {
    position: fixed;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 45;
    width: 58px;
    height: 58px;
    min-height: 0;
    gap: 0;
    padding: 0;
    border-color: rgba(244, 239, 230, 0.22);
    border-radius: 50%;
    background: rgba(8, 10, 9, 0.86);
    box-shadow: none;
    font-size: 0;
    backdrop-filter: blur(16px);
  }

  .cart-button::before {
    width: 24px;
    height: 24px;
    content: "";
    background: var(--ivory);
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM5.2 4l.35 2H21l-2 8H8.1l.25 1.3c.09.42.45.7.88.7H19v2H9.23a2.9 2.9 0 0 1-2.84-2.34L4.04 3H1V1h4.7l.5 3Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM5.2 4l.35 2H21l-2 8H8.1l.25 1.3c.09.42.45.7.88.7H19v2H9.23a2.9 2.9 0 0 1-2.84-2.34L4.04 3H1V1h4.7l.5 3Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

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

  .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(8, 10, 9, 0.95);
    font-size: 12px;
    font-weight: 900;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 7px;
    padding: 4px 0 1px;
    overflow: visible;
  }

  .main-nav a {
    min-height: 34px;
    padding: 8px 11px;
    border-color: rgba(244, 239, 230, 0.12);
    color: rgba(244, 239, 230, 0.82);
    background: rgba(244, 239, 230, 0.045);
    font-size: 13px;
    line-height: 1;
  }

  .hero,
  .section,
  .custom-order,
  .catalog-hero,
  .site-footer {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    align-items: stretch;
    min-height: min(620px, calc(100svh - 92px));
    padding: 28px 0 22px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(8, 10, 9, 0.94), rgba(8, 10, 9, 0.78) 52%, rgba(8, 10, 9, 0.22)),
      linear-gradient(0deg, rgba(8, 10, 9, 0.78), rgba(8, 10, 9, 0.08) 58%),
      linear-gradient(180deg, rgba(8, 10, 9, 0.36), transparent 32%);
  }

  .hero-media {
    border-radius: 20px;
  }

  .hero-media img,
  .hero-media video {
    inset: -7% -9% -8% auto;
    width: 118%;
    height: 115%;
    object-fit: cover;
    object-position: center 44%;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-content {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    padding: 0 24px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.52);
    box-sizing: border-box;
  }

  .hero-content .eyebrow {
    align-self: start;
  }

  .hero-content h1 {
    display: flex;
    align-items: center;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 100%;
    margin: 0;
    box-sizing: border-box;
    font-size: clamp(40px, 11vw, 72px);
    line-height: 1.08;
    letter-spacing: normal;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }


  h1 {
    font-size: clamp(46px, 14.8vw, 66px);
    line-height: 1.16;
  }

  h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-points {
    align-self: end;
    gap: 8px;
    margin-top: 0;
    font-size: 13px;
  }

  .hero-actions,
  .section-heading,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 16px;
  }

  .pickup-info .button {
    width: max-content;
    min-height: 34px;
    padding-inline: 13px;
  }

  .fulfillment-switch {
    height: 42px;
    min-height: 42px;
  }

  .fulfillment-switch label {
    height: 34px;
    min-height: 34px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 18px 12px 0;
  }

  .hero-panel div {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .hero-panel span {
    font-size: 26px;
  }

  .section,
  .custom-order {
    padding: 54px 0;
  }

  .catalog-hero {
    padding: 46px 0 22px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 22px;
  }

  .filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .product-grid,
  .order-form {
    grid-template-columns: 1fr;
  }

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

  .product-info {
    padding: 16px;
  }

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

  .product-bottom button {
    min-width: 112px;
  }

  .product-carousel {
    margin-inline: -10px;
    padding-inline: 10px;
    mask-image: none;
  }

  .product-carousel .product-card {
    width: min(230px, 62vw);
    flex-basis: min(230px, 62vw);
  }

  .carousel-arrow {
    display: none;
  }

  .order-form {
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
  }

  .custom-select.open {
    z-index: 30;
  }

  .custom-select-menu {
    position: fixed;
    inset: auto 10px 10px;
    max-height: min(56svh, 360px);
    overflow-y: auto;
    padding: 10px;
    border-radius: 14px;
    transform: translateY(12px) scale(0.98);
    transform-origin: bottom;
  }

  .custom-select.open .custom-select-menu {
    transform: translateY(0) scale(1);
  }

  .service article {
    min-height: 0;
    padding: 20px;
    border-radius: 14px;
  }

  .service span {
    margin-bottom: 34px;
  }

  .cart-drawer {
    align-items: flex-end;
  }

  .cart-card {
    width: 100%;
    max-height: 92svh;
    padding: 24px 16px 18px;
    border-top: 1px solid var(--line);
    border-left: 0;
    border-radius: 18px 18px 0 0;
    transform: translateY(24px);
  }

  .cart-drawer.open .cart-card {
    transform: translateY(0);
  }

  .cart-list {
    max-height: 48svh;
  }

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

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

  .cart-item img {
    width: 62px;
    height: 78px;
  }

  .toast {
    right: 6px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }
}

@media (max-width: 620px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header,
  .hero,
  .section,
  .custom-order,
  .catalog-hero,
  .site-footer {
    width: min(100% - 20px, 1180px);
    max-width: min(100% - 20px, 1180px);
    margin-right: auto;
    margin-left: auto;
  }

  .hero {
    position: relative;
    display: block;
    min-height: calc(100svh - 115px);
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    text-align: center;
  }

  .hero-media img,
  .hero-media video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
  }

  .hero-content {
    position: absolute;
    top: calc(43% - clamp(16px, 5.5vw, 24px));
    left: 50%;
    z-index: 1;
    width: calc(100% - 40px);
    max-width: 390px;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 0;
    text-align: center;
    transform: translate(-50%, -50%);
    animation: none;
    box-sizing: border-box;
  }

  .hero-content .hero-eyebrow {
    align-self: auto;
    margin: 0 0 22px;
    text-align: center;
    font-size: clamp(12px, 3.4vw, 15px);
    line-height: 1.3;
    letter-spacing: 0.11em;
  }

  .hero-content .hero-title {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    font-size: clamp(31px, 8.8vw, 39px);
    line-height: 1.22;
    letter-spacing: -0.015em;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
    box-sizing: border-box;
  }

  .hero-title span {
    display: block;
    width: 100%;
  }

  .hero > .hero-points {
    position: absolute;
    right: 6px;
    bottom: 46px;
    left: 6px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 6px;
    max-width: none;
    margin: 0;
    color: rgba(244, 239, 230, 0.8);
    font-size: clamp(12.5px, 3.5vw, 13.5px);
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .order-form,
  .order-form label,
  .custom-select,
  .custom-select-button,
  .fulfillment-toggle,
  .cart-order-form,
  .cart-order-form label,
  .cart-form-row {
    min-width: 0;
    max-width: 100%;
  }

  .order-form input,
  .order-form select,
  .order-form textarea,
  .cart-order-form input,
  .cart-order-form select,
  .cart-order-form textarea {
    min-width: 0;
    max-width: 100%;
  }

  .order-form input[type="date"],
  .order-form input[type="time"],
  .cart-order-form input[type="date"],
  .cart-order-form input[type="time"] {
    display: block;
    width: 100%;
    min-width: 0;
    -webkit-appearance: none;
    appearance: none;
  }

  .cart-button {
    right: max(12px, env(safe-area-inset-right));
  }
}


@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    padding: 8px;
  }

  .brand {
    justify-self: start;
    flex: 0 0 auto;
  }

  .main-nav {
    grid-column: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 5px;
    min-width: 0;
    padding: 0;
  }

  .main-nav a {
    flex: 0 1 auto;
    min-width: 0;
    min-height: 32px;
    padding: 7px 8px;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .custom-select.open {
    z-index: 40;
  }

  .custom-select-menu {
    position: absolute;
    inset: auto 0 auto 0;
    top: calc(100% + 8px);
    max-height: 220px;
    overflow-y: auto;
    border-radius: 8px;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top;
  }

  .custom-select.open .custom-select-menu {
    transform: translateY(0) scale(1);
  }

  .order-form input[type="date"],
  .order-form input[type="time"],
  .cart-order-form input[type="date"],
  .cart-order-form input[type="time"] {
    color: var(--ivory);
    background:
      linear-gradient(180deg, rgba(244, 239, 230, 0.045), rgba(244, 239, 230, 0.025)),
      rgba(8, 10, 9, 0.72);
  }

  .order-form input[type="date"]::-webkit-calendar-picker-indicator,
  .order-form input[type="time"]::-webkit-calendar-picker-indicator,
  .cart-order-form input[type="date"]::-webkit-calendar-picker-indicator,
  .cart-order-form input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 1;
    cursor: pointer;
    filter: invert(89%) sepia(15%) saturate(323%) hue-rotate(350deg) brightness(104%) contrast(91%);
  }

  .order-form input[type="date"]::-webkit-datetime-edit,
  .order-form input[type="time"]::-webkit-datetime-edit,
  .cart-order-form input[type="date"]::-webkit-datetime-edit,
  .cart-order-form input[type="time"]::-webkit-datetime-edit {
    color: var(--ivory);
  }

  .order-form input[type="date"]::-webkit-datetime-edit-fields-wrapper,
  .order-form input[type="time"]::-webkit-datetime-edit-fields-wrapper,
  .cart-order-form input[type="date"]::-webkit-datetime-edit-fields-wrapper,
  .cart-order-form input[type="time"]::-webkit-datetime-edit-fields-wrapper {
    color: var(--ivory);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

.header-search-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(244, 239, 230, 0.055);
  cursor: pointer;
}

.header-search-toggle::before {
  width: 20px;
  height: 20px;
  content: "";
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M10.5 4a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM2 10.5a8.5 8.5 0 1 1 15.1 5.36l4.02 4.02-1.42 1.42-4.02-4.02A8.5 8.5 0 0 1 2 10.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M10.5 4a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM2 10.5a8.5 8.5 0 1 1 15.1 5.36l4.02 4.02-1.42 1.42-4.02-4.02A8.5 8.5 0 0 1 2 10.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-search {
  grid-column: 1 / -1;
  display: none;
  gap: 8px;
  align-items: center;
  padding-top: 8px;
}

.site-search label {
  flex: 1 1 260px;
  min-width: 0;
}

.site-search label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-search input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(244, 239, 230, 0.2);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(8, 10, 9, 0.64);
  padding: 0 16px;
  outline: none;
}

.site-search button {
  height: 44px;
  border: 1px solid var(--ivory);
  border-radius: 999px;
  color: var(--ink);
  background: var(--ivory);
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 16px;
}

.category-tile {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 10, 9, 0.4);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 620ms var(--ease), filter 620ms ease;
}

.category-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 10, 9, 0.08), rgba(8, 10, 9, 0.78));
}

.category-tile span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  font-family: var(--display-font);
  font-size: 30px;
  line-height: 1.08;
}

.category-tile:hover img {
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.06);
}


@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand span {
    display: inline;
    font-size: 12px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-search-toggle,
  .menu-toggle,
  .cart-button {
    width: 40px;
    height: 40px;
  }

  .site-search {
    flex-wrap: wrap;
  }

  .site-search button {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .category-tile {
    min-height: 172px;
  }

  .category-tile span {
    font-size: 26px;
  }
}
/* Final header overrides for the new compact menu. */
.main-nav {
  display: none;
}

.site-header.nav-open .main-nav {
  display: flex;
}

.menu-toggle {
  display: grid;
}

.cart-button {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
}


@media (max-width: 900px) {
  .main-nav {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .menu-toggle {
    display: grid;
  }
}

@media (max-width: 620px) {
  .cart-button {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    box-shadow: none;
  }
}
.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.main-nav {
  grid-column: 1 / -1;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
  min-width: 0;
  padding-top: 8px;
}

.site-header.search-open .site-search {
  display: flex;
}

@media (max-width: 620px) {
  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }
}
body {
  background:
    linear-gradient(135deg, rgba(9, 11, 10, 0.86), rgba(17, 27, 24, 0.82)),
    linear-gradient(135deg, #090b0a 0%, #111b18 52%, #070807 100%);
}
/* Refined premium turquoise shell and left drawer navigation. */
body {
  background:
    radial-gradient(ellipse at 12% -10%, rgba(80, 214, 199, 0.24), transparent 34rem),
    radial-gradient(ellipse at 86% 8%, rgba(23, 129, 123, 0.30), transparent 38rem),
    radial-gradient(ellipse at 48% 112%, rgba(165, 219, 197, 0.10), transparent 36rem),
    linear-gradient(135deg, #031c1b 0%, #062b29 38%, #041211 100%);
}

body::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 28%, rgba(145, 220, 206, 0.04) 62%, transparent),
    repeating-linear-gradient(90deg, rgba(244, 239, 230, 0.025) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(244, 239, 230, 0.018) 0 1px, transparent 1px 92px);
  opacity: 0.78;
}

body.menu-is-open {
  overflow: hidden;
}

.site-header {
  grid-template-columns: 56px minmax(0, 1fr) 112px;
  align-items: center;
  gap: 12px;
  border-color: rgba(172, 231, 218, 0.18);
  background: rgba(4, 24, 23, 0.68);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.brand {
  justify-self: center;
  text-align: center;
  font-size: 16px;
}

.brand span {
  display: inline;
  white-space: nowrap;
}

.menu-toggle {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.site-header .brand {
  grid-column: 2;
  grid-row: 1;
}

.main-nav {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 70;
  display: flex;
  width: min(100vw, 520px);
  height: 100svh;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
  padding: clamp(86px, 12svh, 132px) clamp(24px, 6vw, 54px) 44px;
  border-right: 1px solid rgba(172, 231, 218, 0.18);
  background:
    radial-gradient(circle at 12% 12%, rgba(95, 219, 205, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(3, 29, 28, 0.98), rgba(5, 53, 49, 0.96));
  box-shadow: 28px 0 90px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-105%);
  transition: transform 420ms var(--ease), opacity 260ms ease;
  backdrop-filter: blur(22px);
}

.site-header.nav-open .main-nav {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.main-nav::before {
  display: block;
  margin-bottom: 18px;
  color: rgba(244, 239, 230, 0.52);
  content: "Меню";
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav a {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(172, 231, 218, 0.13);
  border-radius: 0;
  background: transparent;
  padding: 16px 0;
  color: rgba(244, 239, 230, 0.88);
  font-family: var(--display-font);
  font-size: clamp(30px, 5.4vw, 52px);
  line-height: 1.05;
  text-align: left;
}

.main-nav a:hover {
  border-color: rgba(172, 231, 218, 0.34);
  background: transparent;
  color: var(--ivory);
  transform: translateX(8px);
}

.site-header.search-open .site-search {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  display: flex;
  width: min(520px, calc(100vw - 24px));
  padding: 10px;
  border: 1px solid rgba(172, 231, 218, 0.18);
  border-radius: 12px;
  background: rgba(4, 24, 23, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.text-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: start;
  padding-top: 46px;
  padding-bottom: 46px;
  border-top: 1px solid rgba(172, 231, 218, 0.14);
}

.text-band p:not(.eyebrow) {
  margin: 0;
  color: rgba(244, 239, 230, 0.72);
  font-size: 18px;
  line-height: 1.68;
}


@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 46px minmax(0, 1fr) 96px;
    align-items: center;
  }

  .main-nav {
    grid-column: auto;
    display: flex;
    width: min(100vw, 480px);
  }

  .site-header:not(.nav-open) .main-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-105%);
  }

  .text-band {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: 42px minmax(0, 1fr) 88px;
    width: calc(100% - 20px);
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    display: inline;
    max-width: 132px;
    white-space: normal;
    font-size: 12px;
    line-height: 1.05;
  }

  .main-nav {
    width: 100vw;
    padding: 86px 24px 34px;
  }

  .main-nav a {
    font-size: clamp(29px, 10vw, 40px);
    padding: 14px 0;
  }

  .site-header.search-open .site-search {
    right: 50%;
    width: calc(100vw - 20px);
    transform: translateX(50%);
  }

  .text-band {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .text-band p:not(.eyebrow) {
    font-size: 16px;
  }
}
.site-header .brand {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  z-index: 0;
}

.menu-toggle,
.header-actions {
  position: relative;
  z-index: 2;
}
/* Final off-canvas fix: stable header, original background, adaptive drawer. */
body {
  background:
    radial-gradient(circle at 14% 4%, rgba(107, 38, 55, 0.22), transparent 30rem),
    radial-gradient(circle at 84% 18%, rgba(7, 63, 57, 0.42), transparent 34rem),
    linear-gradient(135deg, #090b0a 0%, #111b18 52%, #070807 100%);
}

body::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 239, 230, 0.09), transparent 30rem),
    linear-gradient(180deg, rgba(244, 239, 230, 0.025), transparent 45%);
  opacity: 1;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 62;
  pointer-events: none;
  content: "";
  background: rgba(4, 8, 7, 0.58);
  opacity: 0;
  transition: opacity 280ms ease;
  backdrop-filter: blur(2px);
}

body.menu-is-open {
  overflow: hidden;
}

body.menu-is-open::after {
  pointer-events: auto;
  opacity: 1;
}

.site-header {
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 68px;
  margin-top: 14px;
  margin-bottom: 34px;
  border-radius: 999px;
  animation: none;
  transform: none;
}

.site-header .brand {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  max-width: min(44vw, 360px);
  z-index: 1;
}

.brand span {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-toggle {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  z-index: 4;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  z-index: 4;
}

.main-nav {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  display: flex;
  width: min(430px, 88vw);
  height: 100dvh;
  max-height: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: max(74px, calc(52px + env(safe-area-inset-top))) 28px max(28px, env(safe-area-inset-bottom));
  border: 0;
  border-right: 1px solid rgba(244, 239, 230, 0.13);
  border-radius: 0 22px 22px 0;
  background: rgba(8, 10, 9, 0.94);
  box-shadow: 30px 0 90px rgba(0, 0, 0, 0.46);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-104%, 0, 0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
  backdrop-filter: blur(22px);
}

.site-header.nav-open .main-nav {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.main-nav::before {
  display: block;
  margin: 0 0 18px;
  color: var(--stone);
  content: "Phoenix Flowers";
  font-family: var(--display-font);
  font-size: 28px;
  letter-spacing: 0;
  text-transform: none;
}

.main-nav a {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.11);
  border-radius: 0;
  background: transparent;
  padding: 13px 0;
  color: rgba(244, 239, 230, 0.86);
  font-family: var(--text-font);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  white-space: normal;
}

.main-nav a:hover {
  border-color: rgba(244, 239, 230, 0.24);
  background: transparent;
  color: var(--ivory);
  transform: translateX(6px);
}

.site-header.search-open .site-search {
  z-index: 85;
}

.site-header.nav-open .menu-toggle {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  left: 18px;
  z-index: 90;
  background: rgba(244, 239, 230, 0.10);
}


@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    min-height: 60px;
    align-items: center;
    padding: 8px 10px;
  }

  .site-header .brand {
    max-width: min(46vw, 280px);
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    display: inline;
    font-size: 12px;
    line-height: 1.05;
  }

  .header-actions {
    gap: 6px;
  }

  .header-search-toggle,
  .menu-toggle,
  .cart-button {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    width: min(390px, 86vw);
    padding-right: 22px;
    padding-left: 22px;
    border-radius: 0 18px 18px 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    grid-template-columns: 38px minmax(0, 1fr) 84px;
    width: calc(100% - 20px);
    min-height: 56px;
    margin-top: 8px;
    margin-bottom: 18px;
    padding: 8px;
    border-radius: 12px;
  }

  .site-header .brand {
    max-width: calc(100vw - 165px);
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    max-width: 112px;
    font-size: 11px;
    line-height: 1.05;
    white-space: normal;
  }

  .header-actions {
    gap: 4px;
  }

  .header-search-toggle,
  .menu-toggle,
  .cart-button {
    width: 36px;
    height: 36px;
  }

  .cart-count {
    top: -6px;
    right: -6px;
    width: 21px;
    height: 21px;
    font-size: 11px;
  }

  .main-nav {
    width: min(340px, 88vw);
    padding: max(70px, calc(48px + env(safe-area-inset-top))) 20px max(24px, env(safe-area-inset-bottom));
  }

  .main-nav::before {
    font-size: 24px;
  }

  .main-nav a {
    min-height: 48px;
    padding: 12px 0;
    font-size: 17px;
  }

  .site-header.nav-open .menu-toggle {
    top: max(14px, env(safe-area-inset-top));
    left: 14px;
  }
}
/* Fix drawer overlay stacking: backdrop below menu, menu remains clickable. */
body::after {
  z-index: 55;
}

.site-header.nav-open {
  z-index: 120;
}

.site-header.nav-open .main-nav {
  z-index: 130;
}

.site-header.nav-open .menu-toggle {
  z-index: 140;
}
/* Header polish: fixed premium bar and balanced action icons. */
.site-header {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  left: 50%;
  z-index: 120;
  width: min(1180px, calc(100% - 32px));
  margin: 0;
  border-color: rgba(244, 239, 230, 0.16);
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.055), rgba(244, 239, 230, 0.025)),
    rgba(8, 10, 9, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(244, 239, 230, 0.07);
  transform: translateX(-50%);
  backdrop-filter: blur(18px) saturate(1.08);
}

main {
  padding-top: 96px;
}

.site-header .brand {
  color: rgba(244, 239, 230, 0.92);
}

.header-actions {
  gap: 7px;
}

.header-search-toggle,
.menu-toggle,
.cart-button {
  display: grid;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(244, 239, 230, 0.17);
  border-radius: 50%;
  background: rgba(244, 239, 230, 0.045);
  box-shadow: inset 0 1px 0 rgba(244, 239, 230, 0.04);
}

.header-search-toggle::before,
.cart-button::before {
  grid-area: 1 / 1;
  width: 18px;
  height: 18px;
  margin: 0;
}

.cart-button {
  font-size: 0;
  line-height: 1;
}

.cart-count {
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-width: 2px;
  font-size: 10px;
}

.header-search-toggle:hover,
.menu-toggle:hover,
.cart-button:hover {
  border-color: rgba(244, 239, 230, 0.32);
  background: rgba(244, 239, 230, 0.09);
}

.site-header.search-open .site-search {
  top: calc(100% + 8px);
}


@media (max-width: 900px) {
  .site-header {
    top: max(8px, env(safe-area-inset-top));
    width: calc(100% - 20px);
    min-height: 58px;
  }

  main {
    padding-top: 82px;
  }

  .header-search-toggle,
  .menu-toggle,
  .cart-button {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .header-search-toggle::before,
  .cart-button::before {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: max(8px, env(safe-area-inset-top));
    width: calc(100% - 16px);
    min-height: 54px;
    border-radius: 12px;
  }

  main {
    padding-top: 76px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-search-toggle,
  .menu-toggle,
  .cart-button {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
  }

  .header-search-toggle::before,
  .cart-button::before {
    width: 16px;
    height: 16px;
  }

  .cart-count {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
}
/* Hard fix for header cart icon alignment. */
.header-cart-button {
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  display: grid !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  place-items: center !important;
  padding: 0 !important;
  overflow: visible !important;
  border-radius: 50% !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transform: none !important;
}

.header-cart-button::before {
  position: static !important;
  display: block !important;
  grid-area: 1 / 1 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  place-self: center !important;
  transform: none !important;
}

.header-cart-button:hover {
  transform: none !important;
}

.header-cart-button .cart-count {
  position: absolute !important;
  top: -5px !important;
  right: -5px !important;
  display: grid !important;
  width: 20px !important;
  height: 20px !important;
  place-items: center !important;
  line-height: 1 !important;
}


@media (max-width: 900px) {
  .header-cart-button {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
  }

  .header-cart-button::before {
    width: 17px !important;
    height: 17px !important;
  }
}

@media (max-width: 620px) {
  .header-cart-button {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    min-height: 35px !important;
  }

  .header-cart-button::before {
    width: 16px !important;
    height: 16px !important;
  }

  .header-cart-button .cart-count {
    top: -5px !important;
    right: -5px !important;
    width: 18px !important;
    height: 18px !important;
  }
}
/* Info sections in the same visual system as florist order. */
.info-order {
  border-block: 1px solid var(--line);
}

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

.info-panel div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.info-panel span {
  color: var(--stone);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.info-panel strong {
  color: rgba(244, 239, 230, 0.88);
  font-size: 17px;
  line-height: 1.42;
}

.info-panel .button {
  align-self: end;
}

/* Cart icon must be centered exactly like the search icon. */
.header-cart-button {
  position: relative !important;
  display: inline-grid !important;
  place-items: center !important;
  overflow: visible !important;
  line-height: 1 !important;
}

.header-cart-button::before {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  transform: translate(-50%, -50%) !important;
  transform-origin: center !important;
}

.header-search-toggle::before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

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

.header-cart-button .cart-count {
  z-index: 2;
}


@media (max-width: 900px) {
  .info-panel {
    grid-template-columns: 1fr;
  }

  .header-cart-button::before {
    width: 17px !important;
    height: 17px !important;
  }
}

@media (max-width: 620px) {
  .info-panel {
    padding: 14px;
  }

  .info-panel strong {
    font-size: 16px;
  }

  .header-cart-button::before {
    width: 16px !important;
    height: 16px !important;
  }
}
/* Clean text-only business/care sections. */
.info-text {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 56px;
  border-top: 1px solid var(--line);
}

.info-text + .info-text {
  padding-top: 44px;
}

.info-text-copy {
  display: grid;
  gap: 20px;
  justify-items: start;
  min-width: 0;
}

.info-text-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: var(--font-weight-body);
  line-height: 1.68;
}

.info-text-copy .button {
  width: auto;
  min-width: 172px;
  border-color: rgba(244, 239, 230, 0.36);
}


@media (max-width: 900px) {
  .info-text {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .care-media {
    max-width: 100%;
    margin-top: 36px;
  }
}

@media (max-width: 620px) {
  .info-text {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .info-text-copy p {
    font-size: 16px;
  }

  .info-text-copy .button {
    width: 100%;
  }
}


.care-intro {
  min-width: 0;
}

.care-media {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  max-width: 440px;
  margin-top: 40px;
}

.care-video-card {
  width: 100%;
}

.care-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(211, 196, 166, 0.22);
  border-radius: 18px;
  background: rgba(4, 14, 12, 0.58);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.care-video-wrapper::after {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 10, 0.08);
  pointer-events: none;
  content: "";
}

.care-video-wrapper video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.care-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(6, 27, 23, 0.68);
  color: #f4f0e8;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.care-video-play::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid currentColor;
  content: "";
}

.care-video-play:hover {
  background: rgba(6, 27, 23, 0.88);
  transform: translate(-50%, -50%) scale(1.06);
}

.care-video-wrapper.is-playing::after,
.care-video-wrapper.is-playing .care-video-play {
  opacity: 0;
  pointer-events: none;
}

.care-video-title {
  margin: 10px 4px 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.care-video-dots {
  display: none;
}
.care-rules {
  gap: 26px;
}

.care-rule-group {
  display: grid;
  gap: 10px;
  max-width: 780px;
}

.care-rule-group h3 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-family-heading);
  font-size: 20px;
  font-weight: var(--font-weight-heading);
  line-height: 1.35;
}

.care-rule-group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: var(--font-weight-body);
  line-height: 1.62;
}

.care-rule-group li {
  position: relative;
  padding-left: 18px;
}

.care-rule-group li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

@media (max-width: 768px) {
  #care.info-text {
    width: 100%;
    min-width: 0;
    gap: 0;
    padding-inline: 16px;
    box-sizing: border-box;
  }

  #care .care-intro {
    width: 100%;
    min-width: 0;
  }

  #care .care-intro .eyebrow {
    margin-top: 40px;
  }

  #care .care-intro h2 {
    margin-bottom: 28px;
  }

  .care-videos {
    display: flex;
    flex-direction: row;
    gap: 14px;
    width: calc(100% + 16px);
    max-width: none;
    margin: 0 -16px 0 0;
    padding: 0 16px 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-sizing: border-box;
  }

  .care-videos::-webkit-scrollbar {
    display: none;
  }

  .care-video-card {
    flex: 0 0 min(84vw, 365px);
    min-width: 0;
    scroll-snap-align: start;
  }

  .care-video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
  }

  .care-video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .care-video-play {
    width: 50px;
    height: 50px;
  }

  .care-video-title {
    margin: 10px 4px 0;
    font-size: 13px;
    line-height: 1.4;
  }

  .care-video-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 0;
  }

  .care-video-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(211, 196, 166, 0.36);
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
  }

  .care-video-dot.is-active {
    width: 18px;
    background: rgba(239, 234, 224, 0.78);
  }

  .care-rules {
    width: 100%;
    gap: 22px;
    margin-top: 34px;
  }

  .care-rule-group {
    gap: 10px;
  }

  .care-rule-group h3 {
    margin-top: 4px;
    font-size: 17px;
    line-height: 1.35;
  }

  .care-rule-group ul {
    gap: 10px;
    font-size: 15.5px;
    line-height: 1.62;
  }
}

@media (max-width: 620px) {
  .info-text,
  .info-text-copy,
  .care-rules,
  .care-rule-group,
  .care-rule-group ul,
  .care-rule-group li {
    max-height: none;
    overflow: visible;
  }

  .info-text-copy p,
  .care-rule-group li {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .care-rule-group ul {
    color: var(--text-secondary);
    line-height: 1.62;
  }
}

/* Palette experiment from examples: smoky teal, eucalyptus and soft silver. */
:root {
  --ink: #071312;
  --forest: #102020;
  --forest-2: #203030;
  --moss: #609080;
  --ivory: #f3f4f0;
  --stone: #c0c8c4;
  --line: rgba(192, 200, 196, 0.18);
  --wine: #90a0b0;
  --silver: #c0c0c0;
  --teal-smoke: #304040;
  --eucalyptus: #608080;
  --mist-blue: #90a0b0;
  --accent: #b6a58b;
  --accent-soft: rgba(182, 165, 139, 0.18);
  --accent-line: rgba(182, 165, 139, 0.34);
}

body {
  color: var(--ivory);
  background:
    radial-gradient(900px 600px at 75% 15%, rgba(45, 92, 84, 0.18), transparent 65%),
    radial-gradient(700px 700px at 5% 75%, rgba(20, 67, 60, 0.14), transparent 70%),
    linear-gradient(135deg, #061311 0%, #0a1c19 50%, #081614 100%);
}

body::before {
  background:
    radial-gradient(ellipse 18rem 44rem at 116% 40%, rgba(134, 160, 132, 0.10), transparent 58%),
    radial-gradient(ellipse 6rem 22rem at 93% 14%, rgba(192, 200, 154, 0.055), transparent 62%),
    radial-gradient(ellipse 7rem 24rem at 96% 36%, rgba(112, 142, 112, 0.068), transparent 64%),
    radial-gradient(ellipse 6rem 21rem at 90% 58%, rgba(170, 144, 94, 0.052), transparent 62%),
    conic-gradient(from 226deg at 102% 42%, transparent 0 18deg, rgba(176, 142, 86, 0.052) 20deg 27deg, transparent 30deg 360deg),
    radial-gradient(circle at 88% 18%, rgba(198, 154, 90, 0.045), transparent 13rem),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.34'/%3E%3C/svg%3E");
  background-size: auto, auto, auto, auto, auto, auto, 140px 140px;
  background-blend-mode: screen, screen, screen, screen, screen, screen, soft-light;
  filter: none;
  opacity: 0.18;
}

@media (max-width: 620px) {
  body::before {
    background:
      radial-gradient(ellipse 13rem 32rem at 118% 34%, rgba(134, 160, 132, 0.12), transparent 60%),
      radial-gradient(ellipse 5rem 18rem at 94% 18%, rgba(192, 200, 154, 0.065), transparent 62%),
      radial-gradient(circle at 92% 18%, rgba(198, 154, 90, 0.035), transparent 10rem),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.30'/%3E%3C/svg%3E");
    background-size: auto, auto, auto, 140px 140px;
    background-blend-mode: screen, screen, screen, soft-light;
    opacity: 0.16;
  }
}

.site-header {
  border-color: rgba(192, 200, 196, 0.22);
  background:
    linear-gradient(180deg, rgba(192, 200, 196, 0.08), rgba(48, 64, 64, 0.08)),
    rgba(7, 19, 18, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(243, 244, 240, 0.08);
}

.header-search-toggle,
.menu-toggle,
.header-cart-button {
  border-color: rgba(192, 200, 196, 0.20) !important;
  color: rgba(243, 244, 240, 0.92) !important;
  background: rgba(192, 200, 196, 0.055) !important;
}

.header-search-toggle:hover,
.menu-toggle:hover,
.header-cart-button:hover {
  border-color: rgba(192, 200, 196, 0.36) !important;
  background: rgba(96, 128, 128, 0.16) !important;
}

.button.primary,
.product-bottom button.has-items,
.product-bottom button.added,
.filters .active {
  border-color: rgba(192, 200, 196, 0.94);
  color: #071312;
  background: linear-gradient(180deg, #f3f4f0, #c0c8c4);
  box-shadow: 0 14px 34px rgba(144, 160, 176, 0.18);
}

.button.primary:hover {
  box-shadow: 0 18px 44px rgba(144, 160, 176, 0.26);
}

.button.ghost,
.main-nav a,
.cart-button,
.filters button,
.product-bottom button {
  border-color: rgba(192, 200, 196, 0.20);
  color: rgba(243, 244, 240, 0.88);
  background: rgba(48, 64, 64, 0.24);
}

.button.ghost:hover,
.filters button:hover,
.product-bottom button:hover {
  border-color: rgba(192, 200, 196, 0.38);
  background: rgba(96, 128, 128, 0.18);
}

.hero-media,
.product-card,
.order-form,
.cart-card,
.category-tile,
.service article {
  border-color: rgba(192, 200, 196, 0.16);
  background:
    linear-gradient(180deg, rgba(192, 200, 196, 0.055), rgba(16, 32, 32, 0.16)),
    rgba(16, 32, 32, 0.46);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(6, 15, 14, 0.90), rgba(8, 24, 21, 0.62) 48%, rgba(28, 45, 42, 0.16)),
    linear-gradient(0deg, rgba(6, 15, 14, 0.78), rgba(8, 24, 21, 0.08) 58%),
    linear-gradient(180deg, rgba(6, 15, 14, 0.34), transparent 32%);
}

.product-card:hover,
.category-tile:hover,
.order-form:focus-within {
  border-color: rgba(192, 200, 196, 0.32);
  background:
    linear-gradient(180deg, rgba(192, 200, 196, 0.075), rgba(96, 128, 128, 0.12)),
    rgba(16, 32, 32, 0.56);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}
.product-card img,
.product-gallery img.active {
  filter: brightness(1.08) saturate(1.06) contrast(1.02);
}

.product-card:hover img,
.product-card:hover .product-gallery img.active {
  filter: brightness(1.13) saturate(1.08) contrast(1.03);
}

.eyebrow,
.product-info p,
.order-form label,
.cart-order-form label,
.info-text-copy p,
.custom-copy p,
.intro > p {
  color: rgba(192, 200, 196, 0.74);
}

.product-info h3,
h1,
h2,
.cart-card h2,
.brand {
  color: #f3f4f0;
}

.main-nav {
  border-right-color: rgba(192, 200, 196, 0.18);
  background:
    radial-gradient(circle at 14% 8%, rgba(96, 144, 128, 0.20), transparent 18rem),
    linear-gradient(145deg, rgba(7, 19, 18, 0.98), rgba(32, 48, 48, 0.96));
}

.main-nav::before {
  color: rgba(192, 200, 196, 0.72);
}

.main-nav a {
  border-bottom-color: rgba(192, 200, 196, 0.14);
  background: transparent;
}

.main-nav a:hover {
  border-color: rgba(192, 200, 196, 0.32);
  color: #ffffff;
}

.site-search input,
.order-form input,
.order-form textarea,
.cart-order-form input,
.cart-order-form textarea,
.custom-select-button {
  border-color: rgba(192, 200, 196, 0.20);
  color: var(--ivory);
  background: rgba(7, 19, 18, 0.56);
}

.site-search input:focus,
.order-form input:focus,
.order-form textarea:focus,
.cart-order-form input:focus,
.cart-order-form textarea:focus {
  border-color: rgba(192, 200, 196, 0.46);
  background: rgba(7, 19, 18, 0.72);
  box-shadow: 0 0 0 4px rgba(144, 160, 176, 0.08);
}

.category-tile::after {
  background:
    linear-gradient(180deg, rgba(7, 19, 18, 0.04), rgba(7, 19, 18, 0.78)),
    linear-gradient(135deg, rgba(96, 144, 128, 0.12), transparent 48%);
}

.info-text {
  border-top-color: rgba(192, 200, 196, 0.16);
}

.toast {
  border-color: rgba(192, 200, 196, 0.24);
  background: rgba(7, 19, 18, 0.92);
}
/* Warm champagne accent: restrained highlights, not a full recolor. */
.site-header .brand {
  gap: 14px;
  color: #fff8ec;
  font-size: 17px;
  font-weight: 500;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

.site-header .brand img {
  width: 66px;
  height: 66px;
  border-color: var(--accent-line);
  box-shadow: 0 0 0 1px rgba(182, 165, 139, 0.14), 0 12px 32px rgba(0, 0, 0, 0.26);
}

.site-header {
  background:
    linear-gradient(180deg, rgba(182, 165, 139, 0.08), rgba(7, 19, 18, 0.12)),
    rgba(5, 16, 14, 0.78);
  backdrop-filter: blur(22px) saturate(1.06);
}

.eyebrow,
.product-info p,
.promo-card p,
.order-form label,
.cart-order-form label {
  color: rgba(214, 198, 171, 0.82);
}

.about-icon,
.cart-count,
.promo-card h3,
.product-bottom span,
.cart-summary strong,
.about-link-logo {
  color: var(--accent);
}

.promo-code-card .promo-card-body::before,
.care-rule-group li::before {
  background: var(--accent);
}

.button.primary,
.product-bottom button.has-items,
.product-bottom button.added,
.filters .active {
  border-color: rgba(214, 198, 171, 0.92);
  color: #071312;
  background: linear-gradient(180deg, #d8c8ad, var(--accent));
  box-shadow: 0 14px 34px rgba(182, 165, 139, 0.18);
}

.button.primary:hover,
.product-bottom button.has-items:hover,
.product-bottom button.added:hover,
.filters .active:hover {
  box-shadow: 0 18px 44px rgba(182, 165, 139, 0.26);
}

.button.ghost:hover,
.main-nav a:hover,
.filters button:hover,
.product-bottom button:hover {
  border-color: var(--accent-line);
  background: rgba(182, 165, 139, 0.10);
}

.hero-media,
.product-card,
.order-form,
.cart-card,
.category-tile,
.service article,
.about-fact,
.about-link-card,
.promo-card {
  border-color: rgba(182, 165, 139, 0.13);
}


.about-fact {
  background:
    linear-gradient(135deg, rgba(182, 165, 139, 0.07), rgba(16, 32, 32, 0.12)),
    rgba(16, 32, 32, 0.44);
}

.about-icon {
  border-color: var(--accent-line);
  background: rgba(182, 165, 139, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 246, 230, 0.08);
  font-size: 18px;
}

.site-search input:focus,
.order-form input:focus,
.order-form textarea:focus,
.cart-order-form input:focus,
.cart-order-form textarea:focus {
  border-color: rgba(182, 165, 139, 0.44);
  box-shadow: 0 0 0 4px rgba(182, 165, 139, 0.08);
}

@media (max-width: 620px) {
  .site-header .brand img {
    width: 50px;
    height: 50px;
  }

  .site-header .brand {
    gap: 10px;
    font-size: 15px;
  }
}
/* Real cart icon element, centered like search icon. */
.header-cart-button::before,
.cart-button.header-cart-button::before {
  content: none !important;
  display: none !important;
}

.header-cart-button .cart-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18px;
  height: 18px;
  background: currentColor;
  transform: translate(-50%, -50%);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM5.2 4l.35 2H21l-2 8H8.1l.25 1.3c.09.42.45.7.88.7H19v2H9.23a2.9 2.9 0 0 1-2.84-2.34L4.04 3H1V1h4.7l.5 3Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM5.2 4l.35 2H21l-2 8H8.1l.25 1.3c.09.42.45.7.88.7H19v2H9.23a2.9 2.9 0 0 1-2.84-2.34L4.04 3H1V1h4.7l.5 3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}


@media (max-width: 900px) {
  .header-cart-button .cart-icon {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 620px) {
  .header-cart-button .cart-icon {
    width: 16px;
    height: 16px;
  }
}

/* Order form delivery details */
.order-form select,
.cart-order-form select {
  min-height: 46px;
  border: 1px solid rgba(33, 85, 78, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font: inherit;
  padding: 0 38px 0 14px;
  outline: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(33, 85, 78, 0.8) 50%), linear-gradient(135deg, rgba(33, 85, 78, 0.8) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.order-form select:focus,
.cart-order-form select:focus {
  border-color: rgba(28, 118, 104, 0.52);
  box-shadow: 0 0 0 4px rgba(28, 118, 104, 0.1);
}

.delivery-address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(92px, 0.65fr) minmax(120px, 0.9fr);
  gap: 12px;
  align-items: end;
}

.delivery-address-grid[hidden],
.delivery-note[hidden] {
  display: none !important;
}

.delivery-note {
  margin: -2px 0 4px;
  padding: 14px 16px;
  border: 1px solid rgba(28, 118, 104, 0.16);
  border-radius: 8px;
  background: rgba(233, 244, 239, 0.72);
  color: rgba(37, 58, 54, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cart-delivery-address {
  grid-template-columns: minmax(0, 1.45fr) minmax(78px, 0.65fr) minmax(96px, 0.85fr);
  gap: 10px;
}

.cart-delivery-note {
  margin: 0;
  font-size: 0.86rem;
  padding: 12px 13px;
}

.cart-order-form .cart-delivery-address label {
  min-width: 0;
}

@media (max-width: 720px) {
  .delivery-address-grid,
  .cart-delivery-address {
    grid-template-columns: 1fr;
  }

  .delivery-note {
    font-size: 0.88rem;
  }
}

.filter-group {
  display: contents;
}

.filter-group > span {
  align-self: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .filter-group > span {
    flex: 0 0 100%;
  }
}
/* Catalog cards: vertical phone photos, three cards per row on desktop. */
.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.catalog-grid .product-card img {
  aspect-ratio: 3 / 5;
}

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

@media (max-width: 620px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* Home category tiles: compact vertical catalog cards. */
.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-tile {
  aspect-ratio: 3 / 4;
  min-height: 0;
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 230, 0.16),
    inset 0 -1px 0 rgba(8, 10, 9, 0.18),
    0 14px 34px rgba(0, 0, 0, 0.22);
}

.category-tile span {
  right: 12px;
  bottom: 12px;
  left: 12px;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.05;
}


@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 620px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .category-tile {
    aspect-ratio: 3 / 4;
    min-height: 0;
    border-radius: 7px;
    box-shadow:
      inset 0 1px 0 rgba(244, 239, 230, 0.13),
      inset 0 -1px 0 rgba(8, 10, 9, 0.16),
      0 8px 20px rgba(0, 0, 0, 0.20);
  }

  .category-tile span {
    right: 7px;
    bottom: 7px;
    left: 7px;
    font-size: clamp(11px, 3.15vw, 14px);
    line-height: 1.05;
  }
}
/* Promotions and refreshed about section. */
.about-refresh {
  align-items: start;
  gap: 28px;
}

.about-copy h2 {
  max-width: 880px;
  font-size: clamp(24px, 3vw, 40px);
}

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

.about-fact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(192, 200, 196, 0.16);
  border-radius: 8px;
  background: rgba(244, 239, 230, 0.045);
  box-shadow: inset 0 1px 0 rgba(244, 239, 230, 0.08);
}

.about-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(192, 200, 196, 0.24);
  border-radius: 50%;
  color: var(--ivory);
  font-family: var(--display-font);
  font-size: 17px;
  line-height: 1;
}

.about-fact p {
  margin: 0;
  color: rgba(244, 239, 230, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.promotions {
  padding-top: 50px;
}

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

.promo-card {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid rgba(192, 200, 196, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(26, 47, 43, 0.92), rgba(10, 21, 20, 0.96)),
    rgba(10, 21, 20, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 230, 0.12),
    0 16px 38px rgba(0, 0, 0, 0.20);
}


.promo-code-card::before {
  position: absolute;
  right: -10px;
  top: 8px;
  content: var(--promo-mark, "");
  color: rgba(244, 239, 230, 0.075);
  font-family: var(--display-font);
  font-size: clamp(52px, 5.2vw, 88px);
  line-height: 0.86;
  pointer-events: none;
}

.promo-code-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(244, 239, 230, 0.10), transparent 28%),
    repeating-linear-gradient(135deg, rgba(192, 200, 196, 0.045) 0 1px, transparent 1px 12px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 76%);
  pointer-events: none;
}

.promo-code-card .promo-card-body::before {
  width: 34px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: rgba(192, 200, 196, 0.58);
}

.promo-wedding-card::before {
  font-size: clamp(38px, 4vw, 64px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.promo-day-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(180deg, rgba(7, 19, 18, 0.14), rgba(7, 19, 18, 0.82)),
    var(--promo-image, none);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.promo-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  align-content: end;
  gap: 8px;
  padding: 16px;
}

.promo-card p,
.promo-card h3,
.promo-card span {
  margin: 0;
}

.promo-card p {
  color: rgba(192, 200, 196, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-card h3 {
  color: var(--ivory);
  font-family: var(--display-font);
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.02;
}

.promo-card span {
  color: rgba(244, 239, 230, 0.76);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}


@media (max-width: 900px) {
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 620px) {
  .about-refresh {
    gap: 18px;
  }

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

  .about-fact {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 9px;
    padding: 11px;
  }

  .about-icon {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .about-fact p {
    font-size: 12px;
  }

  .promotions {
    padding-top: 36px;
  }

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

  .promo-card {
    min-height: 148px;
    border-radius: 7px;
  }

  .promo-card-body {
    gap: 6px;
    padding: 11px;
  }

  .promo-card p {
    font-size: 9px;
  }

  .promo-card h3 {
    font-size: clamp(20px, 6.2vw, 25px);
  }

  .promo-card span {
    font-size: 11px;
  }
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 720px) {
  .footer-actions {
    justify-content: flex-start;
  }
}
.about-side {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.about-link-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 2px;
}

.about-link-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 76px;
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(192, 200, 196, 0.17);
  border-radius: 8px;
  background: rgba(244, 239, 230, 0.038);
  color: var(--ivory);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(244, 239, 230, 0.075);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.about-link-card:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 239, 230, 0.30);
  background: rgba(244, 239, 230, 0.065);
  box-shadow: inset 0 1px 0 rgba(244, 239, 230, 0.12), 0 12px 28px rgba(0, 0, 0, 0.14);
}

.about-link-logo {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(192, 200, 196, 0.24);
  border-radius: 8px;
  color: rgba(244, 239, 230, 0.88);
  background: rgba(244, 239, 230, 0.045);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.about-link-card strong,
.about-link-card small {
  display: block;
  min-width: 0;
}

.about-link-card strong {
  font-size: 15px;
  line-height: 1.15;
}

.about-link-card small {
  margin-top: 4px;
  color: rgba(244, 239, 230, 0.62);
  font-size: 12px;
  line-height: 1.2;
}

@media (max-width: 620px) {
  .about-side {
    gap: 8px;
  }

  .about-link-cards {
    gap: 8px;
    margin-top: 0;
  }

  .about-link-card {
    min-height: 62px;
    padding: 12px;
  }

  .about-link-logo {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
}



.legal-consent {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px !important;
  align-items: start;
  padding-top: 2px;
  color: rgba(243, 244, 240, 0.82) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  line-height: 1.5;
  text-transform: none !important;
}
.legal-consent input {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: block;
  width: 21px !important;
  min-width: 21px !important;
  max-width: 21px !important;
  height: 21px !important;
  min-height: 21px !important;
  max-height: 21px !important;
  flex: 0 0 21px;
  margin: 0;
  border: 1px solid rgba(182, 165, 139, 0.48);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(182, 165, 139, 0.12), rgba(7, 19, 18, 0.22)),
    rgba(7, 19, 18, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 246, 230, 0.08), 0 8px 18px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease);
}
.legal-consent input::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 6px;
  content: "";
  border-left: 2px solid #071312;
  border-bottom: 2px solid #071312;
  opacity: 0;
  transform: translate(-50%, -58%) rotate(-45deg) scale(0.75);
  transform-origin: center;
  transition: opacity 160ms ease, transform 180ms var(--ease);
}
.legal-consent input:checked {
  border-color: rgba(214, 198, 171, 0.92);
  background: linear-gradient(180deg, #d8c8ad, var(--accent));
  box-shadow: 0 0 0 4px rgba(182, 165, 139, 0.09), 0 10px 22px rgba(0, 0, 0, 0.18);
}
.legal-consent input:checked::before {
  opacity: 1;
  transform: translate(-50%, -58%) rotate(-45deg) scale(1);
}
.legal-consent input:focus-visible {
  outline: 0;
  border-color: rgba(214, 198, 171, 0.96);
  box-shadow: 0 0 0 4px rgba(182, 165, 139, 0.16), 0 10px 22px rgba(0, 0, 0, 0.18);
}
.legal-consent input:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 198, 171, 0.72);
}
.legal-consent a,
.legal-content a,
.cookie-banner a {
  color: #d8c8ad;
  border-bottom: 1px solid rgba(182, 165, 139, 0.52);
  text-decoration: none;
}
.legal-consent a:hover,
.legal-content a:hover,
.cookie-banner a:hover {
  color: #fff8ec;
  border-color: rgba(255, 248, 236, 0.76);
}
.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(620px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(244, 239, 230, 0.18);
  border-radius: 12px;
  background: rgba(8, 10, 9, 0.86);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  animation: fadeLift 420ms var(--ease) both;
}
.cookie-banner p {
  margin: 0;
  color: rgba(244, 239, 230, 0.74);
  font-size: 13px;
  line-height: 1.5;
}
.cookie-banner .button {
  min-height: 42px;
  padding-inline: 18px;
}
.legal-header {
  grid-template-columns: auto 1fr;
}
.legal-page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}
.legal-hero {
  padding: 64px 0 28px;
}
.legal-hero h1 {
  max-width: 840px;
  margin-bottom: 14px;
  font-size: clamp(42px, 7vw, 86px);
}
.legal-hero p:not(.eyebrow) {
  color: rgba(244, 239, 230, 0.64);
}
.legal-content {
  display: grid;
  gap: 14px;
  padding: 28px 0 84px;
  color: rgba(244, 239, 230, 0.76);
  line-height: 1.7;
}
.legal-content h2 {
  margin-top: 22px;
  color: var(--ivory);
  font-family: var(--text-font);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}
.legal-content p {
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .cookie-banner {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    gap: 12px;
  }
  .cookie-banner .button {
    width: 100%;
  }
  .legal-header {
    border-radius: 18px;
  }
}

/* Mobile catalog polish */
@media (max-width: 760px) {
  .catalog .section-heading {
    gap: 14px;
  }

  .filters {
    display: grid;
    width: 100%;
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .filter-group {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 6px;
  }

  .filter-group > span {
    flex: 0 0 100%;
    margin-bottom: 1px;
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .filters button {
    min-height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
    color: rgba(243, 244, 240, 0.74);
    background: rgba(48, 64, 64, 0.18);
    box-shadow: none;
  }

  .filters .active {
    color: #071312;
    background: #dfe5df;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  }
}

@media (max-width: 620px) {
  .button {
    width: auto;
    min-height: 40px;
    padding-inline: 14px;
    border-radius: 10px;
    font-size: 13px;
    box-shadow: none;
  }

  .hero-actions,
  .footer-actions {
    align-items: flex-start;
  }

  .hero-actions .button,
  .section-heading > .button,
  .footer-actions .button,
  .info-text-copy .button,
  .info-panel .button {
    width: auto;
  }

  .button.primary,
  .button.ghost,
  .product-bottom button,
  .filters button {
    box-shadow: none;
  }

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

  .category-tile {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .category-tile span {
    right: 8px;
    bottom: 8px;
    left: 8px;
    font-size: 14px;
    line-height: 1.08;
  }
}

/* Catalog mobile thumbnails and photo viewer */
.catalog-grid .product-card img {
  cursor: zoom-in;
}

.photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) 14px max(16px, env(safe-area-inset-bottom));
  background: rgba(3, 8, 8, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.photo-viewer.open {
  opacity: 1;
  pointer-events: auto;
}

.photo-viewer img {
  display: block;
  max-width: min(100%, 760px);
  max-height: 88vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.photo-viewer-close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(244, 239, 230, 0.28);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(8, 16, 16, 0.82);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

body.photo-viewer-open {
  overflow: hidden;
}

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

  .catalog-grid .product-card {
    border-radius: 8px;
  }

  .catalog-grid .product-card:hover {
    transform: none;
  }

  .catalog-grid .product-card img,
  .catalog-grid .product-gallery {
    aspect-ratio: 3 / 4;
  }

  .catalog-grid .product-info {
    padding: 7px;
  }

  .catalog-grid .product-info p {
    margin-bottom: 4px;
    font-size: 9px;
    line-height: 1.15;
  }

  .catalog-grid .product-info h3 {
    display: -webkit-box;
    min-height: 27px;
    margin-bottom: 7px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-family: var(--text-font);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
  }

  .catalog-grid .product-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .catalog-grid .product-bottom span {
    font-size: 11px;
    line-height: 1.1;
  }

  .catalog-grid .product-bottom button {
    width: 100%;
    min-width: 0;
    min-height: 27px;
    padding: 0 5px;
    border-radius: 6px;
    font-size: 9px;
    line-height: 1;
  }

  .catalog-grid .product-bottom button .qty {
    min-width: 16px;
    height: 16px;
    margin-left: 3px;
    font-size: 9px;
  }

  .catalog-grid .product-gallery-arrow {
    width: 24px;
    height: 24px;
    font-size: 18px;
  }

  .catalog-grid .product-gallery-prev {
    left: 5px;
  }

  .catalog-grid .product-gallery-next {
    right: 5px;
  }

  .catalog-grid .product-gallery-dots {
    bottom: 5px;
    gap: 3px;
  }

  .catalog-grid .product-gallery-dots button {
    width: 5px;
    height: 5px;
  }
}

/* Hero video desktop framing */
@media (min-width: 901px) {
  .hero-media video {
    inset: -8% -4% -10% auto;
    width: 108%;
    height: 118%;
    object-fit: cover;
    object-position: center 44%;
  }
}

/* Product photo viewer carousel */
.photo-viewer-nav {
  position: fixed;
  top: 50%;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(244, 239, 230, 0.28);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(8, 16, 16, 0.78);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.photo-viewer-prev {
  left: max(14px, env(safe-area-inset-left));
}

.photo-viewer-next {
  right: max(14px, env(safe-area-inset-right));
}

.photo-viewer-dots {
  position: fixed;
  right: 70px;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 70px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.photo-viewer-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.42);
  cursor: pointer;
  padding: 0;
}

.photo-viewer-dots button.active {
  width: 22px;
  background: var(--ivory);
}

@media (max-width: 620px) {
  .photo-viewer img {
    max-height: 82vh;
  }

  .photo-viewer-nav {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .photo-viewer-prev {
    left: 6px;
  }

  .photo-viewer-next {
    right: 6px;
  }

  .photo-viewer-dots {
    right: 58px;
    left: 58px;
    bottom: max(14px, env(safe-area-inset-bottom));
  }
}

/* Premium photo viewer opening and loading state */
.photo-viewer {
  background:
    radial-gradient(circle at 50% 38%, rgba(244, 239, 230, 0.08), transparent 34rem),
    rgba(3, 8, 8, 0.90);
  backdrop-filter: blur(0);
  transition: opacity 260ms ease, backdrop-filter 520ms ease;
}

.photo-viewer.open {
  backdrop-filter: blur(18px) saturate(1.08);
}

.photo-viewer::before {
  position: absolute;
  inset: auto 50% 50% auto;
  width: min(64vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(244, 239, 230, 0.13), transparent 66%);
  opacity: 0;
  transform: translate(50%, 50%) scale(0.82);
  transition: opacity 520ms ease, transform 680ms var(--ease);
  pointer-events: none;
}

.photo-viewer.open::before {
  opacity: 1;
  transform: translate(50%, 50%) scale(1);
}

.photo-viewer img {
  opacity: 0;
  transform: translateY(16px) scale(0.965);
  transition: opacity 360ms ease, transform 640ms var(--ease), filter 640ms ease;
  will-change: opacity, transform;
}

.photo-viewer.is-ready img {
  opacity: 1;
  filter: saturate(1.02) contrast(1.02);
  transform: translateY(0) scale(1);
}

.photo-viewer.is-loading img {
  opacity: 0;
  transform: translateY(12px) scale(0.985);
}

.photo-viewer.is-loading::after {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(58vw, 420px);
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(244, 239, 230, 0.10);
  border-radius: 12px;
  content: "";
  background:
    linear-gradient(110deg, transparent 24%, rgba(244, 239, 230, 0.10), transparent 52%),
    rgba(244, 239, 230, 0.045);
  background-size: 220% 100%, auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%) scale(0.985);
  animation: photoViewerLoading 980ms ease-in-out infinite;
}

.photo-viewer-close,
.photo-viewer-nav,
.photo-viewer-dots {
  opacity: 0;
  transition: opacity 360ms ease, transform 520ms var(--ease), background 180ms ease, border-color 180ms ease;
}

.photo-viewer.open .photo-viewer-close,
.photo-viewer.open .photo-viewer-nav,
.photo-viewer.open .photo-viewer-dots {
  opacity: 1;
}

.photo-viewer.is-opening .photo-viewer-close,
.photo-viewer.is-opening .photo-viewer-nav {
  transform: translateY(-50%) scale(0.92);
}

.photo-viewer.is-opening .photo-viewer-close {
  transform: scale(0.92);
}

@keyframes photoViewerLoading {
  0% {
    background-position: 120% 0, 0 0;
  }
  100% {
    background-position: -120% 0, 0 0;
  }
}

@media (max-width: 620px) {
  .photo-viewer.is-loading::after {
    width: min(72vw, 320px);
  }
}



























@media (max-width: 620px) {
  .info-text-copy p,
  .care-rule-group ul {
    color: var(--text-secondary);
  }
}
/* Footer refinement: primary actions stay buttons, legal links stay quiet. */
.site-footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 22px 34px;
  align-items: center;
}

.footer-contacts {
  display: grid;
  gap: 5px;
  justify-items: start;
  color: rgba(243, 244, 240, 0.74);
  font-style: normal;
  line-height: 1.45;
}

.footer-contacts a {
  color: #d8c8ad;
  font-weight: 800;
  border-bottom: 1px solid rgba(182, 165, 139, 0.42);
  text-decoration: none;
}

.footer-contacts a:hover {
  color: #fff8ec;
  border-color: rgba(255, 248, 236, 0.72);
}

.footer-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-primary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-legal-links {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  color: rgba(243, 244, 240, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.footer-legal-links a {
  border-bottom: 1px solid rgba(182, 165, 139, 0.24);
  color: inherit;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: rgba(216, 200, 173, 0.92);
  border-color: rgba(182, 165, 139, 0.58);
}

.footer-copy {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  color: rgba(243, 244, 240, 0.42);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-actions,
  .footer-primary-links,
  .footer-legal-links {
    justify-content: flex-start;
    justify-items: start;
  }

  .footer-copy {
    margin-top: 0;
  }
}

@media (max-width: 350px) {
  .hero-content .hero-title {
    font-size: clamp(28px, 8.5vw, 31px);
    line-height: 1.2;
  }

  .hero > .hero-points {
    font-size: 11.75px;
  }
}











.product-description {
  display: -webkit-box;
  margin: -4px 0 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: rgba(244, 239, 230, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 620px) {
  .product-description {
    margin-bottom: 9px;
    font-size: 12px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
  }
}


@media (max-width: 900px) {
  .main-nav a {
    font-family: var(--text-font);
    font-weight: 300;
  }
}

@media (max-width: 900px) {
  .site-header.nav-open .main-nav a,
  body.menu-is-open .main-nav a {
    font-family: var(--text-font) !important;
    font-weight: 300 !important;
  }
}
.main-nav a,
.site-header.nav-open .main-nav a,
body.menu-is-open .main-nav a {
  font-family: var(--text-font) !important;
  font-weight: 300 !important;
}
.cart-drawer.open {
  background: rgba(0, 0, 0, 0.78) !important;
  backdrop-filter: blur(12px);
}

.cart-card {
  background: #0d1110 !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52) !important;
}

@media (max-width: 620px) {
  .cart-drawer.open {
    align-items: stretch !important;
    background: #0d1110 !important;
  }

  .cart-card {
    min-height: 100svh;
    max-height: 100svh !important;
    border-radius: 0 !important;
    background: #0d1110 !important;
  }
}
.checkout-header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.checkout-header h2 {
  min-width: 0;
  margin: 0;
}

.checkout-header .cart-close {
  position: static;
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  border-color: rgba(244, 239, 230, 0.18);
  color: rgba(244, 239, 230, 0.78);
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.checkout-header .cart-close:hover,
.checkout-header .cart-close:focus-visible {
  color: var(--ivory);
  background: rgba(244, 239, 230, 0.075);
  transform: none;
}

.checkout-header .cart-close:active {
  background: rgba(244, 239, 230, 0.12);
  transform: scale(0.96);
}

@media (max-width: 620px) {
  :root {
    --mobile-header-clearance: max(86px, calc(78px + env(safe-area-inset-top)));
  }

  .cart-drawer,
  .cart-drawer.open {
    inset: var(--mobile-header-clearance) 0 0 !important;
    z-index: 160 !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .cart-card {
    min-height: 0 !important;
    height: 100% !important;
    max-height: calc(100svh - var(--mobile-header-clearance)) !important;
    padding-top: 16px !important;
  }

  .checkout-header {
    margin-bottom: 16px;
  }

  .checkout-header h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.05;
  }
}
.cart-empty p {
  margin: 0;
}

.cart-empty p + p {
  margin-top: 6px;
}

.cart-empty-link {
  width: max-content;
  margin-top: 16px;
}

.cart-list[hidden],
.cart-order-form[hidden] {
  display: none !important;
}

@media (max-width: 620px) {
  .cart-empty-link {
    width: 100%;
    justify-content: center;
  }
}

/* Theme system: system / light / dark */
:root {
  --page-bg: #071312;
  --page-bg-secondary: #102020;
  --surface: rgba(16, 32, 32, 0.46);
  --surface-secondary: rgba(7, 19, 18, 0.56);
  --surface-hover: rgba(96, 128, 128, 0.18);
  --text-primary: #f3f4f0;
  --text-secondary: rgba(243, 244, 240, 0.78);
  --text-muted: rgba(192, 200, 196, 0.72);
  --border: rgba(192, 200, 196, 0.18);
  --border-strong: rgba(192, 200, 196, 0.36);
  --accent: #b6a58b;
  --accent-hover: #d8c8ad;
  --accent-active: #c3ad86;
  --accent-soft: rgba(182, 165, 139, 0.18);
  --accent-soft-hover: rgba(182, 165, 139, 0.26);
  --input-bg: rgba(7, 19, 18, 0.56);
  --input-bg-focus: rgba(7, 19, 18, 0.72);
  --header-bg: linear-gradient(180deg, rgba(182, 165, 139, 0.08), rgba(7, 19, 18, 0.12)), rgba(5, 16, 14, 0.78);
  --overlay: rgba(0, 0, 0, 0.78);
  --theme-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --focus-ring: 0 0 0 4px rgba(182, 165, 139, 0.12);
}

html[data-theme="light"] {
  color-scheme: light;
  --ink: #202928;
  --forest: #347f80;
  --forest-2: #e7f4f3;
  --moss: #697573;
  --ivory: #202928;
  --stone: #347f80;
  --line: #dde6e4;
  --wine: #8f5564;
  --accent: #347f80;
  --accent-hover: #2f7374;
  --accent-active: #285f60;
  --accent-soft: #e7f4f3;
  --accent-line: rgba(52, 127, 128, 0.38);
  --page-bg: #f7f9f8;
  --page-bg-secondary: #f1f5f4;
  --surface: #ffffff;
  --surface-secondary: #fafcfb;
  --surface-hover: #e7f4f3;
  --text-primary: #202928;
  --text-secondary: #697573;
  --text-muted: #929b99;
  --border: #dde6e4;
  --border-strong: #c8d6d3;
  --input-bg: #fafcfb;
  --input-bg-focus: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.94);
  --overlay: rgba(32, 41, 40, 0.28);
  --theme-shadow: 0 8px 30px rgba(21, 56, 52, 0.06);
  --focus-ring: 0 0 0 3px rgba(74, 166, 167, 0.12);
}

html[data-theme="dark"] {
  color-scheme: dark;
}

body,
.site-header,
.main-nav,
.site-search,
.theme-menu,
.hero-media,
.section,
.product-card,
.order-form,
.cart-card,
.category-tile,
.service article,
.about-fact,
.about-link-card,
.promo-card,
.cookie-banner,
.site-footer,
.button,
.filters button,
.product-bottom button,
input,
textarea,
select,
.custom-select-button,
.custom-select-menu {
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.theme-switcher {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.theme-toggle {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(192, 200, 196, 0.20);
  border-radius: 50%;
  color: rgba(243, 244, 240, 0.92);
  background: rgba(192, 200, 196, 0.055);
  box-shadow: inset 0 1px 0 rgba(243, 244, 240, 0.08);
  cursor: pointer;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--border-strong);
  background: var(--surface-hover);
  outline: 0;
}

.theme-toggle-icon,
.theme-option-icon {
  display: block;
  width: 18px;
  height: 18px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.theme-option-icon {
  width: 16px;
  height: 16px;
}

html[data-theme-choice="system"] .theme-toggle-icon,
.theme-option-system {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 5.5A2.5 2.5 0 0 1 6.5 3h11A2.5 2.5 0 0 1 20 5.5v8A2.5 2.5 0 0 1 17.5 16H13v2h3v2H8v-2h3v-2H6.5A2.5 2.5 0 0 1 4 13.5v-8Zm2.5-.5a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5h-11Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 5.5A2.5 2.5 0 0 1 6.5 3h11A2.5 2.5 0 0 1 20 5.5v8A2.5 2.5 0 0 1 17.5 16H13v2h3v2H8v-2h3v-2H6.5A2.5 2.5 0 0 1 4 13.5v-8Zm2.5-.5a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5h-11Z'/%3E%3C/svg%3E");
}

html[data-theme-choice="light"] .theme-toggle-icon,
.theme-option-light {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 4a1 1 0 0 1 1-1h0a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0V4Zm0 15a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0v-1ZM4 11h1a1 1 0 1 1 0 2H4a1 1 0 1 1 0-2Zm15 0h1a1 1 0 1 1 0 2h-1a1 1 0 1 1 0-2ZM6.34 4.93l.7.7a1 1 0 1 1-1.41 1.41l-.7-.7a1 1 0 1 1 1.41-1.41Zm11.33 11.32.7.7a1 1 0 1 1-1.42 1.42l-.7-.7a1 1 0 0 1 1.42-1.42ZM18.36 6.34l-.7.7a1 1 0 0 1-1.42-1.41l.71-.7a1 1 0 1 1 1.41 1.41ZM7.05 17.66l-.71.71a1 1 0 0 1-1.41-1.42l.7-.7a1 1 0 1 1 1.42 1.41ZM12 8a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 4a1 1 0 0 1 1-1h0a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0V4Zm0 15a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0v-1ZM4 11h1a1 1 0 1 1 0 2H4a1 1 0 1 1 0-2Zm15 0h1a1 1 0 1 1 0 2h-1a1 1 0 1 1 0-2ZM6.34 4.93l.7.7a1 1 0 1 1-1.41 1.41l-.7-.7a1 1 0 1 1 1.41-1.41Zm11.33 11.32.7.7a1 1 0 1 1-1.42 1.42l-.7-.7a1 1 0 0 1 1.42-1.42ZM18.36 6.34l-.7.7a1 1 0 0 1-1.42-1.41l.71-.7a1 1 0 1 1 1.41 1.41ZM7.05 17.66l-.71.71a1 1 0 0 1-1.41-1.42l.7-.7a1 1 0 1 1 1.42 1.41ZM12 8a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z'/%3E%3C/svg%3E");
}

html[data-theme-choice="dark"] .theme-toggle-icon,
.theme-option-dark {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20.2 15.2A7.6 7.6 0 0 1 8.8 3.8 8.7 8.7 0 1 0 20.2 15.2Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20.2 15.2A7.6 7.6 0 0 1 8.8 3.8 8.7 8.7 0 1 0 20.2 15.2Z'/%3E%3C/svg%3E");
}

.theme-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 150;
  display: grid;
  min-width: 176px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(13, 17, 16, 0.96);
  box-shadow: var(--theme-shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms var(--ease), border-color 160ms ease, background-color 160ms ease;
}

.theme-switcher.is-open .theme-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.theme-menu button {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  color: var(--text-secondary);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.theme-menu button:hover,
.theme-menu button:focus-visible,
.theme-menu button[aria-checked="true"] {
  color: var(--text-primary);
  background: var(--accent-soft);
  outline: 0;
}

html[data-theme="light"] body {
  color: var(--text-primary);
  background:
    radial-gradient(900px 580px at 80% 4%, rgba(74, 166, 167, 0.12), transparent 62%),
    radial-gradient(700px 620px at 4% 72%, rgba(116, 146, 139, 0.10), transparent 68%),
    linear-gradient(135deg, #f7f9f8 0%, #f1f5f4 54%, #f8faf9 100%);
}

html[data-theme="light"] body::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.46), transparent 35%, rgba(74, 166, 167, 0.035) 64%, transparent),
    repeating-linear-gradient(90deg, rgba(74, 166, 167, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(74, 166, 167, 0.025) 0 1px, transparent 1px 96px);
  opacity: 0.72;
}

html[data-theme="light"] body::after,
html[data-theme="light"] body.menu-is-open::after {
  background: rgba(32, 41, 40, 0.22);
}

html[data-theme="light"] .site-header {
  border-color: var(--border);
  background: var(--header-bg);
  box-shadow: 0 8px 24px rgba(21, 56, 52, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px) saturate(1.04);
}

html[data-theme="light"] .site-header .brand {
  color: #2f7777;
  text-shadow: none;
}

html[data-theme="light"] .site-header .brand img {
  border-color: rgba(74, 166, 167, 0.26);
  box-shadow: 0 0 0 1px rgba(74, 166, 167, 0.10), 0 8px 24px rgba(21, 56, 52, 0.08);
}

html[data-theme="light"] .header-search-toggle,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .menu-toggle,
html[data-theme="light"] .header-cart-button {
  border-color: var(--border) !important;
  color: var(--text-primary) !important;
  background: rgba(250, 252, 251, 0.86) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .header-search-toggle:hover,
html[data-theme="light"] .theme-toggle:hover,
html[data-theme="light"] .theme-toggle:focus-visible,
html[data-theme="light"] .menu-toggle:hover,
html[data-theme="light"] .header-cart-button:hover {
  border-color: rgba(74, 166, 167, 0.36) !important;
  background: var(--accent-soft) !important;
}

html[data-theme="light"] .cart-count {
  border-color: rgba(255, 255, 255, 0.96);
  color: #ffffff;
  background: var(--accent);
}

html[data-theme="light"] .main-nav {
  border-right-color: var(--border);
  background:
    radial-gradient(circle at 14% 8%, rgba(74, 166, 167, 0.10), transparent 18rem),
    rgba(255, 255, 255, 0.98);
  box-shadow: 28px 0 70px rgba(21, 56, 52, 0.12);
}

html[data-theme="light"] .main-nav a,
html[data-theme="light"] .button.ghost,
html[data-theme="light"] .cart-button,
html[data-theme="light"] .filters button,
html[data-theme="light"] .product-bottom button {
  border-color: var(--border);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .main-nav a:hover,
html[data-theme="light"] .button.ghost:hover,
html[data-theme="light"] .filters button:hover,
html[data-theme="light"] .product-bottom button:hover {
  border-color: rgba(74, 166, 167, 0.40);
  background: var(--accent-soft);
}

html[data-theme="light"] .button.primary,
html[data-theme="light"] .product-bottom button.has-items,
html[data-theme="light"] .product-bottom button.added,
html[data-theme="light"] .filters .active {
  border-color: var(--accent);
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(74, 166, 167, 0.18);
}

html[data-theme="light"] .button.primary:hover,
html[data-theme="light"] .product-bottom button.has-items:hover,
html[data-theme="light"] .product-bottom button.added:hover,
html[data-theme="light"] .filters .active:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  box-shadow: 0 14px 34px rgba(74, 166, 167, 0.22);
}

html[data-theme="light"] .hero-media {
  border-color: var(--border);
  background:
    radial-gradient(circle at 70% 42%, rgba(74, 166, 167, 0.10), transparent 24rem),
    linear-gradient(135deg, #ffffff, #eef5f3 58%, #f7f9f8);
  box-shadow: 0 18px 48px rgba(21, 56, 52, 0.08);
}

html[data-theme="light"] .hero-media::before {
  background:
    radial-gradient(circle at 38% 42%, rgba(255, 255, 255, 0.18), transparent 22rem),
    radial-gradient(circle at 78% 22%, rgba(74, 166, 167, 0.12), transparent 28rem);
  mix-blend-mode: multiply;
}

html[data-theme="light"] .hero-media::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.18)),
    linear-gradient(0deg, rgba(247, 249, 248, 0.76), rgba(247, 249, 248, 0.08) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 32%);
}

html[data-theme="light"] .hero-media video {
  opacity: 0.92;
  filter: saturate(1.04) contrast(1.02) brightness(1.03);
  mix-blend-mode: normal;
}

html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] .product-info h3,
html[data-theme="light"] .cart-card h2,
html[data-theme="light"] .brand {
  color: var(--text-primary);
}

html[data-theme="light"] .eyebrow,
html[data-theme="light"] .hero-eyebrow {
  color: var(--accent);
}

html[data-theme="light"] .hero-copy,
html[data-theme="light"] .hero-points,
html[data-theme="light"] .section-heading p,
html[data-theme="light"] .product-info p,
html[data-theme="light"] .cart-empty p,
html[data-theme="light"] .delivery-note,
html[data-theme="light"] .about-fact p,
html[data-theme="light"] .about-link-card small,
html[data-theme="light"] .site-footer,
html[data-theme="light"] .footer-copy,
html[data-theme="light"] .legal-content p {
  color: var(--text-secondary);
}

html[data-theme="light"] .hero-points span::before {
  background: var(--accent);
}

html[data-theme="light"] .hero-title {
  text-shadow: none;
}

html[data-theme="light"] .hero-media img,
html[data-theme="light"] .product-card img,
html[data-theme="light"] .category-tile img {
  filter: saturate(1.02) contrast(1.02);
}

html[data-theme="light"] .product-card,
html[data-theme="light"] .order-form,
html[data-theme="light"] .cart-card,
html[data-theme="light"] .service article,
html[data-theme="light"] .about-fact,
html[data-theme="light"] .about-link-card,
html[data-theme="light"] .promo-card,
html[data-theme="light"] .legal-content,
html[data-theme="light"] .legal-hero {
  border-color: var(--border);
  background: var(--surface);
  box-shadow: var(--theme-shadow);
}

html[data-theme="light"] .product-card:hover,
html[data-theme="light"] .category-tile:hover,
html[data-theme="light"] .order-form:focus-within,
html[data-theme="light"] .about-link-card:hover {
  border-color: rgba(74, 166, 167, 0.40);
  background: var(--surface-secondary);
  box-shadow: 0 14px 38px rgba(21, 56, 52, 0.08);
}

html[data-theme="light"] .category-tile {
  border-color: var(--border);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(21, 56, 52, 0.06);
}

html[data-theme="light"] .category-tile::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(32, 41, 40, 0.36)),
    linear-gradient(135deg, rgba(74, 166, 167, 0.08), transparent 52%);
}

html[data-theme="light"] .category-tile span {
  color: #ffffff;
  text-shadow: 0 1px 20px rgba(21, 56, 52, 0.32);
}

html[data-theme="light"] .about-icon,
html[data-theme="light"] .about-link-logo {
  border: 1px solid rgba(74, 166, 167, 0.35);
  color: var(--accent);
  background: rgba(74, 166, 167, 0.04);
  box-shadow: none;
}

html[data-theme="light"] .about-link-card:hover,
html[data-theme="light"] .about-fact:hover {
  border-color: rgba(74, 166, 167, 0.40);
  background: var(--accent-soft);
}

html[data-theme="light"] .site-search,
html[data-theme="light"] .theme-menu,
html[data-theme="light"] .custom-select-menu {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 40px rgba(21, 56, 52, 0.10);
}

html[data-theme="light"] .site-search label span,
html[data-theme="light"] .order-form label span,
html[data-theme="light"] .cart-order-form label span,
html[data-theme="light"] .fulfillment-toggle legend {
  color: var(--text-primary);
}

html[data-theme="light"] .site-search input,
html[data-theme="light"] .order-form input,
html[data-theme="light"] .order-form textarea,
html[data-theme="light"] .cart-order-form input,
html[data-theme="light"] .cart-order-form textarea,
html[data-theme="light"] .custom-select-button,
html[data-theme="light"] .order-form select,
html[data-theme="light"] .cart-order-form select {
  border-color: #d7e1df;
  color: var(--text-primary);
  background: var(--input-bg);
}

html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
  color: var(--text-muted);
}

html[data-theme="light"] .site-search input:focus,
html[data-theme="light"] .order-form input:focus,
html[data-theme="light"] .order-form textarea:focus,
html[data-theme="light"] .cart-order-form input:focus,
html[data-theme="light"] .cart-order-form textarea:focus,
html[data-theme="light"] .custom-select.open .custom-select-button,
html[data-theme="light"] .custom-select-button:focus-visible,
html[data-theme="light"] .order-form select:focus,
html[data-theme="light"] .cart-order-form select:focus {
  border-color: var(--accent);
  background: var(--input-bg-focus);
  box-shadow: var(--focus-ring);
  outline: 0;
}

html[data-theme="light"] input:-webkit-autofill,
html[data-theme="light"] textarea:-webkit-autofill,
html[data-theme="light"] select:-webkit-autofill {
  -webkit-text-fill-color: var(--text-primary);
  box-shadow: 0 0 0 1000px var(--input-bg) inset;
  caret-color: var(--text-primary);
}

html[data-theme="light"] .custom-select-menu button {
  color: var(--text-secondary);
}

html[data-theme="light"] .custom-select-menu button:hover,
html[data-theme="light"] .custom-select-menu button:focus-visible,
html[data-theme="light"] .custom-select-menu .selected {
  color: var(--text-primary);
  background: var(--accent-soft);
}

html[data-theme="light"] .fulfillment-switch {
  border-color: var(--border);
  background: var(--surface-secondary);
}

html[data-theme="light"] .fulfillment-toggle:has(input[value="pickup"]:checked) .fulfillment-switch {
  border-color: rgba(74, 166, 167, 0.28);
  background: rgba(74, 166, 167, 0.08);
  box-shadow: inset 0 0 0 1px rgba(74, 166, 167, 0.04);
}

html[data-theme="light"] .fulfillment-switch::before {
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(74, 166, 167, 0.18);
}

html[data-theme="light"] .fulfillment-switch label {
  color: var(--text-secondary);
}

html[data-theme="light"] .fulfillment-switch label:has(input:checked) {
  color: #ffffff;
}

html[data-theme="light"] .legal-consent input {
  border-color: rgba(74, 166, 167, 0.36);
  background: var(--surface-secondary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 8px 18px rgba(21, 56, 52, 0.06);
}

html[data-theme="light"] .legal-consent input::before {
  border-color: #ffffff;
}

html[data-theme="light"] .legal-consent input:checked {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(74, 166, 167, 0.10), 0 10px 22px rgba(21, 56, 52, 0.10);
}

html[data-theme="light"] .legal-consent input:focus-visible {
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

html[data-theme="light"] .legal-consent a,
html[data-theme="light"] .legal-content a,
html[data-theme="light"] .cookie-banner a,
html[data-theme="light"] .footer-contacts a,
html[data-theme="light"] .footer-legal-links a {
  color: var(--accent-hover);
  border-bottom-color: rgba(74, 166, 167, 0.36);
}

html[data-theme="light"] .legal-consent a:hover,
html[data-theme="light"] .legal-content a:hover,
html[data-theme="light"] .cookie-banner a:hover,
html[data-theme="light"] .footer-contacts a:hover,
html[data-theme="light"] .footer-legal-links a:hover {
  color: var(--accent-active);
  border-bottom-color: rgba(74, 166, 167, 0.62);
}

html[data-theme="light"] .cart-drawer.open {
  background: rgba(32, 41, 40, 0.30) !important;
  backdrop-filter: blur(12px);
}

html[data-theme="light"] .cart-card {
  border-left-color: var(--border);
  color: var(--text-primary);
  background: #ffffff !important;
  box-shadow: 0 24px 80px rgba(21, 56, 52, 0.16) !important;
}

html[data-theme="light"] .cart-summary {
  border-top-color: var(--border);
  color: var(--text-secondary);
}

html[data-theme="light"] .cart-summary strong,
html[data-theme="light"] .cart-item h3,
html[data-theme="light"] .site-footer div,
html[data-theme="light"] .about-link-card strong {
  color: var(--text-primary);
}

html[data-theme="light"] .cart-close,
html[data-theme="light"] .photo-viewer-close,
html[data-theme="light"] .photo-viewer-arrow {
  border-color: var(--border);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .photo-viewer {
  background: rgba(247, 249, 248, 0.92);
}

html[data-theme="light"] .photo-viewer-stage {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 80px rgba(21, 56, 52, 0.18);
}

html[data-theme="light"] .cookie-banner {
  border-color: var(--border);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 40px rgba(21, 56, 52, 0.10);
}

html[data-theme="light"] .cookie-banner p {
  color: var(--text-secondary);
}

html[data-theme="light"] .site-footer {
  color: var(--text-secondary);
}

html[data-theme="light"] ::selection {
  color: #ffffff;
  background: var(--accent);
}

html[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: rgba(74, 166, 167, 0.36);
}

html[data-theme="light"] ::-webkit-scrollbar-track {
  background: #edf3f1;
}


@media (max-width: 900px) {
  .theme-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .theme-toggle-icon {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 620px) {
  .theme-toggle {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
  }

  .theme-toggle-icon {
    width: 16px;
    height: 16px;
  }

  .theme-menu {
    right: -39px;
    max-width: calc(100vw - 24px);
  }

  html[data-theme="light"] .hero-media::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78) 52%, rgba(255, 255, 255, 0.22)),
      linear-gradient(0deg, rgba(247, 249, 248, 0.82), rgba(247, 249, 248, 0.10) 58%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 32%);
  }

  html[data-theme="light"] .cart-drawer.open {
    background: #ffffff !important;
  }

  html[data-theme="light"] .cart-card {
    background: #ffffff !important;
  }

  html[data-theme="light"] .cookie-banner {
    max-height: min(42svh, 260px);
    overflow: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .site-header,
  .main-nav,
  .site-search,
  .theme-menu,
  .hero-media,
  .section,
  .product-card,
  .order-form,
  .cart-card,
  .category-tile,
  .service article,
  .about-fact,
  .about-link-card,
  .promo-card,
  .cookie-banner,
  .site-footer,
  .button,
  .filters button,
  .product-bottom button,
  input,
  textarea,
  select,
  .custom-select-button,
  .custom-select-menu {
    transition-duration: 1ms !important;
  }
}

/* Theme switcher mobile header fit */
.site-header {
  grid-template-columns: 48px minmax(0, 1fr) auto;
}


@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }

  .site-header .brand {
    max-width: min(42vw, 250px);
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .site-header .brand {
    max-width: calc(100vw - 165px);
  }

  .header-actions {
    width: auto;
  }
}

html[data-theme="light"] .carousel-arrow,
html[data-theme="light"] .gallery-arrow,
html[data-theme="light"] .gallery-dot,
html[data-theme="light"] .care-video-dot {
  border-color: var(--border);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .carousel-arrow:hover,
html[data-theme="light"] .gallery-arrow:hover,
html[data-theme="light"] .gallery-dot:hover,
html[data-theme="light"] .care-video-dot:hover,
html[data-theme="light"] .gallery-dot.active,
html[data-theme="light"] .care-video-dot.is-active {
  border-color: rgba(74, 166, 167, 0.40);
  background: var(--accent-soft);
}

/* Legal header theme toggle */
.legal-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.legal-header .theme-switcher {
  justify-self: end;
}

@media (max-width: 720px) {
  .legal-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .legal-header .brand {
    grid-column: 1;
    justify-self: start;
  }

  .legal-header .main-nav {
    grid-column: 1 / -1;
  }
}

/* Light theme final polish */
html[data-theme="light"] .section-heading .button.ghost[href*="tag=all"] {
  border-color: var(--accent);
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(74, 166, 167, 0.16);
}

html[data-theme="light"] .section-heading .button.ghost[href*="tag=all"]:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

html[data-theme="light"] .order-form input[type="date"]::-webkit-calendar-picker-indicator,
html[data-theme="light"] .order-form input[type="time"]::-webkit-calendar-picker-indicator,
html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-calendar-picker-indicator,
html[data-theme="light"] .cart-order-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(35%) sepia(21%) saturate(964%) hue-rotate(132deg) brightness(94%) contrast(90%);
}

html[data-theme="light"] .legal-content,
html[data-theme="light"] .legal-hero {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}




/* Unified typography and theme-safe copy colors. */
body,
button,
input,
select,
textarea,
.main-nav a,
.button,
.filters button,
.product-bottom button,
.cookie-banner,
.site-footer {
  font-family: var(--font-family-base);
}

h1,
h2,
h3,
.brand,
.hero-panel strong,
.product-info h3,
.cart-item h3,
.cart-card h2,
.service h3,
.care-rule-group h3,
.legal-content h2,
.legal-hero h1 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-heading);
  letter-spacing: 0;
}

p,
li,
address,
.product-info p,
.info-text-copy p,
.care-rule-group ul,
.cookie-banner p,
.footer-contacts,
.footer-legal-links,
.footer-copy,
.legal-content p,
.legal-content li,
.order-form label span,
.cart-order-form label span {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-body);
}

.main-nav a,
.button,
.filters button,
.product-bottom button,
.theme-menu button,
.custom-select-button,
.custom-select-menu button,
.order-form input,
.order-form textarea,
.order-form select,
.cart-order-form input,
.cart-order-form textarea,
.cart-order-form select,
.site-search input {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-ui);
  line-height: var(--line-height-compact);
}

html[data-theme="light"] .info-text,
html[data-theme="light"] .info-text-copy,
html[data-theme="light"] .care-rules,
html[data-theme="light"] .care-rule-group {
  color: var(--text-primary);
}

html[data-theme="light"] .info-text-copy p,
html[data-theme="light"] .care-rule-group ul,
html[data-theme="light"] .care-rule-group li,
html[data-theme="light"] .care-video-title,
html[data-theme="light"] .footer-contacts,
html[data-theme="light"] .footer-legal-links,
html[data-theme="light"] .footer-copy,
html[data-theme="light"] .cookie-banner p,
html[data-theme="light"] .legal-content p,
html[data-theme="light"] .legal-content li {
  color: var(--text-secondary);
}

html[data-theme="light"] .care-rule-group h3,
html[data-theme="light"] .footer-contacts strong,
html[data-theme="light"] .footer-primary-links,
html[data-theme="light"] .cookie-banner {
  color: var(--text-primary);
}

html[data-theme="light"] .care-rule-group li::before {
  background: var(--accent);
}

html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
  color: var(--text-muted);
  opacity: 1;
}






/* Light theme readability pass: small text and warm/accent links. */
html[data-theme="light"] {
  --text-secondary: #4f5d5a;
  --text-muted: #66736f;
  --accent: #285f60;
  --accent-hover: #214f50;
  --accent-active: #193f40;
  --accent-line: rgba(40, 95, 96, 0.44);
  --gold-light-theme: var(--accent-text);
  --care-light-text: #5e6a67;
  --care-light-accent: #4aa6a7;
  --promo-light-title: var(--accent-text);
  --promo-light-copy: var(--accent-text);
}

html[data-theme="light"] .eyebrow,
html[data-theme="light"] .hero-eyebrow,
html[data-theme="light"] .care-video-title,
html[data-theme="light"] .product-info p,
html[data-theme="light"] .section-heading p,
html[data-theme="light"] .about-link-card small,
html[data-theme="light"] .footer-contacts,
html[data-theme="light"] .footer-legal-links,
html[data-theme="light"] .footer-copy,
html[data-theme="light"] .cookie-banner p,
html[data-theme="light"] .legal-content p,
html[data-theme="light"] .legal-content li,
html[data-theme="light"] .delivery-note,
html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
  color: var(--text-secondary);
  font-weight: 620;
  opacity: 1;
}

html[data-theme="light"] .legal-consent a,
html[data-theme="light"] .legal-content a,
html[data-theme="light"] .cookie-banner a,
html[data-theme="light"] .footer-contacts a,
html[data-theme="light"] .footer-legal-links a,
html[data-theme="light"] .pickup-info .button,
html[data-theme="light"] .about-link-logo,
html[data-theme="light"] .about-icon {
  color: var(--accent-active);
  border-bottom-color: var(--accent-line);
  font-weight: 720;
}

html[data-theme="light"] .button.primary,
html[data-theme="light"] .product-bottom button.has-items,
html[data-theme="light"] .product-bottom button.added,
html[data-theme="light"] .filters .active,
html[data-theme="light"] .section-heading .button.ghost[href*="tag=all"] {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}


/* Targeted light theme fixes requested after typography unification. */
html[data-theme="light"] #care .care-rule-group h3 {
  color: var(--text-primary);
}

html[data-theme="light"] #care .info-text-copy p,
html[data-theme="light"] #care .care-rule-group ul,
html[data-theme="light"] #care .care-rule-group li {
  color: var(--care-light-text);
  font-weight: 620;
  opacity: 1;
}

html[data-theme="light"] #care .care-rule-group li::before {
  background: var(--care-light-accent);
}

.about-side,
.about-side .about-facts,
.about-side .about-fact,
.about-side .about-fact p,
.about-side .about-icon,
.about-side .about-link-cards,
.about-side .about-link-card,
.about-side .about-link-card strong,
.about-side .about-link-card small,
.about-side .about-link-logo {
  font-family: var(--font-family-ui);
}

.about-side .about-fact p,
.about-side .about-link-card small {
  font-weight: 500;
}

.about-side .about-icon,
.about-side .about-link-card strong,
.about-side .about-link-logo {
  font-weight: 700;
}

html[data-theme="light"] #promotions .promo-code-card,
html[data-theme="light"] #promotions .promo-wedding-card {
  border-color: rgba(138, 101, 40, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 251, 244, 0.96), rgba(246, 241, 232, 0.96)),
    var(--surface);
}

html[data-theme="light"] #promotions .promo-code-card::before {
  color: rgba(138, 101, 40, 0.14);
}

html[data-theme="light"] #promotions .promo-code-card::after {
  background:
    linear-gradient(135deg, rgba(138, 101, 40, 0.14), transparent 30%),
    repeating-linear-gradient(135deg, rgba(138, 101, 40, 0.09) 0 1px, transparent 1px 12px);
}

html[data-theme="light"] #promotions .promo-code-card .promo-card-body::before {
  background: var(--gold-light-theme);
}

html[data-theme="light"] #promotions .promo-card p {
  color: var(--gold-light-theme);
  font-weight: 720;
  opacity: 1;
}

html[data-theme="light"] #promotions .promo-card h3 {
  color: var(--promo-light-title);
}

html[data-theme="light"] #promotions .promo-card span {
  color: var(--promo-light-copy);
  font-weight: 620;
  opacity: 1;
}

html[data-theme="light"] #promotions .promo-day-card::before {
  background-image:
    linear-gradient(180deg, rgba(7, 19, 18, 0.26), rgba(7, 19, 18, 0.78)),
    var(--promo-image, none);
}

html[data-theme="light"] #promotions .promo-day-card p,
html[data-theme="light"] #promotions .promo-day-card h3,
html[data-theme="light"] #promotions .promo-day-card span {
  color: #fff8ec;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}


.about-side .about-link-card strong {
  color: inherit;
}

html[data-theme="light"] .about-side .about-link-card strong {
  color: var(--text-primary);
}

html[data-theme="dark"] .about-side .about-link-card,
html[data-theme="dark"] .about-side .about-link-card strong {
  color: var(--ivory);
}

html[data-theme="dark"] .about-side .about-link-card small,
html[data-theme="dark"] .about-side .about-fact p {
  color: rgba(244, 239, 230, 0.72);
}


/* Light theme contrast correction: readable content and form controls. */
html[data-theme="light"] {
  --text-primary: #222B29;
  --text-secondary: #4E5A57;
  --text-muted: #6D7774;
  --text-subtle: #87918E;
  --label-color: var(--accent-text);
  --label-color-strong: var(--accent-text);
  --border: #C9D6D3;
  --border-strong: #AEC3BF;
  --input-bg: #FCFDFD;
  --input-bg-focus: #FFFFFF;
  --surface: #FFFFFF;
  --page-bg: #F5F8F7;
  --accent: #3F9FA1;
  --accent-hover: #348B8D;
  --accent-active: #2D797B;
  --accent-line: rgba(63, 159, 161, 0.42);
  --focus-ring: 0 0 0 3px rgba(63, 159, 161, 0.10);
  --input-text: #38423F;
  --placeholder-color: #7B8582;
  --gold-light-theme: var(--accent-text);
  --care-light-text: var(--text-secondary);
  --care-light-accent: var(--accent);
  --promo-light-title: var(--accent-text);
  --promo-light-copy: var(--accent-text);
}

html[data-theme="light"] body,
html[data-theme="light"] p,
html[data-theme="light"] li,
html[data-theme="light"] .section-heading p,
html[data-theme="light"] .product-info p,
html[data-theme="light"] .legal-content p,
html[data-theme="light"] .legal-content li,
html[data-theme="light"] .cookie-banner p,
html[data-theme="light"] .footer-copy,
html[data-theme="light"] .footer-contacts,
html[data-theme="light"] .footer-legal-links,
html[data-theme="light"] .cart-empty p,
html[data-theme="light"] .custom-select-menu button {
  color: var(--text-secondary);
  opacity: 1;
}

html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] h4,
html[data-theme="light"] .section-heading h2,
html[data-theme="light"] .checkout-header h2,
html[data-theme="light"] .cart-drawer h3,
html[data-theme="light"] .modal-content h3 {
  color: var(--text-primary);
}

html[data-theme="light"] #care .care-rule-group h3,
html[data-theme="light"] #care .care-video-title {
  color: var(--text-primary);
  opacity: 1;
}

html[data-theme="light"] #care .info-text-copy p,
html[data-theme="light"] #care .care-rule-group ul,
html[data-theme="light"] #care .care-rule-group li {
  color: var(--text-secondary);
  opacity: 1;
}

html[data-theme="light"] #care .care-rule-group li::before {
  background: var(--accent);
  opacity: 1;
}

html[data-theme="light"] .eyebrow,
html[data-theme="light"] .hero-eyebrow,
html[data-theme="light"] .order-form label,
html[data-theme="light"] .cart-order-form label,
html[data-theme="light"] .order-form label span,
html[data-theme="light"] .cart-order-form label span,
html[data-theme="light"] .fulfillment-toggle legend,
html[data-theme="light"] .site-search label span {
  color: var(--label-color);
  opacity: 1;
}

html[data-theme="light"] .order-form label:focus-within span,
html[data-theme="light"] .cart-order-form label:focus-within span,
html[data-theme="light"] .fulfillment-toggle legend {
  color: var(--label-color-strong);
}

html[data-theme="light"] .site-search input,
html[data-theme="light"] .order-form input,
html[data-theme="light"] .order-form textarea,
html[data-theme="light"] .order-form select,
html[data-theme="light"] .cart-order-form input,
html[data-theme="light"] .cart-order-form textarea,
html[data-theme="light"] .cart-order-form select,
html[data-theme="light"] .custom-select-button {
  background: var(--input-bg);
  border-color: var(--border);
  color: var(--input-text);
  opacity: 1;
}

html[data-theme="light"] .site-search input:focus,
html[data-theme="light"] .order-form input:focus,
html[data-theme="light"] .order-form textarea:focus,
html[data-theme="light"] .order-form select:focus,
html[data-theme="light"] .cart-order-form input:focus,
html[data-theme="light"] .cart-order-form textarea:focus,
html[data-theme="light"] .cart-order-form select:focus,
html[data-theme="light"] .custom-select-button:focus,
html[data-theme="light"] .custom-select.open .custom-select-button {
  background: var(--input-bg-focus);
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
  color: var(--input-text);
}

html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
  color: var(--placeholder-color);
  opacity: 1;
}

html[data-theme="light"] input[type="date"]::-webkit-datetime-edit,
html[data-theme="light"] input[type="date"]::-webkit-datetime-edit-fields-wrapper,
html[data-theme="light"] input[type="date"]::-webkit-datetime-edit-text,
html[data-theme="light"] input[type="date"]::-webkit-datetime-edit-month-field,
html[data-theme="light"] input[type="date"]::-webkit-datetime-edit-day-field,
html[data-theme="light"] input[type="date"]::-webkit-datetime-edit-year-field {
  color: var(--input-text);
}

html[data-theme="light"] input:disabled,
html[data-theme="light"] textarea:disabled,
html[data-theme="light"] select:disabled,
html[data-theme="light"] .custom-select.is-disabled .custom-select-button {
  background: #F1F5F4;
  color: var(--text-muted);
  border-color: var(--border);
  opacity: 0.86;
}

html[data-theme="light"] input:-webkit-autofill,
html[data-theme="light"] input:-webkit-autofill:hover,
html[data-theme="light"] input:-webkit-autofill:focus,
html[data-theme="light"] textarea:-webkit-autofill,
html[data-theme="light"] textarea:-webkit-autofill:hover,
html[data-theme="light"] textarea:-webkit-autofill:focus,
html[data-theme="light"] select:-webkit-autofill,
html[data-theme="light"] select:-webkit-autofill:hover,
html[data-theme="light"] select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--input-text);
  box-shadow: 0 0 0 1000px var(--input-bg) inset;
  caret-color: var(--input-text);
}

html[data-theme="light"] .custom-select-menu {
  border-color: var(--border-strong);
}

html[data-theme="light"] .custom-select-menu .selected,
html[data-theme="light"] .custom-select-menu button:hover {
  color: var(--text-primary);
  background: rgba(63, 159, 161, 0.12);
}

html[data-theme="light"] .delivery-note,
html[data-theme="light"] .cart-delivery-note,
html[data-theme="light"] .legal-consent,
html[data-theme="light"] .helper-text,
html[data-theme="light"] .form-helper {
  color: var(--text-secondary);
  opacity: 1;
}

html[data-theme="light"] .fulfillment-switch label {
  color: var(--text-secondary);
  opacity: 1;
}

html[data-theme="light"] .button.primary,
html[data-theme="light"] .product-bottom button.has-items,
html[data-theme="light"] .product-bottom button.added,
html[data-theme="light"] .filters .active,
html[data-theme="light"] .promo-cart-button:not(:disabled),
html[data-theme="light"] .fulfillment-switch label:has(input:checked),
html[data-theme="light"] .section-heading .button.ghost[href*="tag=all"] {
  color: #FFFFFF;
}

html[data-theme="light"] #promotions .promo-card p {
  color: var(--gold-light-theme);
  opacity: 1;
}

html[data-theme="light"] #promotions .promo-card h3 {
  color: var(--promo-light-title);
}

html[data-theme="light"] #promotions .promo-card span {
  color: var(--promo-light-copy);
  opacity: 1;
}

/* Light theme button contrast: keep turquoise, improve white text readability. */
html[data-theme="light"] {
  --button-accent: #2D797B;
  --button-accent-hover: #246568;
}

html[data-theme="light"] .button.primary,
html[data-theme="light"] .product-bottom button.has-items,
html[data-theme="light"] .product-bottom button.added,
html[data-theme="light"] .filters .active,
html[data-theme="light"] .promo-cart-button:not(:disabled),
html[data-theme="light"] .fulfillment-switch label:has(input:checked),
html[data-theme="light"] .section-heading .button.ghost[href*="tag=all"] {
  background: var(--button-accent);
  border-color: var(--button-accent);
  color: #FFFFFF;
}

html[data-theme="light"] .button.primary:hover,
html[data-theme="light"] .product-bottom button.has-items:hover,
html[data-theme="light"] .product-bottom button.added:hover,
html[data-theme="light"] .filters .active:hover,
html[data-theme="light"] .promo-cart-button:not(:disabled):hover,
html[data-theme="light"] .section-heading .button.ghost[href*="tag=all"]:hover {
  background: var(--button-accent-hover);
  border-color: var(--button-accent-hover);
  color: #FFFFFF;
}

/* Targeted mobile product footer and fulfillment segmented control fixes. */
.product-bottom {
  align-items: center;
  gap: 12px;
}

.product-bottom span {
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}

.product-bottom button {
  flex: 0 0 auto;
  max-width: 100%;
  white-space: nowrap;
}

.fulfillment-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
}

.fulfillment-switch label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 42px;
  text-align: center;
  cursor: pointer;
}

.fulfillment-switch input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
}

.fulfillment-switch label span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.fulfillment-switch label:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: -3px;
}

html[data-theme="light"] .fulfillment-switch label:not(:has(input:checked)) {
  background: transparent;
  color: var(--text-primary);
}

html[data-theme="light"] .fulfillment-switch label:has(input:checked) {
  background: var(--button-accent, var(--accent));
  color: #FFFFFF;
}

@media (max-width: 430px) {
  .catalog-grid .product-bottom,
  .product-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 12px;
  }

  .catalog-grid .product-bottom span,
  .product-bottom span {
    flex: 0 0 auto;
    min-width: max-content;
    white-space: nowrap;
    line-height: 1.1;
  }

  .catalog-grid .product-bottom button,
  .product-bottom button {
    flex: 0 0 auto;
    min-width: 112px;
  }
}

@media (max-width: 360px) {
  .catalog-grid .product-bottom,
  .product-bottom {
    align-items: stretch;
  }

  .catalog-grid .product-bottom button,
  .product-bottom button {
    flex: 1 1 100%;
    width: 100%;
  }
}

/* Final specificity fixes for catalog mobile footer and native radio hiding. */
.fulfillment-switch input[type="radio"],
html[data-theme="light"] .fulfillment-switch input[type="radio"] {
  position: absolute;
  inset: auto;
  width: 1px;
  height: 1px;
  min-width: 1px;
  min-height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
}

@media (min-width: 361px) and (max-width: 430px) {
  .catalog-grid .product-bottom {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .catalog-grid .product-bottom span {
    flex: 0 0 auto;
    min-width: max-content;
    font-size: 14px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .catalog-grid .product-bottom button {
    flex: 0 0 auto;
    width: auto;
    min-width: 96px;
    max-width: calc(100% - 88px);
  }
}

/* Keep long prices and cart button on one row where the mobile card has enough room. */
@media (min-width: 361px) and (max-width: 430px) {
  .product-bottom button,
  .catalog-grid .product-bottom button {
    flex: 0 0 auto;
    width: auto;
    min-width: 100px;
    max-width: calc(100% - 84px);
    padding-inline: 10px;
    font-size: 15px;
  }
}

/* Strong light-theme contrast for checkout/order forms. */
html[data-theme="light"] {
  --text-primary: #202826;
  --text-secondary: #4C5754;
  --text-muted: #66716E;
  --label: var(--accent-text);
  --label-strong: var(--accent-text);
  --label-color: var(--label);
  --label-color-strong: var(--label-strong);
  --input-text: #36413E;
  --placeholder: #737D7A;
  --placeholder-color: var(--placeholder);
  --border: #BCCDC9;
  --border-strong: #9FB8B2;
  --accent: #338B8C;
  --accent-hover: #2B7A7B;
  --input-bg: #FFFFFF;
  --input-bg-focus: #FFFFFF;
  --surface: #FFFFFF;
  --surface-soft: #F7FAF9;
  --button-accent: var(--accent);
  --button-accent-hover: var(--accent-hover);
  --focus-ring: 0 0 0 3px rgba(51, 139, 140, 0.12);
}

html[data-theme="light"] #order .section-heading p,
html[data-theme="light"] #order .order-copy,
html[data-theme="light"] #order .order-copy p,
html[data-theme="light"] .checkout-header p {
  color: var(--text-secondary);
  opacity: 1;
}

html[data-theme="light"] #order .order-form label,
html[data-theme="light"] #order .order-form label span,
html[data-theme="light"] .cart-order-form label,
html[data-theme="light"] .cart-order-form label span,
html[data-theme="light"] #order .fulfillment-toggle legend,
html[data-theme="light"] .cart-fulfillment-toggle legend {
  color: var(--label);
  opacity: 1;
}

html[data-theme="light"] #order .order-form label:focus-within span,
html[data-theme="light"] .cart-order-form label:focus-within span,
html[data-theme="light"] #order .fulfillment-toggle legend,
html[data-theme="light"] .cart-fulfillment-toggle legend {
  color: var(--label-strong);
}

html[data-theme="light"] #order .order-form input,
html[data-theme="light"] #order .order-form textarea,
html[data-theme="light"] #order .order-form select,
html[data-theme="light"] .cart-order-form input,
html[data-theme="light"] .cart-order-form textarea,
html[data-theme="light"] .cart-order-form select,
html[data-theme="light"] #order .custom-select-button,
html[data-theme="light"] .cart-order-form .custom-select-button {
  background: var(--surface);
  border-color: var(--border);
  color: var(--input-text);
  opacity: 1;
}

html[data-theme="light"] #order .order-form input:focus,
html[data-theme="light"] #order .order-form textarea:focus,
html[data-theme="light"] #order .order-form select:focus,
html[data-theme="light"] .cart-order-form input:focus,
html[data-theme="light"] .cart-order-form textarea:focus,
html[data-theme="light"] .cart-order-form select:focus,
html[data-theme="light"] #order .custom-select-button:focus,
html[data-theme="light"] #order .custom-select.open .custom-select-button,
html[data-theme="light"] .cart-order-form .custom-select-button:focus,
html[data-theme="light"] .cart-order-form .custom-select.open .custom-select-button {
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
  color: var(--input-text);
  opacity: 1;
}

html[data-theme="light"] #order input::placeholder,
html[data-theme="light"] #order textarea::placeholder,
html[data-theme="light"] .cart-order-form input::placeholder,
html[data-theme="light"] .cart-order-form textarea::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

html[data-theme="light"] #order input[type="date"]::-webkit-datetime-edit,
html[data-theme="light"] #order input[type="date"]::-webkit-datetime-edit-fields-wrapper,
html[data-theme="light"] #order input[type="date"]::-webkit-datetime-edit-text,
html[data-theme="light"] #order input[type="date"]::-webkit-datetime-edit-month-field,
html[data-theme="light"] #order input[type="date"]::-webkit-datetime-edit-day-field,
html[data-theme="light"] #order input[type="date"]::-webkit-datetime-edit-year-field,
html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-datetime-edit,
html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-datetime-edit-fields-wrapper,
html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-datetime-edit-text,
html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-datetime-edit-month-field,
html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-datetime-edit-day-field,
html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-datetime-edit-year-field {
  color: var(--input-text);
}

html[data-theme="light"] #order input:disabled,
html[data-theme="light"] #order textarea:disabled,
html[data-theme="light"] #order select:disabled,
html[data-theme="light"] .cart-order-form input:disabled,
html[data-theme="light"] .cart-order-form textarea:disabled,
html[data-theme="light"] .cart-order-form select:disabled {
  background: var(--surface-soft);
  border-color: var(--border);
  color: var(--text-muted);
  opacity: 0.9;
}

html[data-theme="light"] #order input:-webkit-autofill,
html[data-theme="light"] #order input:-webkit-autofill:hover,
html[data-theme="light"] #order input:-webkit-autofill:focus,
html[data-theme="light"] #order textarea:-webkit-autofill,
html[data-theme="light"] #order textarea:-webkit-autofill:hover,
html[data-theme="light"] #order textarea:-webkit-autofill:focus,
html[data-theme="light"] #order select:-webkit-autofill,
html[data-theme="light"] #order select:-webkit-autofill:hover,
html[data-theme="light"] #order select:-webkit-autofill:focus,
html[data-theme="light"] .cart-order-form input:-webkit-autofill,
html[data-theme="light"] .cart-order-form input:-webkit-autofill:hover,
html[data-theme="light"] .cart-order-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--input-text);
  box-shadow: 0 0 0 1000px var(--surface) inset;
  caret-color: var(--input-text);
}

html[data-theme="light"] #order .fulfillment-switch label:not(:has(input:checked)),
html[data-theme="light"] .cart-order-form .fulfillment-switch label:not(:has(input:checked)) {
  color: var(--text-primary);
  background: transparent;
  opacity: 1;
}

html[data-theme="light"] #order .fulfillment-switch label:has(input:checked),
html[data-theme="light"] .cart-order-form .fulfillment-switch label:has(input:checked) {
  background: var(--accent);
  color: #FFFFFF;
  opacity: 1;
}

html[data-theme="light"] #order .delivery-note,
html[data-theme="light"] .cart-order-form .delivery-note,
html[data-theme="light"] .cart-delivery-note {
  color: var(--text-secondary);
  opacity: 1;
}

html[data-theme="light"] #order .delivery-note small,
html[data-theme="light"] .cart-order-form .delivery-note small,
html[data-theme="light"] #order .form-helper,
html[data-theme="light"] .cart-order-form .form-helper {
  color: var(--text-muted);
  opacity: 0.9;
}

html[data-theme="light"] #order .custom-select-menu,
html[data-theme="light"] .cart-order-form .custom-select-menu {
  background: var(--surface);
  border-color: var(--border-strong);
}

html[data-theme="light"] #order .custom-select-menu button,
html[data-theme="light"] .cart-order-form .custom-select-menu button {
  color: var(--text-secondary);
  opacity: 1;
}

html[data-theme="light"] #order .custom-select-menu .selected,
html[data-theme="light"] #order .custom-select-menu button:hover,
html[data-theme="light"] .cart-order-form .custom-select-menu .selected,
html[data-theme="light"] .cart-order-form .custom-select-menu button:hover {
  color: var(--text-primary);
  background: rgba(51, 139, 140, 0.12);
}

/* Correct checkout section selector: the order form section is #custom. */
html[data-theme="light"] #custom .custom-copy p {
  color: var(--text-secondary);
  opacity: 1;
}

html[data-theme="light"] #custom .order-form label,
html[data-theme="light"] #custom .order-form label span,
html[data-theme="light"] #custom .fulfillment-toggle legend {
  color: var(--label);
  opacity: 1;
}

html[data-theme="light"] #custom .order-form label:focus-within,
html[data-theme="light"] #custom .order-form label:focus-within span,
html[data-theme="light"] #custom .fulfillment-toggle legend {
  color: var(--label-strong);
}

html[data-theme="light"] #custom .order-form input:not([type="radio"]):not([type="hidden"]),
html[data-theme="light"] #custom .order-form textarea,
html[data-theme="light"] #custom .order-form select,
html[data-theme="light"] #custom .custom-select-button {
  background: var(--surface);
  border-color: var(--border);
  color: var(--input-text);
  opacity: 1;
}

html[data-theme="light"] #custom .order-form input:focus,
html[data-theme="light"] #custom .order-form textarea:focus,
html[data-theme="light"] #custom .order-form select:focus,
html[data-theme="light"] #custom .custom-select-button:focus,
html[data-theme="light"] #custom .custom-select.open .custom-select-button {
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
  color: var(--input-text);
  opacity: 1;
}

html[data-theme="light"] #custom input::placeholder,
html[data-theme="light"] #custom textarea::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

html[data-theme="light"] #custom input[type="date"]::-webkit-datetime-edit,
html[data-theme="light"] #custom input[type="date"]::-webkit-datetime-edit-fields-wrapper,
html[data-theme="light"] #custom input[type="date"]::-webkit-datetime-edit-text,
html[data-theme="light"] #custom input[type="date"]::-webkit-datetime-edit-month-field,
html[data-theme="light"] #custom input[type="date"]::-webkit-datetime-edit-day-field,
html[data-theme="light"] #custom input[type="date"]::-webkit-datetime-edit-year-field {
  color: var(--input-text);
}

html[data-theme="light"] #custom input:disabled,
html[data-theme="light"] #custom textarea:disabled,
html[data-theme="light"] #custom select:disabled {
  background: var(--surface-soft);
  border-color: var(--border);
  color: var(--text-muted);
  opacity: 0.9;
}

html[data-theme="light"] #custom input:-webkit-autofill,
html[data-theme="light"] #custom input:-webkit-autofill:hover,
html[data-theme="light"] #custom input:-webkit-autofill:focus,
html[data-theme="light"] #custom textarea:-webkit-autofill,
html[data-theme="light"] #custom textarea:-webkit-autofill:hover,
html[data-theme="light"] #custom textarea:-webkit-autofill:focus,
html[data-theme="light"] #custom select:-webkit-autofill,
html[data-theme="light"] #custom select:-webkit-autofill:hover,
html[data-theme="light"] #custom select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--input-text);
  box-shadow: 0 0 0 1000px var(--surface) inset;
  caret-color: var(--input-text);
}

html[data-theme="light"] #custom .fulfillment-switch label:not(:has(input:checked)) {
  color: var(--text-primary);
  background: transparent;
  opacity: 1;
}

html[data-theme="light"] #custom .fulfillment-switch label:has(input:checked) {
  background: var(--accent);
  color: #FFFFFF;
  opacity: 1;
}

html[data-theme="light"] #custom .delivery-note,
html[data-theme="light"] #custom .legal-consent,
html[data-theme="light"] #custom .legal-consent span {
  color: var(--text-secondary);
  opacity: 1;
}

html[data-theme="light"] #custom .custom-select-menu {
  background: var(--surface);
  border-color: var(--border-strong);
}

html[data-theme="light"] #custom .custom-select-menu button {
  color: var(--text-secondary);
  opacity: 1;
}

html[data-theme="light"] #custom .custom-select-menu .selected,
html[data-theme="light"] #custom .custom-select-menu button:hover {
  color: var(--text-primary);
  background: rgba(51, 139, 140, 0.12);
}

/* Light checkout consent text should not inherit pale dark-theme text. */
html[data-theme="light"] #custom .order-form .legal-consent,
html[data-theme="light"] #custom .order-form .legal-consent span,
html[data-theme="light"] .cart-order-form .legal-consent,
html[data-theme="light"] .cart-order-form .legal-consent span {
  color: var(--text-secondary);
  opacity: 1;
}

html[data-theme="light"] #custom .order-form .legal-consent a,
html[data-theme="light"] .cart-order-form .legal-consent a {
  color: var(--accent-hover);
  opacity: 1;
}

/* High-specificity light checkout consent override, without touching dark theme. */
html[data-theme="light"] section#custom.custom-order form.order-form > label.legal-consent.wide,
html[data-theme="light"] section#custom.custom-order form.order-form > label.legal-consent.wide span {
  color: var(--text-secondary);
  opacity: 1;
}

html[data-theme="light"] section#custom.custom-order form.order-form > label.legal-consent.wide a {
  color: var(--accent-hover);
  opacity: 1;
}

/* Scoped exception: base consent color is !important, so light checkout must override it explicitly. */
html[data-theme="light"] section#custom.custom-order form.order-form > label.legal-consent.wide,
html[data-theme="light"] section#custom.custom-order form.order-form > label.legal-consent.wide span,
html[data-theme="light"] .cart-order-form label.legal-consent,
html[data-theme="light"] .cart-order-form label.legal-consent span {
  color: var(--text-secondary) !important;
  opacity: 1;
}

html[data-theme="light"] section#custom.custom-order form.order-form > label.legal-consent.wide a,
html[data-theme="light"] .cart-order-form label.legal-consent a {
  color: var(--accent-hover) !important;
  opacity: 1;
}

/* Segmented control: one moving active capsule, no per-label background. */
.fulfillment-switch {
  --segmented-active-bg: var(--accent);
  --segmented-active-fg: var(--ink);
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 42px;
  min-height: 42px;
  border-radius: 999px;
  overflow: hidden;
}

.fulfillment-switch::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: var(--segmented-active-bg);
  transform: translateX(0);
  transition: transform 180ms ease, background-color 180ms ease;
}

.fulfillment-toggle:has(input[value="pickup"]:checked) .fulfillment-switch::before {
  transform: translateX(100%);
}

.fulfillment-switch label,
.fulfillment-switch label:has(input:checked),
html[data-theme="light"] .fulfillment-switch label,
html[data-theme="light"] .fulfillment-switch label:has(input:checked),
html[data-theme="light"] #custom .fulfillment-switch label,
html[data-theme="light"] #custom .fulfillment-switch label:has(input:checked),
html[data-theme="light"] .cart-order-form .fulfillment-switch label,
html[data-theme="light"] .cart-order-form .fulfillment-switch label:has(input:checked) {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 40px;
  background: transparent;
  box-shadow: none;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.fulfillment-switch label span {
  position: relative;
  z-index: 1;
}

.fulfillment-switch label:focus-within {
  outline: 0;
}

.fulfillment-switch:focus-within {
  box-shadow: 0 0 0 3px rgba(182, 165, 139, 0.16);
}

html[data-theme="light"] .fulfillment-switch {
  --segmented-active-bg: var(--accent);
  --segmented-active-fg: #FFFFFF;
  border-color: var(--border);
  background: var(--surface-soft, var(--surface-secondary));
}

html[data-theme="light"] .fulfillment-toggle:has(input[value="pickup"]:checked) .fulfillment-switch {
  border-color: var(--border);
  background: var(--surface-soft, var(--surface-secondary));
  box-shadow: none;
}

html[data-theme="light"] .fulfillment-switch::before {
  background: var(--segmented-active-bg);
  box-shadow: 0 8px 20px rgba(51, 139, 140, 0.18);
}

html[data-theme="light"] .fulfillment-switch label:not(:has(input:checked)),
html[data-theme="light"] #custom .fulfillment-switch label:not(:has(input:checked)),
html[data-theme="light"] .cart-order-form .fulfillment-switch label:not(:has(input:checked)) {
  color: var(--text-primary);
}

html[data-theme="light"] .fulfillment-switch label:has(input:checked),
html[data-theme="light"] #custom .fulfillment-switch label:has(input:checked),
html[data-theme="light"] .cart-order-form .fulfillment-switch label:has(input:checked) {
  color: var(--segmented-active-fg);
}

html[data-theme="light"] .fulfillment-switch:focus-within {
  box-shadow: var(--focus-ring);
}

/* Keep fulfillment radio inputs hidden from stronger light checkout input rules. */
html[data-theme="light"] #custom .order-form .fulfillment-switch input[type="radio"],
html[data-theme="light"] .cart-order-form .fulfillment-switch input[type="radio"] {
  width: 1px;
  height: 1px;
  min-width: 1px;
  min-height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: transparent;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
}

/* Light header brand contrast only. */
html[data-theme="light"] .site-header .brand span {
  color: #000000;
  font-weight: 560;
}


/* Targeted light-theme contrast refinements for checkout and corporate copy. */
html[data-theme="light"] #custom .custom-copy p {
  color: #55615E;
  opacity: 1;
}

html[data-theme="light"] #custom .order-form input:not([type="radio"]):not([type="hidden"]),
html[data-theme="light"] #custom .order-form textarea,
html[data-theme="light"] #custom .order-form select,
html[data-theme="light"] #custom .custom-select-button,
html[data-theme="light"] #custom .custom-select-button [data-select-value],
html[data-theme="light"] #custom input[type="date"]::-webkit-datetime-edit,
html[data-theme="light"] #custom input[type="date"]::-webkit-datetime-edit-fields-wrapper,
html[data-theme="light"] #custom input[type="date"]::-webkit-datetime-edit-text,
html[data-theme="light"] #custom input[type="date"]::-webkit-datetime-edit-month-field,
html[data-theme="light"] #custom input[type="date"]::-webkit-datetime-edit-day-field,
html[data-theme="light"] #custom input[type="date"]::-webkit-datetime-edit-year-field {
  color: #2F3936;
  opacity: 1;
}

html[data-theme="light"] #corporate .info-text-copy p {
  color: #4C5754;
  opacity: 1;
}

/* Unified light-theme turquoise accent text replacing gold/beige text. */
html[data-theme="light"] {
  --accent-text: #4AA6A7;
  --label: var(--accent-text);
  --label-strong: var(--accent-text);
  --label-color: var(--accent-text);
  --label-color-strong: var(--accent-text);
  --promo-light-title: var(--accent-text);
  --promo-light-copy: var(--accent-text);
}

html[data-theme="light"] .eyebrow,
html[data-theme="light"] .hero-eyebrow,
html[data-theme="light"] .order-form label,
html[data-theme="light"] .cart-order-form label,
html[data-theme="light"] .order-form label span,
html[data-theme="light"] .cart-order-form label span,
html[data-theme="light"] .fulfillment-toggle legend,
html[data-theme="light"] .site-search label span,
html[data-theme="light"] #custom .order-form label,
html[data-theme="light"] #custom .order-form label span,
html[data-theme="light"] #custom .fulfillment-toggle legend,
html[data-theme="light"] #order .order-form label,
html[data-theme="light"] #order .order-form label span,
html[data-theme="light"] #order .fulfillment-toggle legend,
html[data-theme="light"] .cart-fulfillment-toggle legend,
html[data-theme="light"] .pickup-info span,
html[data-theme="light"] #promotions .promo-card p,
html[data-theme="light"] #promotions .promo-card h3,
html[data-theme="light"] #promotions .promo-card span {
  color: var(--accent-text);
}

html[data-theme="light"] .order-form label:focus-within span,
html[data-theme="light"] .cart-order-form label:focus-within span,
html[data-theme="light"] #custom .order-form label:focus-within,
html[data-theme="light"] #custom .order-form label:focus-within span,
html[data-theme="light"] #order .order-form label:focus-within span {
  color: var(--accent-text);
}

/* Checkout segment contrast and slightly calmer decorative headings. */
.fulfillment-switch {
  --segmented-active-fg: #173A3A;
}

.fulfillment-switch label:has(input:checked),
html[data-theme="light"] .fulfillment-switch label:has(input:checked),
html[data-theme="light"] #custom .fulfillment-switch label:has(input:checked),
html[data-theme="light"] .cart-order-form .fulfillment-switch label:has(input:checked) {
  color: var(--segmented-active-fg);
}

h2 {
  font-size: clamp(31px, 3.6vw, 52px);
  line-height: 1.1;
}

@media (max-width: 620px) {
  h2 {
    font-size: clamp(27px, 9vw, 36px);
    line-height: 1.1;
  }

  .checkout-header h2 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.08;
  }
}

/* Scoped small-text typography consistency for corporate/care blocks. */
#corporate .eyebrow,
#care .eyebrow {
  font-weight: 620;
  line-height: 1.25;
  letter-spacing: 0.12em;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

#care .care-video-title {
  font-weight: 620;
  line-height: 1.4;
  letter-spacing: 0.02em;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* Match corporate description and care rules typography density. */
#corporate .info-text-copy p,
#care .care-rule-group ul,
#care .care-rule-group li {
  font-weight: 620;
  line-height: 1.62;
  letter-spacing: 0;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* Match checkout, corporate and care description typography. */
#custom .custom-copy p,
#corporate .info-text-copy p,
#care .care-rule-group ul,
#care .care-rule-group li {
  font-weight: 620;
  line-height: 1.62;
  letter-spacing: 0.012em;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* Dark-theme density match for corporate description and care rules. */
html[data-theme="dark"] #corporate .info-text-copy p,
html[data-theme="dark"] #care .care-rule-group ul,
html[data-theme="dark"] #care .care-rule-group li {
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 620;
  line-height: 1.62;
  letter-spacing: 0.012em;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

@media (max-width: 620px) {
  html[data-theme="dark"] #corporate .info-text-copy p,
  html[data-theme="dark"] #care .care-rule-group ul,
  html[data-theme="dark"] #care .care-rule-group li {
    font-size: 16px;
  }
}

/* Softer readable active capsule for fulfillment switch. */
.fulfillment-switch {
  --segmented-active-bg: #CFEDEC;
  --segmented-active-fg: #123635;
}

/* Keep the softer fulfillment switch capsule only in light theme; restore dark theme. */
html[data-theme="light"] .fulfillment-switch {
  --segmented-active-bg: #CFEDEC;
  --segmented-active-fg: #123635;
}

html[data-theme="dark"] .fulfillment-switch {
  --segmented-active-bg: var(--accent);
  --segmented-active-fg: #173A3A;
}

/* Slightly open up order form field labels. */
#custom .order-form label,
#custom .order-form label span,
#custom .fulfillment-toggle legend,
.cart-order-form label,
.cart-order-form label span,
.cart-fulfillment-toggle legend {
  letter-spacing: 0.055em;
}

/* Ensure dynamic date labels use the same tracking as order labels. */
#custom .order-form [data-date-label],
.cart-order-form [data-date-label] {
  letter-spacing: 0.055em;
}

/* Make dynamic date field labels visually match neighboring order labels. */
#custom .order-form [data-date-label],
.cart-order-form [data-date-label] {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: 0.055em;
  text-transform: inherit;
}

/* Theme transition via View Transitions. */
html.theme-reveal::before {
  content: none !important;
  animation: none !important;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

html.theme-reveal::view-transition-old(root) {
  animation: themeOldFade 850ms ease both;
}

html.theme-reveal::view-transition-new(root) {
  animation: themeNewReveal 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
  clip-path: circle(0 at var(--theme-reveal-x, 50vw) var(--theme-reveal-y, 50vh));
}

@keyframes themeNewReveal {
  from {
    clip-path: circle(0 at var(--theme-reveal-x, 50vw) var(--theme-reveal-y, 50vh));
  }

  to {
    clip-path: circle(150vmax at var(--theme-reveal-x, 50vw) var(--theme-reveal-y, 50vh));
  }
}

@keyframes themeOldFade {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.92;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 1ms;
  }
}
/* Light hero video clarity: reduce wash over the flower. */
html[data-theme="light"] .hero-media video {
  opacity: 0.94;
  filter: saturate(1.04) contrast(1.06) brightness(1.01);
  mix-blend-mode: normal;
}

html[data-theme="light"] .hero-media::before {
  opacity: 0.42;
}

html[data-theme="light"] .hero-media::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.38) 48%, rgba(255, 255, 255, 0.08)),
    linear-gradient(0deg, rgba(247, 249, 248, 0.46), rgba(247, 249, 248, 0.04) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 32%);
}



/* Header horizontal logo: theme-aware replacement for old round mark + text. */
.site-header .brand {
  justify-self: center;
  display: inline-grid;
  width: clamp(215px, 20vw, 255px);
  max-width: calc(100vw - 240px);
  min-width: 0;
  padding: 0;
  gap: 0;
  align-items: center;
  justify-items: center;
  color: inherit;
  font-size: 0;
  line-height: 0;
  text-align: center;
  text-shadow: none;
  text-transform: none;
}

.site-header .brand img.brand-logo {
  grid-area: 1 / 1;
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: contain;
  box-shadow: none !important;
  transform: none !important;
  transition: opacity 220ms ease;
}

.site-header .brand:hover .brand-logo {
  box-shadow: none !important;
  transform: none !important;
}

.site-header .brand-logo-light {
  opacity: 0;
  visibility: hidden;
}

.site-header .brand-logo-dark {
  opacity: 1;
  visibility: visible;
}

html[data-theme="light"] .site-header .brand-logo-light {
  opacity: 1;
  visibility: visible;
}

html[data-theme="light"] .site-header .brand-logo-dark {
  opacity: 0;
  visibility: hidden;
}

html[data-theme="dark"] .site-header .brand-logo-light {
  opacity: 0;
  visibility: hidden;
}

html[data-theme="dark"] .site-header .brand-logo-dark {
  opacity: 1;
  visibility: visible;
}


@media (max-width: 900px) {
  .site-header .brand {
    width: clamp(175px, 23vw, 215px);
    max-width: calc(100vw - 210px);
  }
}

@media (max-width: 620px) {
  .site-header .brand {
    width: clamp(128px, 36vw, 154px);
    max-width: calc(100vw - 165px);
  }
}

@media (max-width: 430px) {
  .site-header .brand {
    width: clamp(124px, 34vw, 144px);
    max-width: calc(100vw - 165px);
  }
}

@media (max-width: 360px) {
  .site-header .brand {
    width: clamp(118px, 32vw, 134px);
    max-width: calc(100vw - 165px);
  }
}
.legal-header {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.legal-header .brand {
  grid-column: 2;
  grid-row: 1;
}

.legal-header .main-nav {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.legal-header .theme-switcher {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}
/* Light cart checkout form: match main checkout form and keep consent checkbox clickable. */
html[data-theme="light"] .cart-order-form label,
html[data-theme="light"] .cart-order-form label span,
html[data-theme="light"] .cart-fulfillment-toggle legend {
  color: var(--label) !important;
  opacity: 1;
}

html[data-theme="light"] .cart-order-form label:focus-within,
html[data-theme="light"] .cart-order-form label:focus-within span,
html[data-theme="light"] .cart-fulfillment-toggle legend {
  color: var(--label-strong) !important;
}

html[data-theme="light"] .cart-order-form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]),
html[data-theme="light"] .cart-order-form textarea,
html[data-theme="light"] .cart-order-form select,
html[data-theme="light"] .cart-order-form .custom-select-button {
  border-color: var(--border) !important;
  color: var(--input-text) !important;
  background: var(--surface) !important;
  opacity: 1;
}

html[data-theme="light"] .cart-order-form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):focus,
html[data-theme="light"] .cart-order-form textarea:focus,
html[data-theme="light"] .cart-order-form select:focus,
html[data-theme="light"] .cart-order-form .custom-select-button:focus,
html[data-theme="light"] .cart-order-form .custom-select.open .custom-select-button {
  border-color: var(--accent) !important;
  color: var(--input-text) !important;
  background: var(--surface) !important;
  box-shadow: var(--focus-ring) !important;
  opacity: 1;
}

html[data-theme="light"] .cart-order-form input::placeholder,
html[data-theme="light"] .cart-order-form textarea::placeholder {
  color: var(--placeholder) !important;
  opacity: 1;
}

html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-datetime-edit,
html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-datetime-edit-fields-wrapper,
html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-datetime-edit-text,
html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-datetime-edit-month-field,
html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-datetime-edit-day-field,
html[data-theme="light"] .cart-order-form input[type="date"]::-webkit-datetime-edit-year-field {
  color: var(--input-text) !important;
}

html[data-theme="light"] .cart-order-form input:-webkit-autofill,
html[data-theme="light"] .cart-order-form input:-webkit-autofill:hover,
html[data-theme="light"] .cart-order-form input:-webkit-autofill:focus,
html[data-theme="light"] .cart-order-form textarea:-webkit-autofill,
html[data-theme="light"] .cart-order-form textarea:-webkit-autofill:hover,
html[data-theme="light"] .cart-order-form textarea:-webkit-autofill:focus,
html[data-theme="light"] .cart-order-form select:-webkit-autofill,
html[data-theme="light"] .cart-order-form select:-webkit-autofill:hover,
html[data-theme="light"] .cart-order-form select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--input-text) !important;
  box-shadow: 0 0 0 1000px var(--surface) inset !important;
  caret-color: var(--input-text) !important;
}

html[data-theme="light"] .cart-order-form label.legal-consent,
html[data-theme="light"] .cart-order-form label.legal-consent span {
  color: var(--text-secondary) !important;
  opacity: 1;
}

html[data-theme="light"] .cart-order-form label.legal-consent input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  position: relative;
  display: block;
  width: 21px !important;
  min-width: 21px !important;
  max-width: 21px !important;
  height: 21px !important;
  min-height: 21px !important;
  max-height: 21px !important;
  margin: 0;
  border: 1px solid rgba(74, 166, 167, 0.36) !important;
  border-radius: 6px;
  background: var(--surface-secondary) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 8px 18px rgba(21, 56, 52, 0.06) !important;
  cursor: pointer;
  opacity: 1 !important;
  pointer-events: auto !important;
}

html[data-theme="light"] .cart-order-form label.legal-consent input[type="checkbox"]::before {
  border-color: #ffffff !important;
}

html[data-theme="light"] .cart-order-form label.legal-consent input[type="checkbox"]:checked {
  border-color: var(--accent) !important;
  background: var(--accent) !important;
  box-shadow: 0 0 0 4px rgba(74, 166, 167, 0.10), 0 10px 22px rgba(21, 56, 52, 0.10) !important;
}

html[data-theme="light"] .cart-order-form label.legal-consent input[type="checkbox"]:checked::before {
  opacity: 1 !important;
  transform: translate(-50%, -58%) rotate(-45deg) scale(1) !important;
}

html[data-theme="light"] .cart-order-form label.legal-consent input[type="checkbox"]:focus-visible {
  border-color: var(--accent) !important;
  box-shadow: var(--focus-ring) !important;
}

html[data-theme="light"] .cart-order-form label.legal-consent a {
  color: var(--accent-hover) !important;
  opacity: 1;
}


/* Theme header artwork v2. */
:root {
  --header-bg-image: image-set(url("darkheader.webp") type("image/webp"), url("darkheader.png") type("image/png"));
  --header-height: clamp(72px, 5.2vw, 88px);
  --header-inline-padding: clamp(14px, 2.7vw, 38px);
  --header-action-gap: clamp(6px, 0.8vw, 12px);
  --header-button-size: clamp(40px, 3vw, 46px);
  --header-logo-width: clamp(190px, 21vw, 300px);
  --header-logo-height: clamp(46px, 4vw, 62px);
}

html[data-theme="light"] {
  --header-bg-image: image-set(url("lightheader.webp") type("image/webp"), url("lightheader.png") type("image/png"));
}

html[data-theme="dark"] {
  --header-bg-image: image-set(url("darkheader.webp") type("image/webp"), url("darkheader.png") type("image/png"));
}

.site-header {
  position: fixed !important;
  top: max(12px, env(safe-area-inset-top)) !important;
  left: 50% !important;
  z-index: 120 !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  grid-template-areas:
    "menu brand actions"
    "nav nav nav"
    "search search search" !important;
  align-items: center !important;
  gap: 0 !important;
  width: min(1180px, calc(100% - 32px)) !important;
  min-height: var(--header-height) !important;
  height: var(--header-height) !important;
  margin: 0 !important;
  padding: 0 var(--header-inline-padding) !important;
  border: 0 !important;
  border-radius: 999px !important;
  background-color: rgba(8, 10, 9, 0.48) !important;
  background-image: var(--header-bg-image) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22) !important;
  transform: translateX(-50%) !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.site-header .menu-toggle {
  grid-area: menu !important;
  justify-self: start !important;
}

.site-header .brand {
  grid-area: brand !important;
  justify-self: center !important;
  display: inline-grid !important;
  place-items: center !important;
  width: var(--header-logo-width) !important;
  min-width: 0 !important;
  height: var(--header-logo-height) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.site-header .brand img.brand-logo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  box-shadow: none !important;
  transform: none !important;
}

.site-header .brand:hover img.brand-logo {
  transform: none !important;
  box-shadow: none !important;
}

.site-header .header-actions {
  grid-area: actions !important;
  justify-self: end !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: var(--header-action-gap) !important;
  min-width: 0 !important;
}

.site-header .main-nav {
  grid-area: nav !important;
}

.site-header .site-search {
  grid-area: search !important;
}

.site-header .menu-toggle,
.site-header .header-search-toggle,
.site-header .theme-toggle,
.site-header .header-cart-button {
  display: grid !important;
  place-items: center !important;
  width: var(--header-button-size) !important;
  min-width: var(--header-button-size) !important;
  max-width: var(--header-button-size) !important;
  height: var(--header-button-size) !important;
  min-height: var(--header-button-size) !important;
  max-height: var(--header-button-size) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  color: var(--ivory) !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  cursor: pointer !important;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease !important;
}

.site-header .header-cart-button {
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  z-index: auto !important;
  gap: 0 !important;
  font-size: 0 !important;
}

.site-header .menu-toggle:hover,
.site-header .header-search-toggle:hover,
.site-header .theme-toggle:hover,
.site-header .header-cart-button:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  transform: none !important;
}

.site-header .menu-toggle:focus-visible,
.site-header .header-search-toggle:focus-visible,
.site-header .theme-toggle:focus-visible,
.site-header .header-cart-button:focus-visible {
  outline: 0 !important;
  box-shadow: 0 0 0 2px rgba(141, 217, 211, 0.72) !important;
}

.site-header .header-search-toggle::before,
.site-header .header-cart-button::before,
.site-header .header-cart-button .cart-icon {
  background: currentColor !important;
}

.site-header .header-search-toggle::before,
.site-header .header-cart-button::before {
  width: calc(var(--header-button-size) * 0.48) !important;
  height: calc(var(--header-button-size) * 0.48) !important;
}

.site-header .theme-toggle-icon {
  width: calc(var(--header-button-size) * 0.46) !important;
  height: calc(var(--header-button-size) * 0.46) !important;
}

.site-header .menu-toggle span {
  width: calc(var(--header-button-size) * 0.38) !important;
  height: 1.5px !important;
  background: currentColor !important;
}

.site-header .header-cart-button .cart-count {
  top: -3px !important;
  right: -3px !important;
  width: 19px !important;
  height: 19px !important;
  min-width: 19px !important;
  border-width: 1px !important;
  font-size: 10px !important;
}

html[data-theme="light"] .site-header {
  background-color: rgba(255, 253, 247, 0.62) !important;
}

html[data-theme="light"] .site-header .menu-toggle,
html[data-theme="light"] .site-header .header-search-toggle,
html[data-theme="light"] .site-header .theme-toggle,
html[data-theme="light"] .site-header .header-cart-button {
  color: #223c38 !important;
  background: transparent !important;
  border: 0 !important;
}

html[data-theme="light"] .site-header .menu-toggle:hover,
html[data-theme="light"] .site-header .header-search-toggle:hover,
html[data-theme="light"] .site-header .theme-toggle:hover,
html[data-theme="light"] .site-header .header-cart-button:hover {
  background: rgba(15, 58, 52, 0.08) !important;
}

@media (min-width: 901px) {
  .site-header .menu-toggle {
    display: grid !important;
  }

  .site-header .main-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 50% !important;
    display: none !important;
    width: min(980px, calc(100vw - 32px)) !important;
    transform: translateX(-50%) !important;
    justify-content: center !important;
  }

  .site-header.nav-open .main-nav {
    display: flex !important;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: clamp(64px, 15vw, 76px);
    --header-inline-padding: clamp(10px, 3vw, 16px);
    --header-action-gap: clamp(3px, 1.3vw, 7px);
    --header-button-size: clamp(36px, 9.5vw, 42px);
    --header-logo-width: clamp(118px, 34vw, 168px);
    --header-logo-height: clamp(36px, 10vw, 48px);
  }

  .site-header {
    top: 8px !important;
    width: calc(100% - 16px) !important;
    margin: 0 !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .site-header .header-actions {
    gap: var(--header-action-gap) !important;
  }

  .legal-header .main-nav {
    display: none !important;
  }
}

@media (max-width: 430px) {
  :root {
    --header-logo-width: clamp(98px, 30vw, 132px);
    --header-button-size: clamp(34px, 9vw, 38px);
    --header-action-gap: 2px;
  }

  .site-header {
    width: calc(100% - 10px) !important;
    padding-inline: 8px !important;
  }
}



/* Legal header placement override for header artwork v2. */
.legal-header {
  grid-template-areas: "nav brand theme" !important;
}

.legal-header .main-nav {
  grid-area: nav !important;
  justify-self: start !important;
}

.legal-header > .theme-switcher {
  grid-area: theme !important;
  justify-self: end !important;
}





/* Header artwork fine tuning. */
:root {
  --header-bg-opacity: 0.64;
  --header-button-y: 0px;
  --header-logo-width: clamp(150px, 15.5vw, 220px);
  --header-logo-height: clamp(28px, 3vw, 40px);
  --header-logo-y: 4px;
}

html[data-theme="light"] {
  --header-bg-opacity: 0.94;
}

html[data-theme="dark"] {
  --header-bg-opacity: 0.54;
}

.site-header {
  isolation: isolate !important;
  background-color: rgba(8, 10, 9, 0.26) !important;
  background-image: none !important;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  border-radius: inherit;
  background-image: var(--header-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--header-bg-opacity);
  pointer-events: none;
}

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

html[data-theme="light"] .site-header {
  background-color: rgba(255, 253, 247, 0.50) !important;
}

.site-header .brand {
  overflow: hidden !important;
}

.site-header .menu-toggle,
.site-header .header-search-toggle,
.site-header .theme-toggle,
.site-header .header-cart-button {
  position: relative !important;
  top: var(--header-button-y) !important;
}

.site-header .menu-toggle:hover,
.site-header .header-search-toggle:hover,
.site-header .theme-toggle:hover,
.site-header .header-cart-button:hover {
  transform: none !important;
}

@media (max-width: 900px) {
  :root {
    --header-bg-opacity: 0.62;
    --header-button-y: 0px;
    --header-logo-width: clamp(90px, 26vw, 124px);
    --header-logo-height: clamp(24px, 7vw, 32px);
    --header-logo-y: 3px;
  }

  html[data-theme="light"] {
    --header-bg-opacity: 0.92;
  }
}

@media (max-width: 430px) {
  :root {
    --header-logo-width: clamp(82px, 25vw, 106px);
    --header-logo-height: clamp(22px, 6.6vw, 30px);
  }
}



/* Header logo vertical alignment fix. */
.site-header .brand {
  transform: translateY(var(--header-logo-y)) !important;
}

/* Header logo: keep the transparent source fully visible. */
.site-header .brand {
  overflow: visible !important;
  transform: none !important;
}

/* Keep header controls visible and centered by their own row alignment. */
.site-header .header-actions {
  align-items: center !important;
}

.site-header .menu-toggle,
.site-header .header-search-toggle,
.site-header .theme-toggle,
.site-header .header-cart-button {
  align-self: center !important;
  margin: 0 !important;
}
/* Header surface is opaque; only the decorative artwork is translucent. */
.site-header {
  background-color: rgb(8, 10, 9) !important;
}

html[data-theme="light"] .site-header {
  background-color: rgb(255, 253, 247) !important;
}

.site-header::before {
  opacity: var(--header-bg-opacity) !important;
}

/* Header screenshot correction: use the complete logo canvas and one shared control axis. */
.site-header .brand {
  align-self: center !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  transform: none !important;
}

.site-header .brand img.brand-logo {
  height: auto !important;
  max-height: calc(var(--header-height) - 12px) !important;
  object-fit: contain !important;
}

.site-header .header-actions {
  align-self: center !important;
  transform: translateY(3px) !important;
}

.site-header .menu-toggle {
  align-self: center !important;
  transform: translateY(3px) !important;
}

.site-header .header-search-toggle,
.site-header .theme-toggle,
.site-header .header-cart-button {
  align-self: center !important;
  position: relative !important;
  top: 0 !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 900px) {
  .site-header .header-actions,
  .site-header .menu-toggle {
    transform: translateY(2px) !important;
  }

  .site-header .brand img.brand-logo {
    max-height: calc(var(--header-height) - 10px) !important;
  }
}

/* Canonical responsive header layout. */
.site-header {
  grid-template-areas: "menu brand actions" !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  grid-template-rows: minmax(0, 1fr) !important;
  align-content: center !important;
}

.site-header .menu-toggle,
.site-header .brand,
.site-header .header-actions {
  align-self: center !important;
  transform: none !important;
}

.site-header .main-nav {
  position: fixed !important;
  inset: 0 auto 0 0 !important;
  width: min(430px, 88vw) !important;
  height: 100dvh !important;
  max-height: none !important;
  transform: translate3d(-104%, 0, 0) !important;
}

.site-header.nav-open .main-nav {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate3d(0, 0, 0) !important;
}

.site-header.search-open .site-search {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  left: auto !important;
}

@media (max-width: 900px) {
  .site-header .main-nav {
    width: min(390px, 88vw) !important;
  }

  .site-header.search-open .site-search {
    right: 50% !important;
    width: min(520px, calc(100vw - 20px)) !important;
    transform: translateX(50%) !important;
  }
}

@media (max-width: 360px) {
  :root {
    --header-button-size: 32px;
    --header-logo-width: 82px;
  }
}

/* Keep viewport-fixed header panels relative to the viewport. */
.site-header {
  right: 0 !important;
  left: 0 !important;
  margin-inline: auto !important;
  transform: none !important;
}

/* UI audit: readable light-theme accents and catalog copy. */
html[data-theme="light"] {
  --accent-text: #2d797b;
  --label: var(--accent-text);
  --label-strong: var(--accent-text);
  --label-color: var(--accent-text);
  --label-color-strong: var(--accent-text);
  --promo-light-title: var(--accent-text);
  --promo-light-copy: var(--accent-text);
  --gold-light-theme: var(--accent-text);
  --button-accent: #2d797b;
  --button-accent-hover: #246568;
}

html[data-theme="light"] .catalog-hero p:not(.eyebrow) {
  color: var(--text-secondary);
}

@media (max-width: 620px) {
  .catalog-hero {
    padding: 38px 0 18px;
  }

  .catalog-hero h1 {
    margin-bottom: 16px;
  }

  .catalog-hero p:not(.eyebrow) {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.55;
  }

  .catalog.section {
    padding-block: 40px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .catalog-grid .product-card img,
  .catalog-grid .product-gallery {
    aspect-ratio: 3 / 4;
  }

  .catalog-grid .product-info {
    padding: 10px;
  }

  .catalog-grid .product-info p {
    margin-bottom: 5px;
    font-size: 10px;
    line-height: 1.25;
  }

  .catalog-grid .product-info h3 {
    min-height: 34px;
    margin-bottom: 9px;
    font-size: 14px;
    line-height: 1.2;
  }

  .catalog-grid .product-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
  }

  .catalog-grid .product-bottom span {
    font-size: 14px;
    line-height: 1.2;
  }

  .catalog-grid .product-bottom button {
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 38px;
    padding-inline: 8px;
    font-size: 12px;
  }

  #promotions .promo-card p {
    font-size: 10.5px;
  }

  #promotions .promo-card span {
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (max-width: 620px) {
  .legal-header .theme-menu {
    right: 0;
  }
}

html[data-theme="light"] {
  --placeholder: #66716e;
  --placeholder-color: var(--placeholder);
}

html[data-theme="light"] .product-bottom span {
  color: var(--accent-text);
}


/* Optional cart extras */
.cart-addons[hidden] {
  display: none !important;
}

.cart-addons {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(244, 239, 230, 0.08), rgba(244, 239, 230, 0.035));
}

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

.cart-addons-heading h3 {
  margin: 2px 0 0;
  font-family: var(--display-font);
  font-size: 24px;
  font-weight: 500;
}

.cart-addons-kicker,
.cart-addons-optional {
  color: var(--stone);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cart-addons-optional {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.cart-addons-intro {
  margin: 8px 0 14px;
  color: rgba(244, 239, 230, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.cart-addon-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(154px, 58%);
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.cart-addon-card {
  display: grid;
  grid-template-rows: 104px auto auto;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, 0.14);
  border-radius: 12px;
  background: rgba(8, 10, 9, 0.34);
  scroll-snap-align: start;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.cart-addon-card.is-selected {
  border-color: rgba(116, 196, 187, 0.72);
  background: rgba(72, 142, 133, 0.14);
}

.cart-addon-card > img,
.cart-addon-placeholder {
  width: 100%;
  height: 104px;
  object-fit: cover;
  background: rgba(244, 239, 230, 0.07);
}

.cart-addon-placeholder,
.cart-item-placeholder {
  display: grid;
  place-items: center;
  color: rgba(244, 239, 230, 0.52);
  font-family: var(--display-font);
  font-size: 30px;
}

.cart-addon-copy {
  padding: 11px 11px 8px;
}

.cart-addon-copy > span {
  color: var(--stone);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cart-addon-copy h4 {
  margin: 3px 0 0;
  color: var(--ivory);
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 500;
}

.cart-addon-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 6px 0 0;
  color: rgba(244, 239, 230, 0.62);
  font-size: 11px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-addon-card > button {
  align-self: end;
  min-height: 38px;
  margin: 0 10px 10px;
  padding: 7px 9px;
  border: 1px solid rgba(244, 239, 230, 0.22);
  border-radius: 8px;
  color: var(--ivory);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.cart-addon-card.is-selected > button {
  border-color: rgba(116, 196, 187, 0.54);
  color: #dff8f3;
  background: rgba(72, 142, 133, 0.22);
}

.cart-item-placeholder {
  width: 72px;
  height: 88px;
  border-radius: 6px;
  background: var(--forest-2);
}

.cart-item-addon {
  border-color: rgba(116, 196, 187, 0.28);
}

.cart-item-note {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  color: var(--stone);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-item-note textarea {
  width: 100%;
  min-height: 62px;
  resize: vertical;
  padding: 9px 10px;
  border: 1px solid rgba(244, 239, 230, 0.2);
  border-radius: 7px;
  color: var(--ivory);
  background: rgba(244, 239, 230, 0.06);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
  outline: none;
}

.cart-item-note textarea:focus {
  border-color: rgba(116, 196, 187, 0.72);
}

html[data-theme="light"] .cart-addons {
  border-color: var(--border);
  background: linear-gradient(145deg, #f8fbfa, #f2f7f5);
}

html[data-theme="light"] .cart-addons-kicker,
html[data-theme="light"] .cart-addons-optional,
html[data-theme="light"] .cart-addon-copy > span,
html[data-theme="light"] .cart-item-note {
  color: var(--text-secondary);
}

html[data-theme="light"] .cart-addons-optional,
html[data-theme="light"] .cart-addon-card {
  border-color: var(--border);
}

html[data-theme="light"] .cart-addons-intro,
html[data-theme="light"] .cart-addon-copy p {
  color: var(--text-secondary);
}

html[data-theme="light"] .cart-addon-card {
  background: #ffffff;
}

html[data-theme="light"] .cart-addon-card.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

html[data-theme="light"] .cart-addon-copy h4,
html[data-theme="light"] .cart-addon-card > button {
  color: var(--text-primary);
}

html[data-theme="light"] .cart-addon-card > button {
  border-color: var(--border-strong);
}

html[data-theme="light"] .cart-addon-card.is-selected > button {
  border-color: var(--accent);
  color: var(--accent-hover);
  background: rgba(51, 139, 140, 0.10);
}

html[data-theme="light"] .cart-addon-placeholder,
html[data-theme="light"] .cart-item-placeholder {
  color: var(--accent);
  background: #edf5f3;
}

html[data-theme="light"] .cart-item-addon {
  border-color: rgba(51, 139, 140, 0.32);
}

html[data-theme="light"] .cart-item-note textarea {
  border-color: var(--border);
  color: var(--input-text);
  background: var(--input-bg);
}

@media (max-width: 520px) {
  .cart-addons {
    margin-inline: -2px;
    padding: 14px;
  }

  .cart-addon-list {
    grid-auto-columns: minmax(148px, 72%);
  }

  .cart-item-placeholder {
    width: 62px;
    height: 78px;
  }
}
