:root {
  --ink: #111111;
  --muted: #616161;
  --paper: #f7f7f7;
  --white: #ffffff;
  --fresh: #111111;
  --fresh-dark: #111111;
  --leaf: #111111;
  --gold: #111111;
  --butter: #f4f4f4;
  --coral: #b64a43;
  --blue: #3da3d6;
  --line: #e5e5e5;
  --shadow: 0 12px 26px rgba(17, 17, 17, 0.11);
  --chat-offset-bottom: 86px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 98px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Inter", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

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

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: block;
  min-height: 0;
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.store-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 6vw, 90px);
  width: min(1520px, calc(100% - 120px));
  margin: 0 auto;
  padding: 8px 0 6px;
}

.store-nav-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: min(1520px, calc(100% - 120px));
  margin: 0 auto;
  padding: 6px 0 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: var(--white);
}

.brand-mark::before {
  content: none;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ink);
}

.brand-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: var(--ink);
  font-family: "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 300;
  line-height: 1;
  text-transform: none;
}

.brand-name strong {
  font-weight: 300;
  max-width: 820px;
  line-height: 1.04;
}

.brand-name small {
  justify-self: center;
  color: var(--ink);
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 400;
  line-height: 1.2;
}

.store-search,
.language-panel {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 18px;
  background: #f1f1f1;
  color: #696969;
}

.language-panel {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  width: min(520px, 100%);
  margin-left: auto;
  padding: 8px;
  background: #f1f1f1;
}

.store-search svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
}

.language-panel button {
  min-height: 40px;
  border: 1px solid transparent;
  background: transparent;
  color: #5f5f5f;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.language-panel button:hover,
.language-panel button:focus-visible {
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.language-panel button.is-active {
  background: var(--ink);
  color: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(26px, 4.2vw, 58px);
  padding: 0;
  color: #090a08;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #f5f5f5;
}

.language-switch button {
  min-height: 28px;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0 9px;
  font-size: 12px;
  font-weight: 900;
}

.language-switch button.is-active {
  background: var(--ink);
  color: var(--white);
}

.cart-total {
  color: var(--ink);
  white-space: nowrap;
  font-size: 20px;
}

.cart-total small {
  margin-left: 6px;
  color: #888;
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #060706;
  padding: 0;
}

.icon-button svg,
.heart-button svg,
.rail-control svg,
.floating-chat svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action-badge {
  position: absolute;
  top: -8px;
  right: -9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 23px;
  height: 23px;
  padding: 0 6px;
  border-radius: 999px;
  background: #e0aa37;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  align-items: center;
  gap: 26px;
  width: min(1520px, calc(100% - 120px));
  min-height: 360px;
  margin: 0 auto 0;
  border-radius: 0;
  padding: 42px clamp(24px, 4vw, 64px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.92) 56%, rgba(20, 20, 20, 0.82) 100%),
    #030303;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 76%, rgba(61, 163, 214, 0.16) 76% 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

.hero-copy,
.hero-showcase {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.section-split h2,
.contact-section h2 {
  margin: 0;
  font-family: "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  line-height: 1.05;
}

.hero h1 {
  margin-bottom: 10px;
  color: var(--white);
  color: #7ed6e5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 96px);
  font-style: italic;
  text-transform: lowercase;
}

.hero-subtitle {
  max-width: 540px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible,
.small-button:hover,
.small-button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible,
.rail-control:hover,
.rail-control:focus-visible,
.heart-button:hover,
.heart-button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button-dark,
.small-button {
  background: var(--ink);
  color: var(--white);
}

.button-outline {
  border-color: var(--ink);
  background: var(--white);
  color: var(--ink);
}

.top-picks {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 14px;
  width: min(1520px, calc(100% - 120px));
  margin: 18px auto 12px;
}

.top-pick-card {
  position: relative;
  display: block;
  min-width: 0;
  height: 220px;
  min-height: 152px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f4f4f4;
  box-shadow: 0 12px 24px rgba(13, 18, 20, 0.1);
}

.top-pick-wide {
  grid-column: auto;
}

.top-pick-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(9, 10, 8, 0), rgba(9, 10, 8, 0.9) 58%, rgba(9, 10, 8, 0.98));
  pointer-events: none;
}

.top-pick-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 180ms ease, filter 180ms ease;
}

.top-pick-card:hover img,
.top-pick-card:focus-visible img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
}

