:root {
  --paper: #f3efe9;
  --paper-strong: #fffaf2;
  --ink: #18171b;
  --muted: #68616a;
  --line: #d8cec3;
  --deep: #101419;
  --deep-soft: #1c2229;
  --plum: #7a274d;
  --plum-strong: #5b1735;
  --sage: #526d5b;
  --sage-soft: #dfe8df;
  --amber: #b67834;
  --amber-soft: #edd8b5;
  --rose-soft: #f3e2e6;
  --blue-soft: #e1ebf3;
  --shadow: 0 18px 52px rgba(16, 20, 25, 0.18);
  --soft-shadow: 0 10px 28px rgba(16, 20, 25, 0.1);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.cart-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  clip: auto;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(243, 239, 233, 0.92);
  border-bottom: 1px solid rgba(216, 206, 195, 0.72);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--container), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.86rem;
}

.brand-name {
  font-size: 1.04rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--ink);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  scrollbar-width: none;
}

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

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

.main-nav a,
.nav-trigger {
  padding: 9px 11px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font-size: 0.94rem;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-trigger.is-active {
  background: rgba(82, 109, 91, 0.1);
  color: var(--ink);
  outline: 0;
}

.mega-menu {
  border-top: 1px solid rgba(216, 206, 195, 0.72);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 16px 34px rgba(16, 20, 25, 0.12);
}

.mega-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
}

.mega-panel {
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.mega-panel.is-active {
  display: grid;
}

.mega-panel a {
  display: grid;
  min-height: 86px;
  align-content: start;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
}

.mega-panel a:hover,
.mega-panel a:focus-visible {
  border-color: var(--plum);
  outline: 0;
}

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

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

.header-search {
  position: relative;
}

.header-search input,
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.header-search input {
  width: 230px;
  height: 42px;
  padding: 0 12px;
}

.header-search input:focus,
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(110, 47, 73, 0.12);
}

.desktop-search-results {
  position: absolute;
  z-index: 80;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  width: min(390px, calc(100vw - 24px));
  max-height: min(440px, 70vh);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.desktop-search-results a {
  display: grid;
  min-height: 58px;
  align-content: center;
  gap: 2px;
  padding: 9px 13px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.desktop-search-results a:hover,
.desktop-search-results a:focus-visible {
  background: var(--rose-soft);
  outline: 0;
}

.desktop-search-results a:last-child {
  border-bottom: 0;
}

.desktop-search-results a span {
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.desktop-search-results a strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.desktop-search-results .desktop-search-all {
  min-height: 48px;
  background: var(--rose-soft);
  color: var(--plum-strong);
  font-weight: 850;
}

.desktop-search-empty {
  padding: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.icon-button {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--ink);
  outline: 0;
}

.cart-button {
  position: relative;
}

.cart-symbol {
  display: block;
  width: 21px;
  height: 21px;
  font-size: 0;
  line-height: 1;
}

.cart-symbol::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='8' cy='21' r='1'/%3E%3Ccircle cx='19' cy='21' r='1'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='8' cy='21' r='1'/%3E%3Ccircle cx='19' cy='21' r='1'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.cart-count {
  position: absolute;
  right: -7px;
  top: -7px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: var(--plum);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  border-bottom: 1px solid rgba(16, 20, 25, 0.18);
  background: var(--deep);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("../images/hero-luxury-perfume-1672.jpg");
  background-image: image-set(
    url("../images/hero-luxury-perfume-1672.webp") type("image/webp"),
    url("../images/hero-luxury-perfume-1672.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center right;
  filter: saturate(1.04) contrast(1.03);
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 48%, rgba(226, 171, 104, 0.16) 0%, rgba(226, 171, 104, 0) 36%),
    linear-gradient(90deg, rgba(24, 21, 24, 0.9) 0%, rgba(41, 34, 38, 0.74) 40%, rgba(41, 34, 38, 0.16) 76%),
    linear-gradient(0deg, rgba(24, 21, 24, 0.32), rgba(24, 21, 24, 0.08));
}

.hero-inner {
  position: relative;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 84px;
}

.hero-copy {
  max-width: min(620px, 100%);
  min-width: 0;
  color: #fffaf2;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--plum);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c8d6;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 4.1rem;
  line-height: 0.98;
  font-weight: 850;
}

h2 {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 1.15rem;
  overflow-wrap: break-word;
}

.hero-actions,
.catalog-controls,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.button-primary {
  background: var(--plum);
  color: #fff;
  box-shadow: 0 12px 24px rgba(110, 47, 73, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--plum-strong);
}

.button-secondary {
  background: rgba(255, 250, 242, 0.12);
  border-color: rgba(255, 250, 242, 0.42);
  color: #fffaf2;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  border-color: rgba(255, 250, 242, 0.78);
}

.full-width {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin-top: 34px;
}

.hero-metrics span {
  min-height: 72px;
  padding: 13px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.1);
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.86rem;
}

.hero-metrics strong {
  display: block;
  color: #fffaf2;
  font-size: 1.2rem;
}

.campaign-hero {
  width: min(var(--container), calc(100% - 32px));
  margin: 22px auto 0;
}

.campaign-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 14px;
  height: 430px;
  min-height: 0;
}

.campaign-feature,
.campaign-promo-card {
  border: 1px solid rgba(216, 206, 195, 0.84);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.campaign-feature {
  background: var(--deep);
  color: #fffaf2;
}

.campaign-feature-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 0;
}

.campaign-feature-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 14px;
  width: min(470px, 100%);
  height: 100%;
  padding: 28px;
  background: linear-gradient(90deg, rgba(16, 20, 25, 0.94) 0%, rgba(16, 20, 25, 0.82) 72%, rgba(16, 20, 25, 0) 100%);
}

.campaign-feature-copy .eyebrow {
  margin-bottom: 0;
  color: #f0c8d6;
}

.campaign-feature-copy h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.02;
}

.campaign-feature-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 1rem;
}

.campaign-feature-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 4px;
}

.campaign-feature-actions span {
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.92rem;
  font-weight: 800;
}

.campaign-feature-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  background: rgba(255, 250, 242, 0.08);
}

.campaign-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.campaign-feature-media span {
  position: absolute;
  z-index: 2;
  right: 14px;
  top: 14px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.92);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.campaign-feature.theme-sage {
  background: linear-gradient(145deg, #24342b 0%, #526d5b 100%);
}

.campaign-feature.theme-amber {
  background: linear-gradient(145deg, #2e2419 0%, #8f5f25 100%);
}

.campaign-feature.theme-ink {
  background: linear-gradient(145deg, #101419 0%, #28313a 100%);
}

.campaign-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 0;
}

.campaign-promo-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  min-height: 0;
  border-color: rgba(216, 206, 195, 0.92);
  background: var(--deep);
  color: #fffaf2;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.campaign-promo-card.is-active {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(122, 39, 77, 0.12), var(--soft-shadow);
}

.campaign-promo-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 20, 25, 0.02) 0%, rgba(16, 20, 25, 0.22) 42%, rgba(16, 20, 25, 0.82) 100%),
    linear-gradient(90deg, rgba(16, 20, 25, 0.45), rgba(16, 20, 25, 0.04));
}