.top-pick-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 2px;
  z-index: 1;
  padding: 34px 14px 12px;
  background: linear-gradient(180deg, rgba(9, 10, 8, 0), rgba(9, 10, 8, 0.78) 34%, rgba(9, 10, 8, 0.96));
  color: var(--white);
}

.top-pick-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-pick-card strong {
  color: var(--white);
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.1;
}

.top-pick-wide img {
  object-position: center 42%;
}

.top-pick-card:nth-child(2) img,
.top-pick-card:nth-child(4) img {
  object-position: center 74%;
}

.top-pick-card:nth-child(3) img,
.top-pick-card:nth-child(5) img {
  object-position: center 46%;
}

.store-promo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 8vw, 160px);
  width: min(1520px, calc(100% - 120px));
  margin: 18px auto 34px;
  padding: 0 30px;
}

.store-promo-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid #979797;
  background: var(--white);
  color: var(--ink);
  box-shadow: 4px 5px 4px rgba(0, 0, 0, 0.28);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
}

.local-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(1520px, calc(100% - 120px));
  margin: 0 auto 24px;
}

.local-trust-card {
  display: grid;
  gap: 4px;
  min-height: 76px;
  border: 1px solid #d9d9d9;
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 18, 20, 0.07);
}

.local-trust-card span {
  color: var(--fresh-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.local-trust-card strong {
  color: var(--ink);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.18;
}

.hero-showcase {
  min-height: 270px;
}

.hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 28px 58px rgba(15, 44, 25, 0.28);
}

.hero-card:hover,
.hero-card:focus-visible {
  transform: translateY(-4px);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 27%;
}

.hero-card-main {
  right: 4%;
  bottom: 0;
  width: min(58%, 360px);
  aspect-ratio: 4 / 3;
}

.hero-card-side {
  left: 6%;
  top: 18px;
  width: min(42%, 270px);
  aspect-ratio: 4 / 3;
}

.hero-deal {
  position: absolute;
  right: 34%;
  top: 22px;
  display: grid;
  gap: 2px;
  min-width: 138px;
  border-radius: 2px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.hero-deal span {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-deal strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  width: min(1520px, calc(100% - 120px));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.category-strip a {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 17px clamp(18px, 3vw, 36px);
  background: var(--white);
}

.category-strip span {
  font-size: 19px;
  font-weight: 900;
}

.category-strip small {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 72px clamp(22px, 5vw, 72px);
}

.section-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 30px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.contact-section h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.1vw, 44px);
}

.section-heading p,
.split-copy p,
.feature-grid p,
.contact-copy,
.product-size,
.market-price {
  color: var(--muted);
}

.scent-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -8px 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px 14px;
  box-shadow: 0 12px 28px rgba(25, 25, 25, 0.06);
}