.campaign-promo-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  background: var(--deep);
  transform: scale(1.02);
}

.campaign-promo-card span {
  color: #f0c8d6;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-promo-card strong {
  color: #fffaf2;
  font-size: 0.98rem;
  line-height: 1.08;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.campaign-promo-card small {
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.campaign-promo-card.theme-sage span {
  color: #dfe8df;
}

.campaign-promo-card.theme-amber span {
  color: #edd8b5;
}

.campaign-promo-card.theme-ink span {
  color: #dbe5ee;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.trust-strip-inner {
  width: min(var(--container), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.trust-strip span {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-left: 3px solid var(--amber);
  padding-left: 12px;
  color: var(--ink);
  font-weight: 800;
}

.deal-belt,
.finder-section,
.advisor-section,
.category-band,
.catalog-section,
.bundle-section,
.trust-section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0;
}

.finder-section {
  padding-top: 46px;
}

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

.finder-card {
  display: grid;
  min-height: 136px;
  align-content: end;
  gap: 8px;
  border: 1px solid rgba(216, 206, 195, 0.9);
  border-radius: var(--radius);
  padding: 15px;
  background: linear-gradient(145deg, #fffaf2 0%, #ece3d7 100%);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}

.finder-card:nth-child(2) {
  background: linear-gradient(145deg, #edf1ef 0%, #d7e1dc 100%);
}

.finder-card:nth-child(3) {
  background: linear-gradient(145deg, #eee6f0 0%, #dcd2e2 100%);
}

.finder-card:nth-child(4) {
  background: linear-gradient(145deg, #ead5b4 0%, #f4e7d5 100%);
}

.finder-card:nth-child(5) {
  background: linear-gradient(145deg, #e2e9ee 0%, #f8f4ec 100%);
}

.finder-card:nth-child(6) {
  background: linear-gradient(145deg, #f1dce2 0%, #fff4e6 100%);
}

.finder-card:hover,
.finder-card:focus-visible {
  border-color: var(--plum);
  outline: 0;
}

.finder-card span {
  font-size: 1.2rem;
  font-weight: 850;
}

.finder-card strong {
  color: rgba(24, 23, 27, 0.68);
  font-size: 0.9rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.text-link {
  color: var(--plum);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  outline: 0;
}

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

.deal-strip-count-1 {
  grid-template-columns: minmax(0, 560px);
}

.deal-strip-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

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

.deal-card,
.product-card,
.bundle-card,
.trust-item,
.recommendation-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--soft-shadow);
}

.deal-card {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  min-height: 144px;
  padding: 12px;
}

.deal-card img {
  width: 94px;
  height: 120px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--sage-soft);
}

.deal-card small,
.product-brand,
.product-meta,
.recommendation-card p,
.bundle-card p,
.trust-item span {
  color: var(--muted);
}

.deal-card strong {
  display: block;
  margin: 3px 0 8px;
  line-height: 1.2;
}

.deal-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  margin-top: 10px;
}

.deal-actions .mini-button {
  min-height: 34px;
  padding: 0 9px;
  font-size: 0.85rem;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.price {
  color: var(--plum);
  font-weight: 850;
}

.old-price {
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: line-through;
}

.advisor-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.advisor-panel {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 22px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--deep) 0%, #241923 100%);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.advisor-copy p:last-child {
  color: rgba(251, 250, 246, 0.76);
}

.advisor-panel .eyebrow {
  color: #f0c8d6;
}

.advisor-steps {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.advisor-steps span {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(251, 250, 246, 0.84);
}

.advisor-steps strong {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.14);
  color: #fffaf2;
}

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

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

.field span,
.chip-field legend {
  color: rgba(251, 250, 246, 0.88);
  font-size: 0.9rem;
  font-weight: 750;
}

.field textarea,
.field select {
  min-height: 46px;
  padding: 11px 12px;
  resize: vertical;
}

.field textarea {
  min-height: 118px;
}

.chip-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.chip-field legend {
  margin-bottom: 8px;
}

.choice-chip,
.filter-button {
  min-height: 38px;
  border: 1px solid rgba(222, 216, 209, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 0 12px;
  font-weight: 750;
  cursor: pointer;
}

.choice-chip.is-selected,
.filter-button.is-active {
  border-color: var(--plum);
  background: var(--plum);
  color: #fff;
}

.choice-chip:focus-visible,
.filter-button:focus-visible,
.category-tile:focus-visible {
  outline: 3px solid rgba(110, 47, 73, 0.22);
  outline-offset: 2px;
}

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

.recommendation-area {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff 0%, #f5f1ec 100%);
  padding: 18px;
}

.recommendation-empty {
  display: grid;
  min-height: 100%;
  place-items: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
}

.empty-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--sage);
  color: #fff;
  font-weight: 850;
}

.recommendation-grid {
  display: grid;
  gap: 12px;
}

.recommendation-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 12px;
}

.recommendation-card img {
  width: 96px;
  height: 120px;
  border-radius: 6px;
  object-fit: cover;
}

.match-score {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 4px 7px;
  border-radius: 6px;
  background: var(--sage-soft);
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 850;
}

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

.category-tile {
  display: grid;
  min-height: 148px;
  align-content: end;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 18px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}

.category-tile span {
  font-size: 1.2rem;
  font-weight: 850;
}

.category-tile strong {
  color: rgba(38, 36, 42, 0.68);
  font-size: 0.92rem;
}

.tile-sweet {
  background: linear-gradient(145deg, #f5dde3 0%, #fff5e8 100%);
}

.tile-fresh {
  background: linear-gradient(145deg, #d9e9ec 0%, #f4fbf7 100%);
}

.tile-woody {
  background: linear-gradient(145deg, #e9ddcf 0%, #f5f0eb 100%);
}

.tile-arab {
  background: linear-gradient(145deg, #efe0c1 0%, #f8edf1 100%);
}

.category-tile:hover {
  border-color: rgba(38, 36, 42, 0.22);
}

.catalog-head {
  align-items: start;
}

.catalog-controls {
  justify-content: flex-end;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1.08;
  background: var(--sage-soft);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-row {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 6px;
  padding: 0 7px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
}

.badge.deal {
  background: var(--plum);
  color: #fff;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}

.product-brand {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-title {
  min-height: 42px;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.22;
}

.product-meta {
  min-height: 24px;
  font-size: 0.88rem;
}

.product-meta-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
  min-height: 34px;
}

.perfume-guide-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.perfume-guide-icon:hover,
.perfume-guide-icon:focus-visible {
  border-color: var(--plum);
  background: var(--rose-soft);
  color: var(--plum-strong);
  outline: 0;
}

.perfume-guide-link {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 3px 11px 3px 3px;
  font-weight: 850;
  text-decoration: none;
}

.perfume-guide-link .perfume-guide-icon {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  background: var(--rose-soft);
}

.perfume-guide-link:hover,
.perfume-guide-link:focus-visible {
  border-color: var(--plum);
  outline: 0;
}

.note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 28px;
}

.note {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 7px;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-card .product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(96px, auto);
  gap: 8px;
  align-items: stretch;
  margin-top: auto;
}

.product-card .product-actions .button,
.product-card .product-actions .mini-button {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  line-height: 1;
  white-space: nowrap;
}

.mini-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 0 11px;
  font-weight: 800;
  cursor: pointer;
}

.mini-link {
  text-decoration: none;
}

.mini-button:hover,
.mini-button:focus-visible {
  border-color: var(--ink);
  outline: 0;
}

.button-compact {
  min-height: 42px;
  border-color: var(--line);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 0 12px;
  box-shadow: none;
}

.product-page {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.product-detail {
  padding: 34px 0 52px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--plum);
  font-weight: 800;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 32px;
  align-items: start;
}

.product-detail-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: contain;
  background: #fff;
  padding: 18px;
}

.product-detail-info {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.badge-row-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-detail-info h1 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.product-detail-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-spec-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 0 10px;
  font-weight: 800;
}

.product-variant-select {
  display: grid;
  gap: 7px;
  max-width: 320px;
}

.product-variant-select span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-variant-select select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.detail-notes {
  min-height: 0;
}

.note-pyramid {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.note-pyramid div {
  display: grid;
  gap: 3px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.note-pyramid strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--muted);
}

.note-pyramid span {
  color: var(--ink);
}

.product-buy-box {
  display: grid;
  gap: 12px;
  max-width: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.product-buy-box .price {
  font-size: 1.55rem;
}

.favorite-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(122, 39, 77, 0.22);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--plum);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.favorite-button:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 39, 77, 0.42);
  background: var(--rose-soft);
}

.favorite-button[aria-pressed="true"] {
  border-color: rgba(122, 39, 77, 0.48);
  background: var(--rose-soft);
}

.favorite-button span {
  font-size: 1.25rem;
  line-height: 1;
}

.product-buy-box p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.product-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.product-info-card h2 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.product-info-card p,
.product-info-card li {
  color: var(--muted);
}

.product-story-scroll {
  max-height: 230px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-gutter: stable;
}

.product-story-scroll p {
  margin-bottom: 0;
}

.product-story-scroll p + p {
  margin-top: 12px;
}

.product-story-scroll::-webkit-scrollbar {
  width: 8px;
}

.product-story-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(88, 74, 84, 0.28);
}

.product-story-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.product-info-card ul {
  margin: 0;
  padding-left: 18px;
}

.product-info-card li + li {
  margin-top: 8px;
}

.related-section {
  padding: 18px 0 88px;
}

.guide-page {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 88px;
}

.guide-hero {
  display: grid;
  min-height: 300px;
  align-items: end;
  padding: 54px 0 34px;
}

.guide-hero div {
  max-width: 760px;
}

.guide-hero h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  line-height: 1.02;
}

.guide-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.guide-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

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

.guide-card,
.guide-term-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.guide-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-weight: 900;
}

.guide-card h3,
.guide-term-grid h3 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: 1.16rem;
}

.guide-card p,
.guide-term-grid p,
.guide-note,
.guide-choice p {
  color: var(--muted);
}

.guide-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: var(--soft-shadow);
}

.guide-table div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.guide-table div:last-child {
  border-bottom: 0;
}

.guide-table strong {
  color: var(--ink);
}

.guide-table span {
  color: var(--muted);
}

.legal-updated {
  margin-top: 16px;
  color: var(--plum);
  font-weight: 800;
}

.legal-page a {
  color: var(--plum);
  font-weight: 750;
}

.legal-copy {
  display: grid;
  gap: 12px;
  max-width: 920px;
  color: var(--muted);
}

.legal-copy p {
  margin: 0;
}

.legal-card-grid,
.legal-process-list {
  display: grid;
  gap: 14px;
}

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

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

.legal-card-grid article,
.legal-process-list article,
.legal-alert {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.legal-card-grid h3,
.legal-process-list h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.legal-card-grid p,
.legal-process-list p,
.legal-alert p {
  margin: 0;
  color: var(--muted);
}

.legal-process-list p + p {
  margin-top: 8px;
}

.legal-alert {
  margin-bottom: 16px;
  border-color: rgba(122, 39, 77, 0.34);
  background: #fff6f8;
}

.legal-alert strong {
  display: block;
  margin-bottom: 8px;
  color: var(--plum-strong);
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(216, 206, 195, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.98);
  padding: 16px;
  box-shadow: var(--shadow);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.guide-note {
  max-width: 820px;
  margin-top: 14px;
}

.guide-term-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.guide-choice div {
  max-width: 820px;
}

.product-loading,
.product-not-found {
  display: grid;
  min-height: 360px;
  align-content: center;
  gap: 14px;
}

.product-not-found {
  max-width: 620px;
}

.checkout-page {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 88px;
}

.checkout-hero {
  min-width: 0;
  max-width: 760px;
  padding: 44px 0 28px;
}

.checkout-hero h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 3rem;
}

.checkout-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: start;
  min-width: 0;
}

.checkout-form {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.checkout-card,
.checkout-summary,
.checkout-result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--soft-shadow);
}

.checkout-card,
.checkout-summary {
  padding: 18px;
  min-width: 0;
}

.checkout-card h2,
.checkout-summary h2 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.light-field span {
  color: var(--ink);
}

.field:has(input[required]) > span::after,
.field:has(textarea[required]) > span::after,
.field:has(select[required]) > span::after,
.required-checkbox > span::after {
  content: " *";
  color: var(--plum);
  font-weight: 900;
}

.required-note {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.light-field {
  min-width: 0;
}

.light-field input,
.light-field textarea,
.light-field select {
  display: block;
  max-width: 100%;
  min-height: 46px;
  padding: 11px 12px;
}

.saved-address-picker {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.saved-address-picker[hidden] {
  display: none;
}

.saved-address-picker .checkout-note {
  margin: 0;
}

.saved-address-select select {
  width: 100%;
}

.wide-field {
  grid-column: 1 / -1;
}

.option-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.option-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.option-row input {
  margin-top: 4px;
}

.option-row span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.option-row strong,
.option-row small {
  min-width: 0;
  max-width: 100%;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.option-row small {
  display: block;
  color: var(--muted);
}

.option-row.is-disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.option-row.is-disabled input,
.option-row.is-disabled span {
  cursor: not-allowed;
}

.checkout-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.checkout-stepper button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  padding: 0 12px;
  text-align: left;
  cursor: pointer;
}

.checkout-stepper span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.checkout-stepper strong {
  overflow: hidden;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-stepper button.is-active {
  border-color: rgba(122, 39, 77, 0.42);
  background: var(--rose-soft);
  color: var(--ink);
}

.checkout-stepper button.is-active span,
.checkout-stepper button.is-complete span {
  background: var(--plum);
  color: #fff;
}

.checkout-step-panel {
  min-width: 0;
}

.checkout-step-panel:not(.is-active),
.checkout-step-panel[hidden] {
  display: none;
}

.checkout-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.checkout-card-head h2 {
  margin-bottom: 0;
}

.checkout-section-title {
  margin: 22px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-section-title h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.checkout-same-row {
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  padding: 12px;
}

.checkout-shipping-address {
  margin-top: 12px;
}

.checkout-note-field {
  margin-top: 14px;
}

.checkout-bank-transfer {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  border: 1px solid rgba(28, 139, 84, 0.24);
  border-radius: var(--radius);
  background: #f2faf4;
  padding: 14px;
}

.checkout-bank-transfer strong {
  color: var(--ink);
}

.checkout-bank-transfer dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.checkout-bank-transfer dl div {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  gap: 8px;
}

.checkout-bank-transfer dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-bank-transfer dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.checkout-bank-transfer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-success-payment {
  margin-top: 4px;
}

.checkout-account-options {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.checkout-marketing-row,
.checkout-create-account {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  padding: 12px;
}

.checkout-create-account {
  display: grid;
  gap: 12px;
}

.checkout-account-fields {
  margin-top: 0;
}

.checkout-legal-row {
  margin-top: 14px;
  border: 1px solid rgba(122, 39, 77, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.checkout-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 18px;
}

.checkout-step-actions .button {
  min-width: 180px;
}

.checkout-step-actions .button:only-child {
  margin-left: auto;
}

.checkout-final-actions {
  align-items: flex-end;
}

.checkout-submit-stack {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.secure-connection {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.secure-lock {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 15px;
  border-radius: 4px;
  background: #5f8f13;
}

.secure-lock::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -9px;
  width: 10px;
  height: 11px;
  border: 3px solid #5f8f13;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.secure-lock::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #5f8f13;
}

.order-submit-button {
  min-width: 182px;
  min-height: 54px;
  gap: 10px;
  border-color: #4d9a16;
  background: #57b51d;
  color: #101419;
  box-shadow: 0 14px 26px rgba(79, 154, 22, 0.22);
  font-size: 1.02rem;
}

.order-submit-button:hover,
.order-submit-button:focus-visible {
  background: #64c926;
  border-color: #57b51d;
}

.order-submit-arrow {
  font-size: 1.45rem;
  line-height: 1;
}

.checkout-submit-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}

.checkout-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.checkout-review-list {
  display: grid;
  gap: 10px;
}

.checkout-review-list div {
  display: grid;
  gap: 2px;
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.checkout-review-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.checkout-review-list span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-review-list strong {
  min-width: 0;
  max-width: 100%;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.checkout-review-hint {
  color: #a16207;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.35;
}

.checkout-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-line img {
  width: 62px;
  height: 74px;
  border-radius: 6px;
  object-fit: cover;
}

.checkout-line span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-line .qty-control {
  margin-top: 9px;
}

.checkout-coupon-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: end;
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  padding: 12px;
}

.checkout-coupon-box .checkout-note {
  grid-column: 1 / -1;
}

.checkout-coupon-box .checkout-note[data-state="success"] {
  color: #17623c;
  font-weight: 850;
}

.checkout-coupon-box .checkout-note[data-state="error"] {
  color: #9e2f2f;
  font-weight: 850;
}

.checkout-promotion-box {
  display: grid;
  gap: 12px;
  margin: 14px 0;
  border: 1px solid rgba(122, 39, 77, 0.22);
  border-radius: var(--radius);
  background: rgba(122, 39, 77, 0.06);
  padding: 14px;
}

.checkout-promotion-box[hidden] {
  display: none;
}

.checkout-promotion-list {
  display: grid;
  gap: 12px;
}

.promotion-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
}

.promotion-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.promotion-card-head img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: contain;
}

.promotion-card-head span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.promotion-gift-choice {
  display: grid;
  grid-template-columns: auto 48px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 8px;
}

.promotion-gift-choice input {
  width: auto;
}

.promotion-gift-choice img {
  width: 48px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
}

.promotion-gift-choice span,
.promotion-gift-choice strong,
.promotion-gift-choice small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.promotion-gift-choice small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-sub-options {
  margin-top: 14px;
}

.checkout-sub-options .pickup-point-panel {
  margin: 0 0 8px;
}

.pickup-point-panel {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.pickup-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: end;
}

.pickup-selected {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(28, 139, 84, 0.28);
  border-radius: 8px;
  background: #edf8ef;
  color: var(--ink);
}

.pickup-selected span {
  color: var(--muted);
  font-size: 0.9rem;
}

.pickup-selected strong,
.pickup-selected span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.pickup-results {
  display: grid;
  gap: 8px;
  max-height: 310px;
  overflow: auto;
}

.pickup-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px;
  align-content: start;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  line-height: 1.32;
  text-align: left;
  cursor: pointer;
}

.pickup-result:hover,
.pickup-result:focus-visible {
  border-color: #1c8b54;
  outline: none;
}

.pickup-result.is-selected {
  border-color: #1c8b54;
  background: #edf8ef;
}

.pickup-result span,
.pickup-result small {
  display: block;
  min-width: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.32;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.pickup-result strong {
  display: block;
  grid-column: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pickup-result span {
  grid-column: 1;
}

.pickup-result small {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  border-radius: 999px;
  background: #eef3f0;
  padding: 3px 8px;
}

.pickup-result em {
  grid-column: 2;
  justify-self: end;
  border-radius: 999px;
  background: #1c8b54;
  color: #fff;
  padding: 3px 9px;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.08rem;
}

.checkout-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-empty {
  display: grid;
  gap: 12px;
  padding: 18px 0;
}

.checkout-result {
  margin-top: 22px;
  padding: 20px;
}

.checkout-success {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.checkout-success h2 {
  margin-bottom: 0;
}

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

.customer-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  min-width: 0;
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  padding: 13px;
}

.customer-choice input {
  margin-top: 4px;
  accent-color: var(--plum);
}

.customer-choice span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.customer-choice small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.customer-choice:has(input:checked),
.customer-choice-link:hover,
.customer-choice-link:focus-visible {
  border-color: var(--plum);
  background: #fff;
  outline: 0;
}

.customer-choice-link {
  grid-template-columns: 1fr;
}

.checkout-card.is-authenticated {
  gap: 8px;
}

.checkout-card.is-authenticated .checkout-note {
  margin: 0;
}

.auth-page {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 88px;
}

.auth-hero {
  max-width: 790px;
  padding: 44px 0 28px;
}

.auth-hero h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 3rem;
}

.auth-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.auth-card,
.auth-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.auth-card {
  display: grid;
  gap: 16px;
  align-content: start;
  background: var(--paper-strong);
  padding: 20px;
}

.auth-card h2,
.auth-panel h2 {
  margin-bottom: 0;
  font-size: 1.3rem;
}

.auth-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  background: linear-gradient(145deg, var(--deep) 0%, #241923 100%);
  color: var(--paper);
  padding: 22px;
}

.auth-panel h2 {
  color: #fffaf2;
}

.auth-benefit-grid {
  display: grid;
  gap: 12px;
}

.auth-benefit-grid div {
  display: grid;
  gap: 4px;
  min-height: 92px;
  align-content: start;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.08);
  padding: 13px;
}

.auth-benefit-grid strong {
  color: #fffaf2;
}

.auth-benefit-grid span {
  color: rgba(255, 250, 242, 0.76);
}

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 0.94rem;
}

.check-row input {
  margin-top: 4px;
  accent-color: var(--plum);
}

.check-row a {
  color: var(--plum);
  font-weight: 750;
  text-decoration: none;
}

.check-row a:hover {
  text-decoration: underline;
}

.auth-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auth-inline-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 16px;
}

.light-button {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

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

.footer-inner {
  width: min(var(--container), calc(100% - 32px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.footer-inner > span {
  color: var(--ink);
  font-weight: 850;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
}

.footer-inner a {
  font-weight: 750;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--plum);
  outline: 0;
}

.profile-page {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 88px;
}

.profile-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  padding: 44px 0 28px;
}

.profile-head h1 {
  max-width: 780px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 2.75rem;
}

.profile-head p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.profile-head-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.profile-loading,
.profile-login-required,
.profile-card,
.profile-summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--soft-shadow);
}

.profile-loading,
.profile-login-required {
  padding: 22px;
}

.profile-login-required {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.profile-login-required h2 {
  margin-bottom: 0;
}

.profile-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.profile-summary-card {
  display: grid;
  gap: 4px;
  min-height: 118px;
  align-content: start;
  padding: 16px;
}

.profile-summary-card span,
.profile-summary-card small {
  color: var(--muted);
}

.profile-summary-card strong {
  color: var(--ink);
  font-size: 1.45rem;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 18px;
  align-items: start;
}

.profile-column {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.profile-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 18px;
}

.profile-card-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.profile-card-head h2 {
  margin-bottom: 0;
  font-size: 1.28rem;
}

.profile-form,
.address-editor {
  display: grid;
  gap: 14px;
}

.address-editor {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

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

.profile-empty-state {
  display: grid;
  gap: 8px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  padding: 16px;
}

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

.address-list,
.favorites-list,
.order-list,
.order-items {
  display: grid;
  gap: 10px;
}

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

.favorites-list .profile-empty-state {
  grid-column: 1 / -1;
}

.favorite-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  padding: 14px;
}

.favorite-card-media {
  display: grid;
  place-items: center;
  min-height: 124px;
  border-radius: calc(var(--radius) - 2px);
  background: var(--paper);
  overflow: hidden;
}

.favorite-card-media img {
  width: 88px;
  height: 116px;
  object-fit: contain;
}

.favorite-card-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.favorite-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.22;
}

.favorite-card small,
.favorite-card-meta span {
  color: var(--muted);
}

.favorite-card-meta {
  display: grid;
  gap: 2px;
}

.favorite-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.address-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  padding: 14px;
}

.address-card > div:first-child {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.address-card span,
.address-card small {
  color: var(--muted);
}

.address-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

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

.danger-button {
  border-color: #e2b5b5;
  background: #fff4f4;
  color: #8d2e2e;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  padding: 4px 9px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-chip.success {
  border-color: #b9cfbc;
  background: var(--sage-soft);
  color: var(--sage);
}

.order-history-card {
  position: sticky;
  top: 96px;
}

.order-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.order-card summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  cursor: pointer;
  list-style: none;
  padding: 14px;
}

.order-card summary::-webkit-details-marker {
  display: none;
}

.order-card summary > span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.order-card small {
  color: var(--muted);
}

.order-summary-meta {
  justify-items: end;
}

.order-detail {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 14px;
}

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

.tracking-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--muted);
  padding: 9px 10px;
  font-size: 0.86rem;
}