.scent-filter-wrap > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.scent-filter {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scent-filter button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.scent-filter button:hover,
.scent-filter button:focus-visible,
.scent-filter button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.collection-shell {
  position: relative;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-tile {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-snap-align: start;
}

.product-tile[hidden] {
  display: none;
}

.product-image {
  display: block;
  position: relative;
  aspect-ratio: 1.58 / 1;
  overflow: hidden;
  background: #eef0e7;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transition: transform 260ms ease;
}

.product-image img.focus-top {
  object-position: center 14%;
}

.product-image img.focus-bottom {
  object-position: center 72%;
}

.product-image img.focus-center {
  object-position: center 46%;
}

.product-image-portrait img {
  object-position: center 46%;
}

.product-tile:hover .product-image img {
  transform: scale(1.035);
}

.product-title-link:hover,
.product-title-link:focus-visible,
.detail-link:hover,
.detail-link:focus-visible {
  color: var(--fresh-dark);
}

.saving-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.scent-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.scent-fresh {
  background: #eaf7f2;
  color: #14634f;
}

.scent-intense {
  background: #fff1dd;
  color: #8a4a09;
}

.product-scent,
.order-product-scent,
.checkout-scent,
.detail-scent-line {
  display: flex;
}

.product-body {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.product-brand {
  margin: 0;
  color: var(--fresh-dark);
  font-size: 12px;
  font-weight: 900;
}

.product-body h3 {
  min-height: 58px;
  margin: 0;
  font-size: 21px;
  line-height: 1.32;
}

.product-size {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
}

.price-block {
  display: grid;
  gap: 2px;
  margin-top: 2px;
}

.sale-price {
  color: var(--coral);
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
}

.market-price {
  font-size: 13px;
}

.detail-link {
  display: inline-flex;
  width: fit-content;
  color: var(--fresh-dark);
  font-size: 14px;
  font-weight: 900;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 10px;
  margin-top: 8px;
}

.small-button {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 14px;
}

.heart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease;
}

.heart-button.is-active {
  border-color: var(--coral);
  color: var(--coral);
}

.heart-button svg {
  width: 21px;
  height: 21px;
}

.rail-control {
  position: absolute;
  top: 24%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 18, 15, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(16, 18, 15, 0.16);
  transition: transform 160ms ease;
}

.rail-control svg {
  width: 24px;
  height: 24px;
}

.rail-prev {
  left: -24px;
}

.rail-next {
  right: -24px;
}

.section-split {
  background: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.split-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 28%;
}

.split-image img.split-image-vivid {
  object-position: center 44%;
  filter: saturate(1.18) contrast(1.04);
}

.split-copy p {
  margin: 20px 0 26px;
  font-size: 18px;
}

.tone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tone-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--paper);
  color: var(--fresh-dark);
  font-weight: 900;
}

.section-muted {
  background: #f2f2f2;
}

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

.feature-card {
  min-height: 396px;
  border: 1px solid rgba(16, 18, 15, 0.08);
  border-radius: 2px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-image {
  position: relative;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background: #eef0e7;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 260ms ease;
}

.feature-card:nth-child(1) .feature-image img {
  object-position: center 45%;
}

.feature-card:nth-child(2) .feature-image img {
  object-position: center 48%;
}

.feature-card:nth-child(3) .feature-image img {
  object-position: center 56%;
}

.feature-card:hover .feature-image img {
  transform: scale(1.035);
}

.feature-number {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 38px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.feature-copy {
  padding: 24px 26px 28px;
}

.feature-grid h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.feature-grid p {
  margin: 0;
}

.order-recommend-section {
  background: var(--white);
}

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

.order-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 18, 20, 0.08);
}

.order-product-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f4f4;
  color: var(--white);
}

.order-product-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(9, 10, 8, 0), rgba(9, 10, 8, 0.86));
}

.order-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 220ms ease, filter 220ms ease;
}

.order-product-card:hover .order-product-image img,
.order-product-card:focus-within .order-product-image img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.order-product-image span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.order-product-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.order-product-body p,
.order-product-body small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-product-body h3 {
  min-height: 48px;
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.order-product-body h3 a {
  color: inherit;
  text-decoration: none;
}

.order-product-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.order-product-price strong {
  font-size: 18px;
}

.order-product-price del {
  color: var(--muted);
  font-size: 13px;
}

.beauty-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6f2ef 100%);
}

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

.beauty-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(13, 18, 20, 0.08);
  overflow: hidden;
}

.beauty-product-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f4f4;
  color: var(--white);
}

.beauty-product-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(9, 10, 8, 0), rgba(9, 10, 8, 0.78));
}

.beauty-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 220ms ease, filter 220ms ease;
}