.tracking-step i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.tracking-step.done {
  border-color: #b9cfbc;
  background: var(--sage-soft);
  color: var(--sage);
}

.tracking-step.done i {
  background: var(--sage);
}

.tracking-step.current {
  border-color: #dec393;
  background: var(--amber-soft);
  color: #6c461d;
}

.tracking-step.current i {
  background: var(--amber);
}

.tracking-step.warning {
  border-color: #e2b5b5;
  background: #fff4f4;
  color: #8d2e2e;
}

.tracking-step.warning i {
  background: #b84a4a;
}

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

.order-status-grid span {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.order-status-grid b {
  color: var(--ink);
}

.order-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.order-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.order-item img {
  width: 56px;
  height: 68px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--paper);
}

.order-item-name {
  display: block;
  margin-bottom: 3px;
  font-weight: 800;
}

.order-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.order-shipping-box {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.order-shipping-box strong {
  color: var(--ink);
}

.order-payment-box span {
  overflow-wrap: anywhere;
}

.order-payment-box b {
  color: var(--ink);
}

.profile-account-head {
  align-items: center;
  padding: 52px 0 22px;
}

.profile-account-head h1 {
  margin-bottom: 8px;
  font-size: clamp(2.15rem, 4vw, 3rem);
  line-height: 1.05;
}

.profile-contact-line {
  min-height: 26px;
  color: var(--muted);
  font-size: 1.05rem;
}

.profile-account-head .profile-head-actions {
  align-self: center;
}

.profile-tabs {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--soft-shadow);
  margin-bottom: 22px;
  padding: 10px;
  scrollbar-width: thin;
}

.profile-tab-button {
  flex: 0 0 auto;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.profile-tab-button:hover,
.profile-tab-button:focus-visible {
  border-color: var(--plum);
  color: var(--ink);
  outline: 0;
  transform: translateY(-1px);
}

.profile-tab-button.is-active {
  border-color: var(--plum);
  background: var(--plum);
  color: #fff;
}

.profile-shell .profile-summary-grid {
  display: none;
}

.profile-shell .profile-layout {
  display: block;
}

.profile-shell .profile-column {
  display: contents;
}

.profile-panel {
  max-width: none;
}

.profile-panel:not(.is-active),
.profile-panel[hidden] {
  display: none;
}

.profile-panel.is-active {
  display: grid;
}

.profile-panel .profile-card-head h2 {
  font-size: clamp(1.55rem, 2.3vw, 2rem);
}

.profile-panel-lead {
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.profile-type-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
}

.profile-type-choice input {
  width: 22px;
  height: 22px;
  accent-color: var(--plum);
}

.profile-type-choice:has(input:checked) {
  border-color: rgba(122, 39, 77, 0.38);
  background: var(--rose-soft);
}

.profile-section-divider {
  height: 1px;
  margin: 26px 0 20px;
  background: var(--line);
}

.address-subhead {
  margin-bottom: 14px;
}

.compact-choice-grid {
  margin-bottom: 14px;
}

.billing-address-card .status-chip {
  white-space: nowrap;
}

.profile-placeholder .profile-empty-state {
  border-style: solid;
}

.profile-placeholder .button {
  justify-self: start;
}

.profile-shell .order-history-card {
  position: static;
}

.bundle-section {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 24px;
  align-items: start;
}

.bundle-copy p:last-child {
  color: var(--muted);
}

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

.bundle-card {
  min-height: 190px;
  padding: 18px;
}

.bundle-card span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
}