.beauty-product-card:hover .beauty-product-image img,
.beauty-product-card:focus-within .beauty-product-image img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
}

.beauty-product-image span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.beauty-product-body {
  display: grid;
  gap: 8px;
  padding: 15px;
}

.beauty-product-body p,
.beauty-product-body small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.beauty-product-body h3 {
  min-height: 48px;
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.beauty-product-body h3 a {
  color: inherit;
  text-decoration: none;
}

.beauty-product-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.beauty-product-price strong {
  font-size: 17px;
}

.beauty-product-price del {
  color: var(--muted);
  font-size: 13px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(0, 0, 0, 0.98)),
    var(--ink);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.contact-intro {
  display: grid;
  gap: 20px;
}

.contact-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

.contact-copy {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.repeat-discount {
  display: grid;
  gap: 8px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(61, 163, 214, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.repeat-discount span {
  color: #7ed6e5;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.repeat-discount strong {
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.08;
}

.repeat-discount p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.contact-scene-card {
  position: relative;
  width: 100%;
  margin: 12px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  aspect-ratio: 1.18;
  background: #181818;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.36);
}

.contact-scene-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(1.16) contrast(1.05);
}

.contact-scene-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 196, 81, 0.08), rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 48%);
  pointer-events: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcf7;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--fresh-dark);
  font-weight: 900;
}

.floating-chat {
  position: fixed;
  right: 32px;
  bottom: var(--chat-offset-bottom);
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 0;
  border-radius: 2px;
  padding: 14px 22px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 20px 46px rgba(16, 18, 15, 0.22);
  font-size: 20px;
  font-weight: 900;
}

.floating-chat svg {
  width: 28px;
  height: 28px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(22px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  padding-bottom: 90px;
}

.site-footer p {
  margin: 0;
}

.cashback-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 14px 24px;
  background: var(--blue);
  color: var(--white);
  font-size: clamp(16px, 1.5vw, 24px);
  pointer-events: none;
}

.cashback-bar[hidden] {
  display: none;
}

.cashback-bar.is-dismissed {
  display: none !important;
}

.cashback-bar button {
  position: relative;
  z-index: 1;
  border: 0;
  background: rgba(0, 0, 0, 0.12);
  color: var(--white);
  padding: 14px 20px;
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
  pointer-events: auto;
}

.checkout-drawer {
  position: fixed;
  inset: 0;
  z-index: 1002;
  display: none;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.42);
}

.checkout-drawer.is-open {
  display: flex;
}

.checkout-panel {
  width: min(520px, 100%);
  height: 100%;
  overflow: auto;
  background: var(--white);
  box-shadow: -18px 0 44px rgba(0, 0, 0, 0.2);
  padding: 26px;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.checkout-header h2 {
  margin: 0;
  font-size: 30px;
}

.checkout-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 30px;
  line-height: 1;
}

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

.checkout-empty {
  border: 1px dashed #bdbdbd;
  padding: 26px;
  color: var(--muted);
  text-align: center;
}

.checkout-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  padding: 10px;
  background: #fafafa;
}

.checkout-item img {
  width: 82px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.checkout-item h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.checkout-item p {
  margin: 0 0 8px;
  color: var(--muted);
}

.checkout-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.checkout-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}

.checkout-qty button {
  width: 30px;
  height: 30px;
  border: 0;
  background: var(--white);
  font-weight: 900;
}

.checkout-qty span {
  min-width: 34px;
  text-align: center;
  font-weight: 900;
}

.checkout-remove {
  border: 0;
  background: transparent;
  color: var(--coral);
  font-weight: 900;
}