.trust-section {
  padding-bottom: 88px;
}

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

.trust-item {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 16px;
}

.trust-item strong {
  font-size: 1rem;
  line-height: 1.25;
}

.cart-panel {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 100%);
  height: 100%;
  background: var(--paper-strong);
  box-shadow: -18px 0 46px rgba(38, 36, 42, 0.16);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

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

.cart-panel-head {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.cart-panel-head h2 {
  font-size: 1.3rem;
}

.cart-items {
  overflow: auto;
  padding: 16px;
}

.cart-empty {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

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

.cart-line img {
  width: 72px;
  height: 86px;
  border-radius: 6px;
  object-fit: cover;
}

.cart-line strong {
  display: block;
  line-height: 1.2;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.qty-control button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  cursor: pointer;
}

.cart-summary {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-backdrop {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: none;
  background: rgba(38, 36, 42, 0.42);
}

.cart-backdrop.is-open {
  display: block;
}

.toast {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 22px;
  min-width: 220px;
  max-width: calc(100% - 32px);
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.scent-assistant {
  position: fixed;
  z-index: 62;
  right: 20px;
  bottom: 20px;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

.assistant-toggle,
.assistant-panel {
  pointer-events: auto;
}

.assistant-toggle {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(122, 39, 77, 0.34);
  border-radius: var(--radius);
  background: var(--plum);
  color: #fff;
  padding: 0 14px 0 10px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.assistant-toggle span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.assistant-toggle strong {
  font-size: 0.95rem;
}

.assistant-panel {
  width: min(390px, calc(100vw - 24px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.assistant-head {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 10px 12px 10px 14px;
}

.assistant-head > div {
  display: grid;
  gap: 2px;
}

.assistant-head strong {
  font-size: 1rem;
}

.assistant-head span {
  color: var(--muted);
  font-size: 0.82rem;
}

.assistant-messages {
  display: grid;
  align-content: start;
  gap: 9px;
  max-height: min(420px, calc(100vh - 260px));
  overflow: auto;
  padding: 12px;
}

.assistant-message {
  display: grid;
  gap: 8px;
  max-width: 92%;
  border-radius: 8px;
  padding: 10px 11px;
}

.assistant-message p {
  margin: 0;
  font-size: 0.92rem;
}

.assistant-message.is-assistant {
  justify-self: start;
  background: var(--rose-soft);
  color: var(--ink);
}

.assistant-message.is-user {
  justify-self: end;
  background: var(--plum);
  color: #fff;
}

.assistant-message.is-loading p {
  color: var(--muted);
}

.assistant-products {
  display: grid;
  gap: 7px;
}

.assistant-product {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(216, 206, 195, 0.9);
  border-radius: 7px;
  background: rgba(255, 250, 242, 0.78);
  padding: 7px;
}

.assistant-product img {
  width: 44px;
  height: 54px;
  border-radius: 5px;
  object-fit: cover;
  background: var(--paper);
}

.assistant-product span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.assistant-product strong,
.assistant-product small {
  overflow: hidden;
  text-overflow: ellipsis;
}

.assistant-product strong {
  white-space: nowrap;
  font-size: 0.84rem;
}

.assistant-product small {
  display: -webkit-box;
  color: var(--muted);
  font-size: 0.76rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.assistant-suggestions,
.assistant-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.assistant-suggestions {
  border-top: 1px solid rgba(216, 206, 195, 0.76);
  padding: 10px 12px 0;
}

.assistant-replies {
  padding: 0 2px 2px;
}

.assistant-suggestions button,
.assistant-replies button {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0 8px;
  font-size: 0.78rem;
  font-weight: 760;
  cursor: pointer;
}

.assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 10px 12px 12px;
}

.assistant-form textarea {
  width: 100%;
  min-height: 48px;
  max-height: 120px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 9px 10px;
}

.assistant-form .button {
  min-width: 82px;
}

.catalog-page {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.catalog-browser {
  display: grid;
  gap: 18px;
}

.catalog-toolbar {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  padding: 12px 0 22px;
  border-bottom: 1px solid var(--line);
}

.catalog-toolbar h1 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.08;
}

.catalog-toolbar p:not(.eyebrow) {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
}

.catalog-toolbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.catalog-toolbar-actions strong {
  white-space: nowrap;
  color: var(--plum);
  font-size: 1rem;
}

.catalog-toolbar-actions select,
.catalog-filter-search {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 0 12px;
}

.catalog-toolbar-actions label {
  min-width: 0;
}

.catalog-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-active-filters button {
  min-height: 34px;
  border: 1px solid rgba(122, 39, 77, 0.28);
  border-radius: 6px;
  background: var(--rose-soft);
  color: var(--plum-strong);
  padding: 0 10px;
  font-weight: 800;
  cursor: pointer;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.catalog-filters {
  position: sticky;
  top: 96px;
  display: grid;
  max-height: calc(100vh - 116px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.72);
}

.catalog-filter-head {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.catalog-filter-head-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.catalog-filter-close,
.catalog-filter-footer,
.catalog-filter-backdrop {
  display: none;
}

.catalog-filter-groups {
  display: grid;
}

.catalog-filter-group {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(216, 206, 195, 0.78);
}

.catalog-filter-group:last-child {
  border-bottom: 0;
}

.catalog-filter-title {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.catalog-filter-title strong {
  font-size: 0.92rem;
}

.catalog-filter-title span {
  display: inline-flex;
  min-width: 24px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
}

.catalog-filter-search {
  width: 100%;
}

.catalog-check-list {
  display: grid;
  gap: 5px;
}

.catalog-filter-group[data-filter-group="notes"] .catalog-check-list {
  max-height: 340px;
  overflow: auto;
  padding-right: 3px;
}

.catalog-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 34px;
  color: var(--ink);
  cursor: pointer;
}

.catalog-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--plum);
}

.catalog-check span {
  overflow: hidden;
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-check small {
  color: var(--muted);
  font-weight: 800;
}

.catalog-check.is-disabled {
  color: rgba(104, 97, 106, 0.58);
  cursor: default;
}

.catalog-filter-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog-results {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.catalog-result-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  color: var(--muted);
  font-weight: 780;
}

.catalog-result-meta [data-mobile-filter-toggle] {
  display: none;
}

.catalog-mobile-filter-button {
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--plum);
  border-radius: var(--radius);
  background: var(--plum);
  color: #fff;
  padding: 0 13px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.catalog-mobile-filter-button strong {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--plum);
  font-size: 0.75rem;
}

.catalog-filter-icon {
  display: grid;
  width: 18px;
  gap: 3px;
}

.catalog-filter-icon i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.catalog-filter-icon i:nth-child(2) {
  width: 12px;
}

.catalog-filter-icon i:nth-child(3) {
  width: 7px;
}

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

.catalog-empty {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.7);
  color: var(--muted);
  padding: 24px;
  text-align: center;
}

.catalog-load-more {
  justify-self: center;
  min-width: min(260px, 100%);
  background: var(--paper-strong);
  border-color: rgba(110, 47, 73, 0.34);
  color: var(--plum);
  box-shadow: 0 12px 28px rgba(38, 36, 42, 0.1);
}

.catalog-load-more:hover,
.catalog-load-more:focus-visible {
  background: var(--rose-soft);
  border-color: var(--plum);
  color: var(--plum-strong);
}

.promo-page {
  padding-bottom: 72px;
}

.promo-landing,
.promo-products {
  width: min(var(--container), calc(100% - 32px));
  margin: 22px auto 0;
}

.promo-hero {
  height: min(430px, calc(100vh - 128px));
  min-height: 340px;
}

.promo-loading,
.promo-unavailable,
.promo-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 28px;
  box-shadow: var(--soft-shadow);
}

.promo-unavailable {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.promo-unavailable h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.promo-unavailable p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.promo-products {
  margin-top: 38px;
}

.promo-linked-action {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 250, 242, 0.36);
  border-radius: 999px;
  padding: 0 10px;
  color: #fffaf2;
  font-size: 0.82rem;
}

.promo-products .product-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.promo-products .product-foot .button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 0.85rem;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: end;
  }

  .deal-strip,
  .campaign-hero-inner,
  .finder-grid,
  .product-grid,
  .category-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-feature-card {
    grid-template-columns: 1fr;
  }

  .campaign-feature-media,
  .campaign-feature-media img {
    min-height: 240px;
  }

  .advisor-section,
  .advisor-panel,
  .bundle-section,
  .auth-layout,
  .profile-layout,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .guide-card-grid,
  .guide-term-grid,
  .guide-choice {
    grid-template-columns: 1fr;
  }

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

  .checkout-summary {
    position: static;
  }

  .order-history-card {
    position: static;
  }

  .customer-choice-grid {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

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

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

@media (max-width: 760px) {
  .header-inner {
    width: calc(100% - 24px);
    min-height: 64px;
    gap: 10px;
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 4;
    grid-row: 1;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .header-search input {
    width: 150px;
  }

  .main-nav {
    display: none;
    gap: 4px;
    padding: 10px 0 14px;
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mobile-nav-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding-bottom: 6px;
  }

  .mobile-nav-search label {
    min-width: 0;
  }

  .mobile-nav-search input {
    width: 100%;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    padding: 0 12px;
    outline: 0;
  }

  .mobile-nav-search input:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(122, 39, 77, 0.14);
  }

  .mobile-nav-search button {
    min-height: 46px;
    border: 1px solid var(--plum);
    border-radius: var(--radius);
    background: var(--plum);
    color: #fff;
    padding: 0 14px;
    font-weight: 850;
    cursor: pointer;
  }

  .mobile-nav-search-results {
    grid-column: 1 / -1;
    display: grid;
    max-height: min(330px, 48vh);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--soft-shadow);
  }

  .mobile-nav-search-results a {
    display: grid;
    min-height: 54px;
    align-content: center;
    gap: 1px;
    padding: 8px 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    white-space: normal;
  }

  .mobile-nav-search-results a:last-child {
    border-bottom: 0;
  }

  .mobile-nav-search-results a span {
    color: var(--plum);
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
  }

  .mobile-nav-search-results a strong {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .mobile-nav-search-results .mobile-nav-search-all {
    min-height: 46px;
    background: var(--rose-soft);
    color: var(--plum-strong);
    font-weight: 850;
  }

  .mobile-nav-search-empty {
    padding: 12px;
    color: var(--muted);
    font-size: 0.88rem;
  }

  .main-nav a,
  .nav-trigger {
    min-height: 44px;
    padding: 10px 12px;
    background: rgba(255, 250, 242, 0.7);
    border: 1px solid var(--line);
    white-space: nowrap;
  }

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

  .product-nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .button-compact {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-bg {
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(24, 21, 24, 0.94) 0%, rgba(24, 21, 24, 0.82) 58%, rgba(24, 21, 24, 0.36) 100%),
      linear-gradient(90deg, rgba(24, 21, 24, 0.62) 0%, rgba(24, 21, 24, 0.06) 100%);
  }

  .hero-inner {
    width: calc(100% - 24px);
    padding: 62px 0 54px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.55rem;
  }

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

  .campaign-hero {
    width: calc(100% - 24px);
    margin-top: 14px;
  }

  .campaign-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .campaign-feature-card {
    height: 340px;
    min-height: 0;
  }

  .campaign-feature-copy {
    width: 100%;
    height: 100%;
    padding: 22px;
    background: linear-gradient(180deg, rgba(16, 20, 25, 0.9) 0%, rgba(16, 20, 25, 0.74) 68%, rgba(16, 20, 25, 0.28) 100%);
  }

  .campaign-feature-copy h1 {
    font-size: 2rem;
  }

  .campaign-feature-media,
  .campaign-feature-media img {
    min-height: 220px;
  }

  .campaign-promo-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .campaign-promo-card {
    min-width: 190px;
    scroll-snap-align: start;
  }

  .hero-metrics,
  .trust-strip-inner,
  .deal-strip,
  .finder-grid,
  .product-grid,
  .category-grid,
  .bundle-grid,
  .trust-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .deal-belt,
  .finder-section,
  .advisor-section,
  .category-band,
  .catalog-section,
  .bundle-section,
  .trust-section {
    width: calc(100% - 24px);
    padding: 42px 0;
  }

  .section-head,
  .catalog-head {
    align-items: start;
    flex-direction: column;
  }

  .catalog-controls {
    justify-content: start;
  }

  .advisor-panel {
    padding: 18px;
  }

  .deal-card {
    grid-template-columns: 84px 1fr;
  }

  .deal-strip-count-1,
  .deal-strip-count-2,
  .deal-strip-count-3 {
    max-width: none;
    grid-template-columns: 1fr;
  }

  .deal-card img {
    width: 84px;
    height: 108px;
  }

  .recommendation-card {
    grid-template-columns: 82px 1fr;
  }

  .recommendation-card img {
    width: 82px;
    height: 104px;
  }

  .product-card .product-actions {
    grid-template-columns: 1fr;
  }

  .product-page {
    width: calc(100% - 24px);
  }

  .guide-page {
    width: calc(100% - 24px);
  }

  .guide-hero {
    min-height: 0;
    padding: 34px 0 24px;
  }

  .guide-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-card-grid,
  .legal-process-list {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .button {
    flex: 1;
  }

  .checkout-page {
    width: calc(100% - 24px);
  }

  .auth-page {
    width: calc(100% - 24px);
  }

  .profile-page {
    width: calc(100% - 24px);
  }

  .catalog-page {
    width: calc(100% - 24px);
    padding-top: 18px;
  }

  .catalog-toolbar {
    align-items: start;
    flex-direction: column;
    min-width: 0;
  }

  .catalog-toolbar h1 {
    max-width: 100%;
    font-size: 1.85rem;
    overflow-wrap: anywhere;
  }

  .catalog-toolbar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-width: 0;
    justify-content: stretch;
  }

  .catalog-toolbar-actions strong {
    grid-column: 1 / -1;
  }

  .catalog-toolbar-actions select {
    width: 100%;
    min-width: 0;
  }

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

  .catalog-filters {
    position: fixed;
    z-index: 102;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: 100%;
    max-height: min(88dvh, 760px);
    overflow: hidden;
    border: 0;
    border-radius: 8px 8px 0 0;
    background: var(--paper-strong);
    box-shadow: 0 -18px 48px rgba(40, 31, 38, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .catalog-filters.is-open {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .catalog-filter-head {
    position: static;
    min-height: 60px;
    padding: 0 12px 0 16px;
  }

  .catalog-filter-head > strong {
    font-size: 1.05rem;
  }

  .catalog-filter-close {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    font-size: 1.55rem;
  }

  .catalog-filter-groups {
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: 8px;
  }

  .catalog-filter-group {
    padding: 16px;
  }

  .catalog-check {
    min-height: 42px;
  }

  .catalog-check input {
    width: 19px;
    height: 19px;
  }

  .catalog-check span {
    font-size: 0.94rem;
  }

  .catalog-filter-footer {
    display: block;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: var(--paper-strong);
  }

  .catalog-filter-footer .button {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .catalog-filter-backdrop {
    position: fixed;
    z-index: 101;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(28, 22, 27, 0.48);
  }

  .catalog-filter-backdrop.is-open {
    display: block;
  }

  body.catalog-filter-open {
    overflow: hidden;
  }

  .catalog-result-meta [data-mobile-filter-toggle] {
    display: inline-flex;
  }

  .catalog-result-meta {
    position: sticky;
    z-index: 8;
    top: 70px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 56px;
    margin: 0 -12px;
    padding: 7px 12px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 250, 242, 0.96);
    backdrop-filter: blur(10px);
  }

  .catalog-result-meta > span {
    min-width: 0;
    font-size: 0.84rem;
    line-height: 1.25;
  }

  .catalog-mobile-filter-button {
    flex: none;
    white-space: nowrap;
  }

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

  .scent-assistant {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .assistant-toggle {
    justify-self: end;
  }

  .assistant-panel {
    width: 100%;
  }

  .assistant-messages {
    max-height: min(380px, calc(100vh - 250px));
  }

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

  .checkout-hero {
    padding-top: 30px;
  }

  .auth-hero {
    padding-top: 30px;
  }

  .profile-head {
    align-items: start;
    flex-direction: column;
    padding-top: 30px;
  }

  .profile-account-head {
    gap: 14px;
    padding-bottom: 18px;
  }

  .profile-account-head h1 {
    font-size: 2rem;
  }

  .profile-contact-line {
    font-size: 0.98rem;
    overflow-wrap: anywhere;
  }

  .profile-tabs {
    margin-bottom: 16px;
    padding: 8px;
    scroll-snap-type: x proximity;
  }

  .profile-tab-button {
    min-height: 44px;
    padding: 0 14px;
    scroll-snap-align: start;
  }

  .checkout-hero h1 {
    font-size: 2.1rem;
  }

  .auth-hero h1 {
    font-size: 2.1rem;
  }

  .profile-head h1 {
    font-size: 2.1rem;
  }

  .checkout-hero p {
    font-size: 0.98rem;
  }

  .auth-hero p {
    font-size: 0.98rem;
  }

  .profile-head p:last-child {
    font-size: 0.98rem;
  }

  .checkout-card,
  .checkout-summary,
  .auth-card,
  .auth-panel,
  .profile-card {
    padding: 16px;
  }

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

  .checkout-stepper button {
    min-height: 44px;
    padding: 0 10px;
  }

  .checkout-step-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .checkout-step-actions .button {
    width: 100%;
    min-width: 0;
  }

  .checkout-submit-stack {
    justify-items: stretch;
    width: 100%;
  }

  .secure-connection {
    justify-content: center;
  }

  .checkout-submit-stack p {
    text-align: center;
  }

  .pickup-search-row {
    grid-template-columns: 1fr;
  }

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

  .checkout-coupon-box button {
    width: 100%;
  }

  .promotion-gift-grid {
    grid-template-columns: 1fr;
  }

  .promotion-card-head,
  .promotion-gift-choice {
    grid-template-columns: 1fr;
  }

  .promotion-gift-choice img {
    width: 58px;
    height: 68px;
  }

  .pickup-result {
    grid-template-columns: 1fr;
  }

  .pickup-result strong,
  .pickup-result span,
  .pickup-result small,
  .pickup-result em {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .profile-summary-grid,
  .favorites-list,
  .profile-type-grid,
  .status-flow,
  .order-status-grid {
    grid-template-columns: 1fr;
  }

  .address-card,
  .favorite-card,
  .order-card summary {
    grid-template-columns: 1fr;
  }

  .order-item {
    grid-template-columns: 52px 1fr;
  }

  .order-item > strong {
    grid-column: 2;
  }

  .address-actions,
  .order-summary-meta {
    justify-items: start;
    justify-content: start;
  }

  .checkout-line {
    grid-template-columns: 56px 1fr;
  }

  .checkout-line img {
    width: 56px;
    height: 68px;
  }

  .checkout-line > strong {
    grid-column: 2;
  }

  .wide-field {
    grid-column: auto;
  }

  .product-detail-info h1 {
    font-size: 1.95rem;
    line-height: 1.08;
  }

  .product-detail {
    padding-top: 24px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: min(360px, calc(100% - 24px));
    margin-left: 12px;
    margin-right: auto;
  }

  .header-search {
    display: none;
  }

  .hero-copy {
    max-width: 360px;
  }

  h1 {
    font-size: 2.35rem;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.25rem;
  }

  .hero-actions .button {
    width: 100%;
  }
}

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