.checkout-summary {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 18px 0;
  padding: 16px 0;
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.checkout-note {
  margin: -4px 0 18px;
  border-left: 4px solid var(--gold);
  padding: 12px 14px;
  background: #f7f7f7;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

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

.checkout-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 12px 13px;
  background: #fafafa;
}

.bottom-promo-section {
  background:
    linear-gradient(180deg, #f8f8f6 0%, #fff 100%);
}

.bottom-promo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.bottom-promo-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(13, 18, 20, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.bottom-promo-card:hover,
.bottom-promo-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(13, 18, 20, 0.16);
}

.bottom-promo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-page {
  background: var(--paper);
}

.inline-product-detail {
  background: var(--paper);
  padding: 34px 0 0;
}

.inline-product-detail[hidden] {
  display: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--fresh-dark);
  font-weight: 800;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 5vw, 74px);
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  padding: 18px 0 70px;
}

.detail-gallery,
.detail-info,
.detail-panels details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-gallery {
  padding: 18px;
}

.detail-main-image {
  overflow: hidden;
  border-radius: 8px;
  background: #eef0e7;
}

.detail-main-image img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  object-position: center 18%;
}

.detail-main-image img.is-portrait-detail {
  aspect-ratio: 1.12 / 1;
  object-position: center 48%;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.thumbnail-row button {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #eef0e7;
  padding: 0;
}

.thumbnail-row button.is-active {
  border-color: var(--gold);
}

.thumbnail-row img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.detail-info {
  align-self: start;
  padding: clamp(24px, 4vw, 38px);
}

.detail-brand {
  margin: 0 0 8px;
  color: var(--fresh-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-info h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.detail-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

.rating-line a {
  color: var(--fresh-dark);
  font-size: 14px;
}

.detail-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.detail-saving {
  position: static;
  white-space: nowrap;
}

.detail-options,
.quantity-row {
  margin-bottom: 22px;
}

.detail-options p,
.quantity-row > span {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 900;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-chip,
.quantity-control button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.option-chip {
  min-height: 44px;
  padding: 10px 18px;
}

.option-chip.is-selected {
  border-color: var(--fresh-dark);
  background: #edf2e6;
  color: var(--fresh-dark);
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 42px 52px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-control button {
  height: 42px;
  border: 0;
  border-radius: 0;
}

.quantity-control output {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-weight: 900;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.detail-service {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.detail-service span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--fresh-dark);
  font-weight: 900;
}

.detail-panels {
  display: grid;
  gap: 12px;
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto 22px;
}

.detail-panels details {
  padding: 0 22px;
}

.detail-panels summary {
  padding: 20px 0;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.detail-panels p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
}

.related-section {
  padding-top: 42px;
}

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

.related-card {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
  box-shadow: var(--shadow);
}

.related-card img {
  width: 124px;
  aspect-ratio: 1 / 0.86;
  border-radius: 8px;
  object-fit: cover;
}

.related-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.25;
}

.related-card span {
  color: var(--coral);
  font-size: 20px;
  font-weight: 900;
}

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

  .site-nav {
    justify-content: flex-start;
    gap: 18px;
    font-size: 19px;
  }

  .header-actions {
    gap: 12px;
  }

  .product-rail {
    grid-auto-columns: calc((100% - 48px) / 3);
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 76px;
    padding: 0;
  }

  .store-topbar,
  .store-nav-row {
    width: calc(100% - 36px);
  }

  .store-topbar {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 14px 0 10px;
  }

  .store-nav-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 8px 0 16px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-mark span {
    font-size: 19px;
  }

  .brand-name {
    display: none;
  }

  .store-search {
    grid-template-columns: 24px 1fr;
    min-height: 54px;
    padding: 0 14px;
  }

  .language-panel {
    width: 100%;
    min-height: 54px;
    padding: 7px;
    gap: 6px;
  }

  .language-panel button {
    flex: 1;
    padding: 0 10px;
    font-size: 14px;
  }

  .store-search svg {
    width: 22px;
    height: 22px;
  }

  .store-search input {
    font-size: 20px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 44px;
    height: 44px;
    grid-column: 3;
    border: 1px solid var(--ink);
    border-radius: 8px;
    background: var(--ink);
    gap: 4px;
    padding: 0;
  }

  .menu-toggle span {
    width: 17px;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

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

  .site-nav a {
    padding: 12px 0;
  }

  .header-actions {
    justify-content: flex-start;
    padding-right: 0;
  }

  .cart-total {
    font-size: 18px;
  }

  .top-picks,
  .store-promo-row,
  .local-trust-strip,
  .hero,
  .category-strip {
    width: calc(100% - 36px);
  }

  .top-picks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 14px auto 10px;
  }

  .top-pick-card,
  .top-pick-card img {
    height: 160px;
    min-height: 132px;
  }

  .top-pick-wide {
    grid-column: auto;
  }

  .store-promo-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 16px auto 24px;
    padding: 0;
  }

  .store-promo-row span {
    min-height: 64px;
    padding: 8px;
    font-size: 18px;
    line-height: 1.15;
  }

  .local-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 38px 22px 30px;
  }

  .hero-showcase {
    min-height: 300px;
  }

  .hero-card-main {
    right: 6%;
    width: 58%;
  }

  .hero-card-side {
    left: 0;
    width: 45%;
  }

  .hero-deal {
    right: 28%;
  }

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

  .product-rail {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .split-grid,
  .contact-grid,
  .feature-grid,
  .detail-layout,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .detail-layout {
    width: min(720px, calc(100% - 36px));
    padding-bottom: 54px;
  }

  .breadcrumbs,
  .detail-panels {
    width: min(720px, calc(100% - 36px));
  }

  .rail-control {
    display: none;
  }
}

@media (max-width: 620px) {
  section[id] {
    scroll-margin-top: 104px;
  }

  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 0;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .header-actions {
    justify-content: space-between;
    gap: 8px;
    padding-right: 0;
  }

  .store-topbar,
  .store-nav-row,
  .top-picks,
  .store-promo-row,
  .local-trust-strip,
  .hero,
  .category-strip {
    width: calc(100% - 32px);
  }

  .store-topbar {
    grid-template-columns: 46px minmax(0, 1fr) 40px;
    gap: 8px;
    padding: 8px 0 4px;
  }

  .store-nav-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 5px 0 8px;
  }

  .language-panel {
    min-height: 40px;
    padding: 5px;
    gap: 4px;
  }

  .language-panel button {
    min-height: 30px;
    padding: 0 6px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    top: 56px;
    padding: 8px 18px 14px;
    font-size: 18px;
  }

  .cart-total {
    font-size: 16px;
    white-space: nowrap;
  }

  .cart-total small {
    font-size: 13px;
  }

  .top-picks {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(154px, 46vw);
    grid-template-columns: none;
    gap: 10px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .top-pick-card,
  .top-pick-card img {
    height: 142px;
    min-height: 128px;
    scroll-snap-align: start;
  }

  .store-promo-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 10px auto 14px;
  }

  .store-promo-row span {
    min-height: 52px;
    padding: 7px;
    font-size: 14px;
  }

  .local-trust-strip {
    grid-template-columns: repeat(4, minmax(132px, 1fr));
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 12px;
    scroll-snap-type: x proximity;
  }

  .local-trust-card {
    min-height: 58px;
    padding: 9px 10px;
    scroll-snap-align: start;
  }

  .local-trust-card span {
    font-size: 11px;
  }

  .local-trust-card strong {
    font-size: 13px;
  }

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

  .beauty-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(236px, 78vw);
    grid-template-columns: none;
    gap: 12px;
    margin-inline: -16px;
    padding: 0 16px 12px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .beauty-product-card {
    scroll-snap-align: start;
  }

  .bottom-promo-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(236px, 78vw);
    grid-template-columns: none;
    gap: 12px;
    margin-inline: -16px;
    padding: 0 16px 12px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .bottom-promo-card {
    scroll-snap-align: start;
  }

  .order-product-body {
    padding: 12px;
  }

  .icon-button {
    width: 31px;
    height: 31px;
  }

  .icon-button svg {
    width: 24px;
    height: 24px;
  }

  .action-badge {
    top: -7px;
    right: -7px;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero {
    gap: 16px;
    padding: 28px 18px 22px;
  }

  .hero-subtitle {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero-showcase {
    min-height: 205px;
  }

  .hero-card {
    border-width: 3px;
  }

  .hero-card-main {
    right: 0;
    bottom: 0;
    width: 62%;
  }

  .hero-card-side {
    left: 0;
    top: 12px;
    width: 45%;
  }

  .hero-deal {
    top: 8px;
    right: 8px;
    min-width: 104px;
    padding: 8px 10px;
  }

  .hero-deal strong {
    font-size: 18px;
  }

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

  .category-strip a {
    min-height: 58px;
    padding: 11px 12px;
  }

  .category-strip span {
    font-size: 15px;
  }

  .category-strip small {
    font-size: 11px;
  }

  .section {
    padding: 38px 16px;
  }

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

  .section-heading h2,
  .split-copy h2,
  .contact-section h2 {
    font-size: 25px;
    line-height: 1.12;
  }

  .section-heading p,
  .split-copy p,
  .contact-copy {
    font-size: 16px;
  }

  .scent-filter-wrap {
    align-items: stretch;
    gap: 10px;
    padding: 10px;
  }

  .scent-filter {
    width: 100%;
  }

  .scent-filter button {
    flex: 1 1 calc(33.333% - 8px);
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .product-rail {
    grid-auto-columns: minmax(246px, 80vw);
    gap: 12px;
    padding-bottom: 14px;
  }

  .product-image {
    aspect-ratio: 1.32 / 1;
  }

  .product-body {
    padding: 14px 12px;
  }

  .product-body h3 {
    min-height: auto;
    font-size: 19px;
  }

  .product-size,
  .market-price,
  .detail-link {
    font-size: 12px;
  }

  .sale-price {
    font-size: 22px;
  }

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

  .small-button {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .heart-button {
    width: 38px;
    height: 42px;
  }

  .feature-grid article,
  .contact-form {
    padding: 22px;
  }

  .order-product-image {
    aspect-ratio: 1.05 / 1;
  }

  .order-product-body h3 {
    min-height: 42px;
    font-size: 15px;
  }

  .order-product-price {
    display: grid;
    gap: 4px;
  }

  .order-product-price strong {
    font-size: 16px;
  }

  .contact-grid {
    gap: 24px;
  }

  .contact-side {
    gap: 18px;
  }

  .contact-scene-card {
    aspect-ratio: 1.18 / 1;
  }

  .breadcrumbs {
    width: calc(100% - 32px);
    padding-top: 20px;
  }

  .detail-layout,
  .detail-panels {
    width: calc(100% - 32px);
  }

  .detail-gallery,
  .detail-info {
    padding: 14px;
  }

  .detail-info h1 {
    font-size: 32px;
  }

  .detail-main-image img {
    aspect-ratio: 1.48 / 1;
  }

  .detail-main-image img.is-portrait-detail {
    aspect-ratio: 1 / 1;
  }

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

  .detail-price-box,
  .quantity-row,
  .detail-actions {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .detail-price-box,
  .quantity-row {
    display: grid;
  }

  .quantity-control {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }

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

  .related-card img {
    width: 92px;
  }

  .floating-chat {
    right: 12px;
    bottom: var(--chat-offset-bottom);
    min-height: 44px;
    padding: 9px 12px;
    font-size: 15px;
  }

  .floating-chat svg {
    width: 23px;
    height: 23px;
  }

  .checkout-panel {
    width: 100%;
    padding: 16px;
    padding-bottom: 96px;
  }

  .checkout-header h2 {
    font-size: 22px;
  }

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

  .checkout-item img {
    width: 72px;
  }

  .checkout-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-form input,
  .checkout-form textarea,
  .checkout-form select {
    min-height: 46px;
    font-size: 16px;
  }

  .cashback-bar {
    min-height: 48px;
    gap: 10px;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.25;
  }

  .cashback-bar button {
    flex: 0 0 auto;
    padding: 9px 11px;
    font-size: 13px;
  }
}
