:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #6c625e;
  --soft: #f3f8e9;
  --soft-2: #fbf8dc;
  --line: #e3ebcf;
  --hot: #1f8f3a;
  --hot-2: #7ecf45;
  --orange: #e4b900;
  --blue: #c9e873;
  --teal: #2aa36b;
  --green: #1f8f3a;
  --gold: #c29b00;
  --page: 1060px;
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.cart-open {
  overflow: hidden;
}

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

.page-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 4px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  background: linear-gradient(90deg, rgba(31, 143, 58, 0.08), rgba(228, 185, 0, 0.08), rgba(42, 163, 107, 0.08));
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.page-loading-bar.is-active {
  opacity: 1;
  transform: translateY(0);
}

.page-loading-bar span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: 0 999px 999px 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(31, 143, 58, 0.72) 18%, rgba(228, 185, 0, 0.95) 52%, rgba(126, 207, 69, 0.78) 82%, transparent 100%);
  filter: drop-shadow(0 0 10px rgba(228, 185, 0, 0.22));
  animation: page-loading-sweep 1.85s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes page-loading-sweep {
  0% {
    transform: translateX(-46vw) scaleX(0.72);
    opacity: 0.62;
  }
  45% {
    transform: translateX(42vw) scaleX(1);
    opacity: 1;
  }
  100% {
    transform: translateX(118vw) scaleX(0.76);
    opacity: 0.54;
  }
}

button,
input,
select {
  font: inherit;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.utility-bar {
  border-bottom: 1px solid #edf2d8;
  font-size: 11px;
}

.utility-inner {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #4d4541;
}

.utility-inner nav,
.primary-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.utility-inner nav {
  gap: 16px;
  white-space: nowrap;
}

.utility-inner a:hover,
.primary-links a:hover {
  color: var(--hot);
}

.main-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr minmax(220px, 300px) auto;
  align-items: center;
  gap: 22px;
}

.brand-mark {
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 820;
  font-size: 22px;
  line-height: 1;
}

.brand-mark span {
  display: inline-block;
  border: 2px solid var(--orange);
  border-left: 0;
  border-right: 0;
  padding: 3px 0 2px;
}

.primary-links {
  gap: 20px;
  font-size: 12px;
  font-weight: 650;
}

.primary-links a {
  padding: 24px 0 22px;
  border-bottom: 2px solid transparent;
}

.primary-links a.is-active {
  border-color: var(--ink);
}

.search-form {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #6e6561;
}

.search-form svg,
.icon-button svg,
.floating-help svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.search-form input::placeholder {
  color: #8d817b;
}

.nav-actions {
  gap: 6px;
  justify-content: flex-end;
}

.icon-button {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-button:hover {
  background: var(--soft);
}

.category-menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 48;
  pointer-events: none;
}

.category-menu-drawer.is-open {
  pointer-events: auto;
}

.category-menu-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0);
  transition: background 180ms ease;
}

.category-menu-drawer.is-open .category-menu-scrim {
  background: rgba(17, 17, 17, 0.22);
}

.category-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, calc(100% - 28px));
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #ffffff;
  box-shadow: -24px 0 54px rgba(17, 17, 17, 0.2);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

.category-menu-drawer.is-open .category-menu-panel {
  transform: translateX(0);
}

.category-menu-head {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 12%, rgba(228, 185, 0, 0.18), transparent 32%),
    linear-gradient(135deg, #f3f8e9, #ffffff);
}

.category-menu-head span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-menu-head h2 {
  margin: 2px 0 0;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.category-menu-list {
  overflow: auto;
  padding: 12px 14px 18px;
}

.category-menu-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: inherit;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.category-menu-item:hover {
  border-color: var(--line);
  background: #f8fbef;
  transform: translateX(-3px);
}

.category-menu-media {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--soft);
}

.category-menu-media .category-sprite,
.category-menu-sprite {
  width: 100%;
  height: 100%;
}

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

.category-menu-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.category-menu-copy strong {
  font-size: 14px;
  line-height: 1.12;
}

.category-menu-copy small {
  color: var(--muted);
  font-size: 11px;
}

.category-menu-arrow {
  color: var(--hot);
  font-size: 26px;
  line-height: 1;
}

.category-menu-empty {
  margin: 0;
  padding: 24px 10px;
  color: var(--muted);
  text-align: center;
}

.floating-help {
  z-index: 45;
}

.account-control {
  position: relative;
}

.account-control::after {
  content: "";
  position: absolute;
  top: 100%;
  right: -14px;
  left: -14px;
  height: 16px;
  display: none;
  z-index: 39;
}

.account-control:hover::after,
.account-control.is-open::after {
  display: block;
}

.account-control .account-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(300px, calc(100vw - 24px));
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.18);
  z-index: 40;
  display: none;
  transform: none;
}

.account-control.is-open .account-menu,
.account-control:hover .account-menu {
  display: block;
}

.account-menu-user {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}

.account-menu-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.account-menu-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-button-avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--ink);
  font-size: 11px;
  font-weight: 760;
}

.account-button-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.account-button-avatar--initials {
  text-transform: uppercase;
}

.account-menu-meta strong {
  display: block;
  font-size: 13px;
}

.account-menu-meta p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.account-menu-links {
  display: grid;
  gap: 6px;
}

.account-menu-link {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.account-menu-link:hover {
  border-color: var(--line);
  background: var(--soft);
  text-decoration: none;
}

.account-menu-link span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 780;
}

.account-menu-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  font-size: 11px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px var(--line);
}

.account-menu-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-menu-link small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.account-menu-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  margin-top: 8px;
  border: 1px solid #ffd0dc;
  border-radius: 999px;
  background: #fff4f7;
  color: #9b163f;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.account-menu-logout:hover {
  background: #ffe5ed;
  text-decoration: none;
}

.account-menu-links .black-button {
  width: 100%;
  justify-content: center;
}

.account-profile-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  padding: 16px;
}

.account-profile-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.account-profile-head h1 {
  margin: 0 0 4px;
}

.account-profile-fields {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.account-profile-field {
  display: grid;
  gap: 4px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.account-profile-field:last-child {
  border-bottom: 0;
}

.account-profile-field span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.account-profile-field strong {
  font-size: 14px;
}

.account-profile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.account-profile-actions .black-button {
  border: 0;
}

.account-order-history-empty {
  margin-top: 10px;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: var(--soft-2);
}

.account-order-history-empty strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.account-order-history-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.account-menu-avatar--large {
  width: 52px;
  height: 52px;
}

.menu-button {
  display: none;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--hot);
  color: #ffffff;
  font-size: 10px;
  font-weight: 750;
}

#app {
  min-height: 60vh;
}

.section {
  margin: 28px 0;
}

.section-tight {
  margin: 18px 0;
}

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

.section-head h2,
.section-head h1 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.section-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.text-link {
  border: 0;
  background: none;
  padding: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: clamp(340px, 46vw, 560px);
  margin-top: 18px;
  border-radius: 10px;
  background: #f4f8e7;
  box-shadow: 0 16px 48px rgba(17, 17, 17, 0.08);
  isolation: isolate;
}

.hero-carousel-track {
  height: 100%;
  min-height: inherit;
  display: flex;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: inherit;
  display: grid;
  align-items: center;
  padding: clamp(26px, 5vw, 62px);
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 34%, rgba(255, 255, 255, 0.1) 70%),
    var(--hero-image);
  background-position: center, var(--hero-pos);
  background-size: cover, cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto auto -18% -8%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hero-accent) 22%, transparent);
  filter: blur(22px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(430px, 76%);
}

.hero-copy .eyebrow {
  color: var(--hero-accent);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 390px;
  margin: 16px 0 22px;
  color: #453c38;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.5;
}

.hero-copy .pill-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 2px solid rgba(31, 143, 58, 0.12);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(31, 143, 58, 0.22);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-copy .pill-button:hover {
  box-shadow: 0 18px 36px rgba(31, 143, 58, 0.28);
  transform: translateY(-1px);
}

.hero-controls {
  position: absolute;
  left: clamp(18px, 4vw, 48px);
  right: clamp(18px, 4vw, 48px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-arrow,
.hero-dot {
  pointer-events: auto;
  cursor: pointer;
}

.hero-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
}

.hero-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(17, 17, 17, 0.28);
  transition: width 180ms ease, background 180ms ease;
}

.hero-dot.is-active {
  width: 24px;
  background: var(--hot);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 12px;
  margin-top: 24px;
}

.promo-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  isolation: isolate;
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.promo-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.56) 45%, rgba(255, 255, 255, 0.03) 100%);
}

.promo-card.hot {
  background: var(--hot);
  color: #ffffff;
}

.promo-card.hot:after {
  background: linear-gradient(135deg, rgba(31, 143, 58, 0.98), rgba(126, 207, 69, 0.76));
}

.promo-card.orange {
  background: #f3c91d;
}

.promo-card.blue {
  background: #eff8d2;
}

.promo-body {
  position: relative;
  z-index: 1;
  max-width: 54%;
  padding: 18px;
}

.promo-card.hot .promo-body {
  max-width: 72%;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--hot);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-card.hot .eyebrow {
  color: #ffffff;
}

.promo-body h1,
.promo-body h2 {
  margin: 0 0 5px;
  font-size: 24px;
  line-height: 1.02;
}

.promo-body h2 {
  font-size: 18px;
}

.promo-body p {
  margin: 0 0 12px;
  font-size: 12px;
  color: #3b302c;
}

.promo-card.hot p,
.promo-card.hot .mini-note {
  color: #ffffff;
}

.mini-note {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  color: #4a3d38;
}

.live-empty-state {
  min-height: 360px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
}

.live-empty-state h1 {
  max-width: 620px;
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
}

.live-empty-state p {
  max-width: 620px;
  margin: 0;
  color: #4a3d38;
}

.pill-button,
.black-button,
.cart-summary button,
.newsletter button,
.signup-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  line-height: 1;
  border: 0;
  border-radius: 999px;
  background: var(--hot);
  color: #ffffff;
  font-weight: 750;
  font-size: 12px;
  min-height: 32px;
  padding: 0 16px;
  cursor: pointer;
}

.newsletter button:disabled,
.signup-card button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.black-button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.newsletter-message {
  grid-column: 1 / -1;
  min-height: 16px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.newsletter-message.is-error {
  color: #9b1c1c;
}

.newsletter-message.is-success {
  color: var(--ink);
  font-weight: 760;
}

.signup-card form.is-subscribed {
  display: block;
  border: 1px solid rgba(19, 26, 22, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  padding: 12px 14px;
}

.signup-card form.is-subscribed input,
.signup-card form.is-subscribed button {
  display: none;
}

.signup-card form.is-subscribed .newsletter-message {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 0;
  margin: 0;
}

.signup-card form.is-subscribed .newsletter-message::before {
  content: "Added";
  border-radius: 999px;
  background: rgba(132, 184, 24, 0.14);
  color: #4f7800;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  text-transform: uppercase;
}

.profile-page {
  padding-top: 34px;
  padding-bottom: 70px;
}

.profile-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.profile-breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.profile-hero {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 24px;
}

.profile-hero span {
  color: var(--hot);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-hero h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.profile-hero p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.profile-content-card {
  border: 1px solid rgba(19, 26, 22, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(246, 216, 177, 0.38), transparent 34%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 80px rgba(58, 44, 36, 0.09);
  padding: clamp(22px, 4vw, 44px);
}

.profile-content {
  max-width: 820px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
}

.profile-content h1,
.profile-content h2,
.profile-content h3 {
  margin: 0 0 12px;
  line-height: 1.1;
}

.profile-content p {
  margin: 0 0 16px;
}

.profile-content a {
  color: var(--ink);
  font-weight: 800;
}

.profile-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.profile-content dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.profile-content dl div {
  border-bottom: 1px solid rgba(19, 26, 22, 0.08);
  padding-bottom: 12px;
}

.profile-content dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-content dd {
  margin: 4px 0 0;
  font-weight: 760;
}

.profile-policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.profile-policy-card {
  border: 1px solid rgba(19, 26, 22, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  padding: 16px;
}

.profile-policy-card strong {
  display: block;
  margin-bottom: 6px;
}

.profile-policy-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.profile-policy-card span,
.profile-loading {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.pill-button.light {
  background: #ffffff;
  color: var(--ink);
}

.promo-discs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: min(260px, 100%);
  margin-top: 10px;
}

.promo-discs span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--hot);
  text-align: center;
  font-size: 10px;
  font-weight: 850;
}

.product-row,
.deal-row,
.editorial-row {
  display: grid;
  gap: 12px;
}

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

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

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

.product-card {
  min-width: 0;
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 5px;
  background: var(--soft);
}

.product-sprite,
.category-sprite,
.thumbnail-sprite,
.large-sprite,
.blog-sprite,
.category-menu-sprite {
  display: block;
}

span.product-sprite,
span.category-sprite,
span.thumbnail-sprite,
span.large-sprite,
span.blog-sprite,
span.category-menu-sprite {
  background-image: url("assets/product-sheet.png");
  background-repeat: no-repeat;
  background-size: 400% 400%;
  background-position: var(--sprite-x) var(--sprite-y);
}

.product-sprite {
  position: absolute;
  inset: 0;
  transform: scale(1.01);
  transition: transform 180ms ease;
}

.product-card:hover .product-sprite {
  transform: scale(1.05);
}

img.product-sprite,
img.category-sprite,
img.thumbnail-sprite,
img.large-sprite {
  background: transparent;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 2px;
  background: var(--hot);
  color: #ffffff;
  font-size: 9px;
  font-weight: 820;
  text-transform: uppercase;
}

.product-copy {
  padding: 8px 4px 0;
}

.product-copy small,
.rating,
.shade-count,
.breadcrumbs,
.product-meta {
  color: var(--muted);
  font-size: 11px;
}

.brand {
  display: block;
  color: #1b1715;
  font-size: 11px;
  font-weight: 820;
}

.product-title {
  display: -webkit-box;
  min-height: 34px;
  margin: 2px 0 3px;
  overflow: hidden;
  color: #24201e;
  font-size: 12px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 18px;
}

.stars {
  color: var(--orange);
  font-size: 10px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 3px 0 8px;
  font-weight: 820;
}

.price-line s {
  color: #8a807b;
  font-size: 11px;
  font-weight: 500;
}

.sale-price {
  color: var(--hot);
}

.add-button {
  min-width: 86px;
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  background: var(--hot);
  color: #ffffff;
  font-size: 11px;
  font-weight: 760;
  cursor: pointer;
}

.add-button:hover,
.black-button:hover,
.pill-button:hover,
.cart-summary button:hover {
  background: #176f2e;
}

.deal-card {
  border-radius: 6px;
  background: var(--soft-2);
  overflow: hidden;
}

.deal-card .product-media {
  border-radius: 0;
}

.deal-card .product-copy {
  padding: 8px;
}

.event-band {
  display: grid;
  grid-template-columns: 0.92fr repeat(4, 1fr);
  gap: 10px;
  align-items: stretch;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--hot);
  color: #ffffff;
}

.event-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}

.event-lead h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1;
}

.event-tile,
.feature-card,
.story-card {
  overflow: hidden;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
}

.event-tile {
  display: grid;
  grid-template-rows: 100px 1fr;
}

.event-tile .event-image,
.feature-card .feature-image,
.story-card .story-image {
  background-image: var(--story-image, url("assets/beauty-hero.png"));
  background-size: cover;
  background-position: var(--hero-pos, center);
}

.event-tile h3,
.feature-card h3,
.story-card h3 {
  margin: 8px 9px 2px;
  font-size: 12px;
  line-height: 1.2;
}

.event-tile p,
.feature-card p,
.story-card p {
  margin: 0 9px 10px;
  color: #625852;
  font-size: 11px;
}

.home-blog-band {
  display: grid;
  grid-template-columns: 0.92fr repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  padding: 12px;
  border-radius: var(--radius);
  background: #1f8f3a;
  color: #ffffff;
}

.home-blog-band--empty {
  grid-template-columns: 1fr;
}

.home-blog-lead {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 12px 10px;
}

.home-blog-lead .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.home-blog-lead h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.home-blog-lead p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.45;
}

.home-blog-lead .pill-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 22px;
  line-height: 1;
  text-decoration: none;
}

.home-blog-lead .pill-button::before {
  content: "";
  width: 0;
  min-height: 1em;
}

.home-blog-lead .pill-button {
  transform: translateY(0);
}

.home-blog-tile {
  display: grid;
  min-width: 0;
  grid-template-rows: 100px 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.home-blog-media {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 28%, rgba(31, 143, 58, 0.16), transparent 34%),
    radial-gradient(circle at 78% 66%, rgba(228, 185, 0, 0.22), transparent 38%),
    var(--soft);
}

.home-blog-media img,
.home-blog-media .blog-sprite {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.home-blog-tile:hover .home-blog-media img,
.home-blog-tile:hover .home-blog-media .blog-sprite {
  transform: scale(1.035);
}

.home-blog-fallback {
  display: grid;
  min-height: 100%;
  place-items: center;
  color: #625852;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.home-blog-copy {
  display: grid;
  gap: 5px;
  padding: 9px;
}

.home-blog-copy .blog-meta {
  gap: 6px;
  color: #7a6a64;
  font-size: 9px;
  line-height: 1.2;
}

.home-blog-copy .blog-meta span + span::before {
  width: 3px;
  height: 3px;
  margin-right: 6px;
}

.home-blog-copy h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.home-blog-copy h3 a:hover {
  text-decoration: underline;
}

.home-blog-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #625852;
  font-size: 11px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-card .feature-image {
  aspect-ratio: 1.55;
}

.gift-banner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 160px;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, #f1ffcf 0%, #dffff1 52%, #ffe9cc 100%);
}

.gift-copy {
  padding: 38px 46px;
}

.gift-copy h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.gift-copy p {
  margin: 0 0 12px;
  color: var(--muted);
}

.gift-image {
  background-image: url("assets/home-gift-finder.svg");
  background-size: cover;
  background-position: center;
}

.obsession-strip {
  display: grid;
  grid-template-columns: 0.58fr repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(135deg, #fff8be 0%, #fff0ce 42%, #e1ffd9 100%);
}

.obsession-copy {
  padding: 16px;
  align-self: center;
}

.obsession-copy h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 0.98;
}

.story-card .story-image {
  aspect-ratio: 1.35;
}

.coupon-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 12px 18px;
  border-radius: 4px;
  background: #f5f8d9;
}

.coupon-band strong {
  display: block;
  font-size: 13px;
}

.coupon-band span {
  color: var(--muted);
  font-size: 11px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px 24px;
  text-align: center;
}

.category-card {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 0;
}

.category-media {
  width: min(104px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #f1f7d8;
}

.category-sprite {
  width: 100%;
  height: 100%;
}

.category-card span {
  font-size: 12px;
  font-weight: 650;
}

.magazine-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.story-card .story-image.tall {
  aspect-ratio: 1.2;
}

.shop-hero {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  min-height: 164px;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--hot), var(--orange));
  color: #ffffff;
}

.shop-hero-copy {
  padding: 28px 36px;
}

.shop-hero-copy h1 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.04;
  text-transform: uppercase;
}

.shop-hero-copy p {
  margin: 0;
  max-width: 410px;
}

.shop-hero-image {
  align-self: stretch;
  min-height: 164px;
  background-image: var(--shop-hero-image, url("assets/shop-hero-fresh.png"));
  background-size: cover;
  background-position: 64% 50%;
}

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

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

.filter-chip,
.shade-chip {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  padding: 0 13px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 680;
  cursor: pointer;
}

.filter-chip.is-active,
.shade-chip.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.review-write-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.sort-select {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  padding: 0 32px 0 10px;
  color: var(--ink);
}

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

.load-more {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 34px 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0;
}

.breadcrumbs a {
  text-decoration: underline;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.85fr);
  gap: 54px;
  align-items: start;
}

.gallery {
  position: sticky;
  top: 112px;
}

.gallery-main {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--soft);
}

.large-sprite {
  width: 100%;
  height: 100%;
}

.try-on {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-height: 30px;
  border: 0;
  border-radius: 2px;
  background: #ffffff;
  padding: 0 13px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 2px;
  background: var(--soft);
  cursor: pointer;
}

.thumb.is-active {
  border-color: var(--ink);
}

.thumbnail-sprite {
  width: 100%;
  height: 100%;
}

.product-info h1 {
  margin: 4px 0 8px;
  font-size: 24px;
  line-height: 1.12;
}

.product-info .brand {
  font-size: 12px;
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  font-size: 12px;
}

.detail-rating a {
  text-decoration: underline;
}

.detail-price {
  margin: 14px 0 4px;
  color: var(--hot);
  font-size: 18px;
  font-weight: 850;
}

.detail-price s {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  margin-left: 8px;
}

.points-note {
  color: var(--gold);
  font-size: 12px;
}

.shade-section,
.delivery-section,
.routine-box,
.bought-box {
  margin-top: 20px;
}

.shade-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.shade-head strong {
  display: block;
  font-size: 13px;
}

.shade-grid {
  display: grid;
  grid-template-columns: repeat(9, 28px);
  gap: 8px;
}

.shade-dot {
  width: 28px;
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 2px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shade-dot span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--shade);
}

.shade-dot-label {
  font-size: 8px;
  line-height: 1;
  font-weight: 650;
  color: #1f1f1f;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.shade-dot.is-active {
  border-color: var(--ink);
}

.variant-option-groups {
  display: grid;
  gap: 14px;
}

.variant-option-group {
  display: grid;
  gap: 8px;
}

.variant-option-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.variant-option-head strong {
  font-size: 13px;
}

.variant-option-head span {
  color: var(--muted);
  font-size: 11px;
}

.variant-option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-option-button {
  min-height: 40px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 720;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.variant-option-button:hover:not(:disabled) {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.variant-option-button.is-active {
  border-color: var(--ink);
  background: #ffffff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink), 0 10px 20px rgba(19, 26, 22, 0.1);
}

.variant-option-button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.variant-option-button--color {
  width: 42px;
  height: 40px;
  padding: 6px;
}

.variant-option-swatch {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 7px;
  background: var(--shade);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.62);
}

.delivery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.delivery-card {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  font-size: 11px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.delivery-card:hover {
  border-color: var(--ink);
}

.delivery-card:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.delivery-card.is-active {
  border-color: var(--ink);
  background: #f7fbef;
}

.delivery-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 14px;
}

.detail-actions .black-button {
  min-height: 42px;
}

.favorite-button {
  width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
}

.promo-box {
  margin-top: 12px;
  padding: 12px;
  border-radius: 4px;
  background: #fff5ec;
  font-size: 12px;
}

.accordion {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item button {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 0;
  font-weight: 760;
  cursor: pointer;
}

.accordion-body {
  display: none;
  padding: 0 0 14px;
  color: #3e3632;
  font-size: 12px;
}

.accordion-item.is-open .accordion-body {
  display: block;
}

.product-spec-list {
  display: grid;
  gap: 0;
  margin: 2px 0 0;
}

.product-spec-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid rgba(35, 31, 29, 0.08);
}

.product-spec-row:first-child {
  border-top: 0;
}

.product-spec-row dt,
.product-spec-row dd {
  margin: 0;
}

.product-spec-row dt {
  color: var(--muted);
  font-weight: 760;
}

.product-spec-row dd {
  color: #241f1c;
  overflow-wrap: anywhere;
}

.bought-box,
.routine-box {
  padding: 14px;
  border-radius: 6px;
  background: var(--soft-2);
}

.routine-box {
  display: grid;
  gap: 10px;
  border: 1px solid #edf0c8;
  background:
    radial-gradient(circle at 92% 8%, rgba(228, 185, 0, 0.16), transparent 30%),
    linear-gradient(135deg, #fffdf1, #f4fae9);
}

.routine-box h2 {
  margin: 0 0 2px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.mini-product {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.mini-product:last-child {
  border-bottom: 0;
}

.mini-media {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--soft);
  overflow: hidden;
}

.mini-product-link,
.mini-product-title-link {
  color: inherit;
  text-decoration: none;
}

.mini-product-link:hover,
.mini-product-title-link:hover {
  text-decoration: underline;
}

.mini-product h4 {
  margin: 0 0 3px;
  font-size: 12px;
  line-height: 1.2;
}

.mini-product p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.routine-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #ffffff;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.routine-step + .routine-step {
  margin-top: 0;
}

.routine-step:hover {
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
  transform: translateY(-1px);
}

.product-gallery-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
}

.product-gallery-badges .product-favorite-overlay {
  position: static;
}

.product-purchased-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(49, 135, 85, 0.28);
  border-radius: 999px;
  background: rgba(234, 250, 239, 0.96);
  color: #267044;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: -0.01em;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.routine-step-media {
  border-radius: 12px;
}

.routine-step-label {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-bottom: 4px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--hot);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.routine-step h4 {
  margin: 0 0 3px;
  font-size: 13px;
  line-height: 1.2;
}

.routine-step p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.routine-step-title-link {
  color: inherit;
  text-decoration: none;
}

.routine-step-media:hover,
.routine-step-title-link:hover {
  text-decoration: underline;
}

.reviews-block {
  margin: 50px 0 20px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.rating-section,
.comments-section {
  margin: clamp(54px, 7vw, 96px) 0 20px;
  color: #141210;
  font-family: inherit;
}

.rating-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(38px, 7vw, 86px) clamp(18px, 4vw, 44px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 25%, rgba(31, 114, 210, 0.08), transparent 32%),
    linear-gradient(135deg, #f7f7f6, #eeeeec);
}

.rating-score-copy {
  text-align: center;
}

.rating-score-copy strong {
  display: block;
  font-size: clamp(76px, 12vw, 138px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.84;
}

.rating-score-copy small {
  margin-left: 8px;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: -0.02em;
}

.rating-score-copy p {
  max-width: 390px;
  margin: 28px auto 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.rating-panel {
  display: grid;
  gap: 18px;
}

.rating-panel-head {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.rating-panel-head .review-card-stars {
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1;
}

.rating-panel-head .stars {
  font-size: inherit;
}

.rating-overview-list {
  display: grid;
  gap: 9px;
}

.rating-overview-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(150px, 190px) minmax(70px, 0.4fr);
  gap: 18px;
  align-items: center;
  font-size: 19px;
  line-height: 1.2;
}

.rating-overview-row b {
  height: 6px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #dce8ee;
}

.rating-overview-row i {
  width: var(--rating-progress, 0%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--hot);
}

.rating-overview-row em {
  color: #211c18;
  font-style: normal;
}

.rating-action-button,
.rating-submit-button,
.comment-save-button {
  justify-self: start;
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: none;
}

.rating-action-button:hover,
.rating-submit-button:hover,
.comment-save-button:hover {
  background: var(--hot);
}

.rating-action-button:disabled,
.rating-submit-button:disabled,
.comment-save-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.rating-action-user {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 720;
  text-transform: none;
}

.rating-action-user img {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  object-fit: cover;
}

.rating-editor-form,
.comment-editor-form {
  grid-column: 1 / -1;
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.rating-editor-form[hidden],
.comment-editor-form[hidden] {
  display: none;
}

.rating-editor-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.rating-editor-head p {
  max-width: 720px;
  margin: 0;
  color: #2c333a;
  font-size: 20px;
  line-height: 1.5;
}

.comments-section {
  display: grid;
  gap: 28px;
}

.comments-section > h2 {
  margin: 8px 0 0;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.comment-composer-card {
  width: 100%;
  display: grid;
  gap: 8px;
  place-items: center;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: #a9a9a9;
  cursor: pointer;
  text-align: center;
  box-shadow: none;
}

.comment-composer-card[hidden],
.rating-action-button[hidden] {
  display: none;
}

.comment-composer-card:hover {
  color: #25211d;
}

.comment-composer-card span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  background: #b9b9b9;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.comment-composer-card strong {
  font-size: clamp(14px, 1.6vw, 17px);
  font-style: normal;
  font-weight: 640;
  line-height: 1.25;
}

.comment-composer-card small {
  color: #9f9792;
  font-size: clamp(11px, 1.3vw, 13px);
  font-style: normal;
  line-height: 1.35;
}

.comment-editor-form {
  background: transparent;
  box-shadow: none;
}

.comment-editor-form .review-text-field {
  gap: 8px;
  color: #3d3531;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comment-editor-form textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: 450 15px/1.65 inherit;
  outline: none;
}

.comment-editor-form textarea:focus {
  border-color: var(--hot);
}

.comments-empty-state {
  margin: 0;
  padding: 16px 0;
  color: var(--muted);
  font-size: 13px;
}

.comment-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.plain-action-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #3d3531;
  cursor: pointer;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plain-action-button:hover {
  border-color: var(--hot);
  color: var(--hot);
}

.review-summary {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 24px;
  align-items: start;
}

.rating-big {
  font-size: 26px;
  font-weight: 860;
}

.review-bars {
  display: grid;
  gap: 7px;
}

.bar-row {
  display: grid;
  grid-template-columns: 38px 1fr 34px;
  gap: 8px;
  align-items: center;
  font-size: 11px;
}

.bar-track {
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: #eee7e2;
}

.bar-fill {
  height: 100%;
  width: var(--value);
  background: var(--ink);
}

.review-card {
  margin-top: 20px;
  padding: clamp(20px, 2.7vw, 32px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: none;
}

.review-comment-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.review-card-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}

.review-avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--hot);
  outline: 2px solid #e6f4e8;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.04em;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.review-comment-author {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.review-comment-name-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.review-buyer-badge {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #4caf50;
  color: #fff;
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
}

.review-owner-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border: 1px solid #d8e8c9;
  border-radius: 999px;
  background: #f4faee;
  color: #3d6f23;
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
}

.review-comment-date {
  color: #8a817b;
  font-size: 12px;
  line-height: 1.35;
}

.review-card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.review-card-action {
  width: auto;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.review-card-action svg {
  width: 15px;
  height: 15px;
  display: block;
  pointer-events: none;
}

.review-card-action span {
  display: inline-block;
  white-space: nowrap;
}

.review-card-action:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.review-card-action-delete {
  color: #c7352f;
}

.review-card-action-delete:hover {
  border-color: #c7352f;
  background: #c7352f;
  color: #fff;
}

.review-comment-score-row {
  display: flex;
  gap: clamp(18px, 4vw, 48px);
  align-items: flex-start;
  justify-content: space-between;
  margin: 20px 0 18px;
}

.review-comment-ratings {
  display: grid;
  gap: 4px;
  min-width: min(100%, 420px);
  max-width: 520px;
}

.review-comment-rating-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(90px, 168px) minmax(58px, auto);
  gap: 14px;
  align-items: center;
  color: #645a54;
  font-size: 13px;
  line-height: 1.3;
}

.review-comment-rating-row b {
  height: 5px;
  display: block;
  overflow: hidden;
  border-radius: 99px;
  background: #dce8ee;
}

.review-comment-rating-row i {
  width: var(--rating-progress, 0%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--hot);
}

.review-comment-rating-row em {
  color: #4b443d;
  font-style: normal;
  font-size: 13px;
  font-weight: 680;
}

.review-card-stars {
  flex: 0 0 auto;
  margin-left: auto;
  color: #ff9f16;
  font-size: clamp(42px, 4.4vw, 64px);
  letter-spacing: -1.5px;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .review-card-stars {
    font-size: clamp(72px, 5.6vw, 96px);
    letter-spacing: -4px;
  }
}

.review-card-stars .stars {
  color: inherit;
  display: inline-block;
  font-size: clamp(18px, 1.9vw, 26px);
  letter-spacing: -0.4px;
  line-height: 0.9;
}

@media (min-width: 900px) {
  .review-card-stars .stars {
    font-size: clamp(22px, 1.45vw, 28px);
    letter-spacing: -0.7px;
  }
}

.review-comment-body {
  margin: 0;
  color: #5f5751;
  font-family: inherit;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 420;
  line-height: 1.68;
  letter-spacing: 0;
}

@media (max-width: 720px) {
  .rating-section {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .rating-panel-head {
    justify-content: flex-start;
  }

  .rating-overview-row {
    grid-template-columns: 1fr;
    gap: 7px;
    font-size: 16px;
  }

  .rating-action-button,
  .rating-submit-button,
  .comment-save-button {
    width: 100%;
    min-width: 0;
  }

  .comment-editor-actions {
    display: grid;
  }

  .review-comment-top,
  .review-comment-score-row {
    display: grid;
  }

  .review-card-actions {
    justify-content: flex-start;
  }

  .review-comment-rating-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .review-card-stars {
    font-size: 24px;
  }
}

.review-rating-field {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.review-rating-field legend {
  padding: 0;
  color: #1f1a17;
  font-size: 12px;
  font-weight: 760;
}

.review-criteria-list {
  display: grid;
  gap: 12px;
}

.review-criterion {
  display: grid;
  grid-template-columns: minmax(120px, 0.65fr) minmax(112px, 0.45fr) minmax(240px, 1fr);
  gap: 12px;
  align-items: center;
}

.review-criterion-label {
  min-width: 0;
  color: #1f1a17;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.25;
}

.review-rating-meter {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.review-rating-meter span {
  color: #1f1a17;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-rating-meter b {
  height: 7px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #eee7e2;
}

.review-rating-meter i {
  width: var(--rating-progress, 0%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--hot);
  transition: width 160ms ease;
}

.review-rating-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(34px, 1fr));
  gap: 6px;
  align-items: center;
}

.review-rating-choice {
  min-width: 0;
  cursor: pointer;
}

.review-rating-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.review-rating-choice span {
  min-height: 46px;
  padding: 6px 4px;
  display: grid;
  place-items: center;
  gap: 1px;
  border: 1px solid #d9e2c8;
  border-radius: 999px;
  background: #ffffff;
  color: #4b443d;
  font-size: 12px;
  font-weight: 820;
  transition:
    background 140ms ease,
    border-color 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.review-rating-choice strong {
  font: inherit;
  line-height: 1;
}

.review-rating-choice small {
  max-width: 100%;
  overflow: hidden;
  color: inherit;
  font-size: 8px;
  font-weight: 760;
  line-height: 1;
  opacity: 0.76;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.review-rating-choice:hover span {
  border-color: var(--hot);
  transform: translateY(-1px);
}

.review-rating-choice input:checked + span {
  border-color: var(--hot);
  background: var(--hot);
  color: #ffffff;
}

.review-rating-choice input:focus-visible + span {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.review-criterion.is-disabled {
  opacity: 0.56;
}

.review-criterion.is-disabled .review-rating-choice {
  cursor: not-allowed;
}

.review-star-picker {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 3px;
  width: fit-content;
}

.review-rating-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.review-rating-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #d8cec6;
  cursor: pointer;
  transition:
    color 140ms ease,
    transform 140ms ease,
    background 140ms ease;
}

.review-rating-star svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.2;
}

.review-rating-star:hover,
.review-rating-star:hover ~ .review-rating-star,
.review-rating-input:checked + .review-rating-star,
.review-rating-input:checked + .review-rating-star ~ .review-rating-star {
  color: var(--orange);
}

.review-rating-star:hover {
  background: #fff5ec;
  transform: translateY(-1px);
}

.review-rating-input:focus-visible + .review-rating-star {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.review-text-field {
  display: grid;
  gap: 7px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: stretch;
  margin: 18px 0 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 84% 18%, rgba(228, 185, 0, 0.22), transparent 34%),
    linear-gradient(135deg, #f3f8e9, #ffffff 56%, #fff5ec);
}

.blog-hero h1 {
  max-width: 620px;
  margin: 8px 0 10px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.blog-hero p {
  max-width: 520px;
  margin: 0;
  color: #4a3d38;
  font-size: 14px;
}

.blog-preview-grid,
.blog-grid {
  display: grid;
  gap: 16px;
}

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

.blog-grid {
  margin-top: 18px;
}

.blog-filter-bar {
  margin-top: 4px;
}

.blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.blog-card--compact {
  display: grid;
  grid-template-rows: auto 1fr;
}

.blog-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1.28;
  overflow: hidden;
  background: var(--soft);
}

.blog-card-media img,
.blog-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-media--fallback {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 22% 26%, rgba(31, 143, 58, 0.2), transparent 32%),
    radial-gradient(circle at 84% 72%, rgba(228, 185, 0, 0.24), transparent 36%),
    var(--soft-2);
  color: var(--hot);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-sprite {
  width: 100%;
  height: 100%;
}

.blog-card-copy {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}

.blog-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--orange);
  vertical-align: middle;
}

.blog-card h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.blog-card h2 a:hover {
  text-decoration: underline;
}

.blog-card p {
  margin: 0;
  color: #3d3531;
  font-size: 12px;
}

.blog-empty-card {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--muted);
  text-align: center;
}

.blog-article {
  max-width: 820px;
  margin: 0 auto;
}

.blog-article-head {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  text-align: center;
}

.blog-article-head .blog-meta {
  justify-content: center;
}

.blog-article-head h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.blog-article-head p {
  max-width: 640px;
  margin: 0 auto;
  color: #3d3531;
  font-size: 15px;
}

.blog-article-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1.8;
  overflow: hidden;
  border-radius: 16px;
  background: var(--soft);
}

.blog-article-body {
  margin: 28px auto 0;
  color: #2b2421;
  font-size: 15px;
  line-height: 1.75;
}

.blog-article-body h2,
.blog-article-body h3 {
  margin: 28px 0 10px;
  line-height: 1.12;
}

.blog-article-body p {
  margin: 0 0 16px;
}

.blog-article-body img {
  border-radius: 12px;
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.78fr) 0.9fr 1.1fr;
  gap: 28px;
  padding: 46px 0 36px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
}

.footer-grid h3 {
  margin: 0 0 10px;
  font-size: 12px;
}

.footer-grid p,
.footer-grid a {
  color: #4d4541;
  font-size: 11px;
}

.footer-grid nav,
.footer-pitch {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qr-box {
  width: 86px;
  aspect-ratio: 1;
  border: 6px solid #ffffff;
  background:
    linear-gradient(90deg, #000 10px, transparent 10px) 0 0 / 22px 22px,
    linear-gradient(#000 10px, transparent 10px) 0 0 / 22px 22px,
    #ffffff;
  outline: 1px solid var(--line);
}

.store-badges {
  display: grid;
  gap: 5px;
  margin-top: 8px;
}

.store-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 4px;
  background: #000000;
  color: #ffffff;
  font-size: 10px;
}

.signup-card {
  padding: 16px;
  border-top: 8px solid var(--orange);
  background: #f7fbdf;
}

.signup-card form {
  display: grid;
  gap: 8px;
}

.signup-card input {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 10px;
}

.signup-card button {
  justify-self: start;
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  border-bottom: 3px solid var(--hot);
}

.footer-bottom .page-shell {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 180ms ease;
}

.cart-drawer.is-open .cart-scrim {
  background: rgba(0, 0, 0, 0.28);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(390px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #ffffff;
  box-shadow: -22px 0 48px rgba(0, 0, 0, 0.18);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

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

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

.cart-head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.cart-head strong {
  font-size: 20px;
}

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

.cart-empty {
  padding: 30px 0;
  color: var(--muted);
  text-align: center;
}

.cart-status {
  margin: 8px 0 10px;
  padding: 10px 12px;
  border: 1px solid #d8ead3;
  border-radius: 10px;
  background: #f3faef;
  color: #235226;
  font-size: 12px;
}

.cart-status--error {
  border-color: #ffd0dc;
  background: #fff4f7;
  color: #9b163f;
}

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

.cart-item.is-updating {
  opacity: 0.72;
}

.cart-item-media {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--soft);
  overflow: hidden;
}

.cart-item-link,
.cart-item-title-link {
  color: inherit;
  text-decoration: none;
}

.cart-item-link:hover,
.cart-item-title-link:hover {
  text-decoration: underline;
}

.cart-item h3 {
  margin: 0 0 3px;
  font-size: 12px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.cart-variant-details,
.checkout-variant-details {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 6px 0 0;
}

.cart-variant-details div,
.checkout-variant-details div {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 3px 7px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  background: #f7f7f4;
}

.variant-detail-swatch {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border: 1px solid rgba(29, 29, 31, 0.18);
  border-radius: 999px;
  background: var(--variant-swatch, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.cart-variant-details dt,
.checkout-variant-details dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-variant-details dd,
.checkout-variant-details dd {
  margin: 0;
  overflow: hidden;
  color: #1d1d1f;
  font-size: 10px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

.cart-item-prices strong {
  font-size: 12px;
}

.cart-item-prices span {
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.cart-remove {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hot);
  font-size: 11px;
  font-weight: 750;
  text-decoration: underline;
  cursor: pointer;
}

.qty-stepper {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-height: 34px;
}

.qty-stepper button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
}

.qty-input {
  width: 48px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.qty-stepper button:disabled,
.qty-input:disabled,
.cart-remove:disabled,
.cart-summary button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.cart-item-sync {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-summary {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
}

.cart-summary .cart-total-row {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.cart-summary p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.cart-summary button {
  width: 100%;
  min-height: 44px;
}

.checkout-page {
  margin-top: 4px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: start;
}

.checkout-form-box {
  min-width: 0;
}

.checkout-panel,
.checkout-summary-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
}

.checkout-form-box h1 {
  margin: 0 0 6px;
  font-size: 28px;
}

.checkout-form-fields {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

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

.checkout-form-fields label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
}

.checkout-form-fields input,
.checkout-form-fields textarea,
.checkout-form-fields select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 10px;
  outline: none;
  font-size: 12px;
  resize: vertical;
}

.checkout-form-fields textarea {
  padding-top: 9px;
}

.checkout-form-fields input:focus,
.checkout-form-fields textarea:focus {
  border-color: var(--ink);
}

.checkout-login-note {
  margin: 8px 0 0;
  font-size: 11px;
  color: var(--muted);
}

.checkout-payment-options {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.checkout-payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.checkout-payment-option.is-active,
.checkout-payment-option:has(input:checked) {
  border-color: var(--ink);
  background: #f7fbef;
}

.checkout-payment-option input {
  accent-color: var(--hot);
}

.checkout-payment-option strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.checkout-payment-option small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.checkout-payment-option em {
  display: inline-flex;
  width: fit-content;
  margin-top: 7px;
  border-radius: 999px;
  background: rgba(19, 26, 22, 0.08);
  color: var(--ink);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  text-transform: uppercase;
}

.checkout-status {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid #d8ead3;
  border-radius: 8px;
  background: #f3faef;
  color: #235226;
  font-size: 12px;
}

.checkout-status p {
  margin: 0 0 4px;
}

.checkout-status p:last-child {
  margin-bottom: 0;
}

.checkout-status--error {
  border-color: #ffd0dc;
  background: #fff4f7;
  color: #9b163f;
}

.checkout-summary-box h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

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

.checkout-line-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed #d8dfbc;
}

.checkout-line-item:last-child {
  border-bottom: 0;
}

.checkout-line-media {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--soft);
  overflow: hidden;
}

.checkout-line-link,
.checkout-title-link {
  color: inherit;
  text-decoration: none;
}

.checkout-line-link:hover,
.checkout-title-link:hover {
  text-decoration: underline;
}

.checkout-line-item h4 {
  margin: 0 0 4px;
  font-size: 12px;
}

.checkout-line-item p {
  margin: 0;
}

.checkout-variant-details {
  margin-bottom: 4px;
}

.checkout-line-pricing {
  text-align: right;
  font-size: 12px;
}

.checkout-line-pricing strong {
  display: block;
  margin-top: 3px;
}

.checkout-summary-total {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.checkout-summary-total div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.checkout-summary-total-final {
  font-size: 13px;
  font-weight: 700;
}

.stripe-payment-page {
  max-width: 1080px;
  margin-inline: auto;
}

.stripe-payment-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 520px);
  gap: 22px;
  align-items: stretch;
}

.stripe-payment-copy,
.stripe-payment-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(36, 58, 44, 0.08);
}

.stripe-payment-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 143, 58, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f5fbef 100%);
}

.stripe-payment-copy h1 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.stripe-payment-copy p {
  max-width: 430px;
  margin: 0;
  color: #56514b;
  font-size: 15px;
  line-height: 1.55;
}

.stripe-payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stripe-payment-badges span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: #edf7e8;
  color: #126a32;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
}

.stripe-payment-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.stripe-payment-element {
  min-height: 180px;
}

.stripe-payment-submit {
  width: 100%;
  min-height: 48px;
  justify-content: center;
}

.stripe-payment-message {
  min-height: 18px;
  margin: 0;
  color: #b00020;
  font-size: 13px;
}

@media (max-width: 980px) {
  .stripe-payment-shell {
    grid-template-columns: 1fr;
  }

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

  .checkout-form-box h1 {
    font-size: 22px;
  }

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

.floating-help {
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 20;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(135deg, var(--hot), var(--orange));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(242, 10, 99, 0.25);
  cursor: pointer;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 60;
  min-width: 220px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  padding: 11px 18px;
  text-align: center;
  font-size: 12px;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 980px) {
  .utility-inner nav {
    display: none;
  }

  .nav-inner {
    grid-template-columns: auto auto 1fr auto;
    gap: 12px;
  }

  .menu-button {
    display: inline-grid;
  }

  .primary-links {
    position: fixed;
    top: 93px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 16px;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
  }

  .primary-links.is-open {
    display: flex;
  }

  .primary-links a {
    padding: 13px 0;
  }

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

  .promo-grid,
  .shop-hero,
  .product-detail-layout,
  .gift-banner,
  .review-summary,
  .blog-hero {
    grid-template-columns: 1fr;
  }

  .review-criterion {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-carousel {
    min-height: 460px;
  }

  .hero-slide {
    align-items: start;
    padding: 34px 28px 86px;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.76) 48%, rgba(255, 255, 255, 0.04) 100%),
      var(--hero-image);
    background-position: center, center bottom;
  }

  .hero-copy {
    width: min(520px, 100%);
  }

  .promo-card {
    min-height: 180px;
  }

  .promo-body,
  .promo-card.hot .promo-body {
    max-width: 76%;
  }

  .product-row,
  .feature-grid,
  .magazine-row,
  .editorial-row,
  .blog-preview-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .event-lead,
  .obsession-copy {
    grid-column: 1 / -1;
  }

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

  .gallery {
    position: static;
  }

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

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 24px, var(--page));
  }

  .utility-inner {
    justify-content: center;
    text-align: center;
  }

  .nav-inner {
    min-height: 58px;
  }

  .brand-mark {
    font-size: 18px;
  }

  .nav-actions .icon-button:first-child {
    display: none;
  }

  .hero-carousel {
    min-height: 420px;
    border-radius: 8px;
  }

  .hero-slide {
    padding: 26px 18px 78px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy p {
    margin: 12px 0 16px;
    font-size: 13px;
  }

  .hero-copy .pill-button {
    min-height: 42px;
    padding: 0 22px;
    font-size: 13px;
  }

  .hero-controls {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-arrow {
    width: 34px;
    height: 34px;
  }

  .promo-body,
  .promo-card.hot .promo-body {
    max-width: 92%;
    padding: 16px;
  }

  .promo-body h1 {
    font-size: 22px;
  }

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

  .product-row,
  .deal-row,
  .shop-grid,
  .feature-grid,
  .magazine-row,
  .editorial-row,
  .blog-preview-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-hero {
    padding: 18px;
  }

  .blog-article-media {
    aspect-ratio: 1.2;
    border-radius: 12px;
  }

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

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .shade-grid {
    grid-template-columns: repeat(7, 28px);
  }

  .delivery-cards {
    grid-template-columns: 1fr;
  }

  .thumb-row {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom .page-shell {
    align-items: start;
    flex-direction: column;
    padding: 12px 0;
  }
}

.account-order-history-list {
  display: grid;
  gap: 16px;
}

.account-order-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(24, 22, 18, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 241, 229, 0.78));
  box-shadow: 0 18px 42px rgba(66, 50, 32, 0.08);
}

.account-order-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.account-order-card-head h2 {
  margin: 4px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.account-order-date {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-order-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(141, 170, 75, 0.16);
  color: #4f671f;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.account-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-order-meta span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(24, 22, 18, 0.06);
  color: var(--ink);
  font-weight: 800;
}

.account-order-items {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.account-order-items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(24, 22, 18, 0.08);
  color: var(--muted);
}

.account-order-items li strong {
  color: var(--ink);
}

@media (max-width: 640px) {
  .account-order-card-head {
    display: grid;
  }

  .account-order-status {
    justify-self: flex-start;
  }
}

.account-orders-hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(20px, 4vw, 32px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 12%, rgba(220, 177, 103, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 239, 0.98), rgba(240, 247, 220, 0.86));
  border: 1px solid rgba(74, 58, 35, 0.1);
  box-shadow: 0 24px 60px rgba(66, 48, 28, 0.1);
}

.account-orders-hero h1 {
  margin: 6px 0 10px;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 0.95;
}

.account-orders-hero p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.account-orders-stats {
  display: grid;
  min-width: min(320px, 100%);
  gap: 10px;
}

.account-orders-stats span {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(24, 22, 18, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.account-orders-stats small,
.account-order-meta small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-orders-stats strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.account-order-card {
  position: relative;
  overflow: hidden;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(43, 37, 27, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 241, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(141, 170, 75, 0.18), transparent 32%);
}

.account-order-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 22, 18, 0.12), transparent);
}

.account-order-card-ribbon {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #8daa4b, #d8b051);
}

.account-order-card--danger .account-order-card-ribbon {
  background: linear-gradient(180deg, #b35b44, #e5a07a);
}

.account-order-card--warning .account-order-card-ribbon {
  background: linear-gradient(180deg, #d8a23a, #efe08f);
}

.account-order-card--neutral .account-order-card-ribbon {
  background: linear-gradient(180deg, #8b8374, #d5cab6);
}

.account-order-title-block {
  display: grid;
  gap: 4px;
}

.account-order-title-block h2 {
  margin: 0;
}

.account-order-eyebrow {
  color: #7b8e34;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.account-order-date {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  letter-spacing: 0;
  text-transform: none;
}

.account-order-status {
  border: 1px solid transparent;
}

.account-order-status--success {
  background: rgba(141, 170, 75, 0.16);
  border-color: rgba(141, 170, 75, 0.28);
  color: #4f671f;
}

.account-order-status--warning {
  background: rgba(216, 162, 58, 0.16);
  border-color: rgba(216, 162, 58, 0.28);
  color: #805313;
}

.account-order-status--danger {
  background: rgba(179, 91, 68, 0.14);
  border-color: rgba(179, 91, 68, 0.25);
  color: #923d29;
}

.account-order-status--neutral {
  background: rgba(24, 22, 18, 0.07);
  border-color: rgba(24, 22, 18, 0.1);
  color: var(--ink);
}

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

.account-order-meta span {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(24, 22, 18, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.account-order-meta strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.account-order-items-wrap {
  padding: 14px 16px 4px;
  border-radius: 20px;
  background: rgba(247, 242, 231, 0.72);
}

.account-order-items-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.account-order-items-head strong {
  color: var(--muted);
  font-size: 0.84rem;
}

.account-order-items li {
  border-top-color: rgba(24, 22, 18, 0.07);
}

.account-order-items-empty {
  padding: 14px 16px;
  border: 1px dashed rgba(24, 22, 18, 0.18);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
}

.account-order-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .account-orders-hero,
  .account-order-card-head,
  .account-order-footer {
    display: grid;
  }

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

/* Apple-like compact order history */
.account-profile-panel:has(.account-orders-hero) {
  background: linear-gradient(180deg, rgba(250, 250, 252, 0.92), rgba(245, 245, 247, 0.86));
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.account-orders-hero {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.96), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.86));
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 34px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 24px 70px rgba(0, 0, 0, 0.08);
}

.account-orders-hero h1 {
  color: #1d1d1f;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.account-orders-hero p,
.account-order-date,
.account-order-footer {
  color: #6e6e73;
}

.account-orders-stats span,
.account-order-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 18px 50px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(18px);
}

.account-order-card {
  padding: clamp(16px, 2.5vw, 22px);
  border-radius: 30px;
}

.account-order-card-ribbon,
.account-order-card::after {
  display: none;
}

.account-order-eyebrow {
  color: #0071e3;
}

.account-order-card-head h2,
.account-order-title-block h2 {
  color: #1d1d1f;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.account-order-status {
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}

.account-order-status--success {
  background: rgba(52, 199, 89, 0.13);
  border-color: rgba(52, 199, 89, 0.2);
  color: #248a3d;
}

.account-order-status--warning {
  background: rgba(255, 159, 10, 0.13);
  border-color: rgba(255, 159, 10, 0.2);
  color: #9a5b00;
}

.account-order-status--danger {
  background: rgba(255, 59, 48, 0.12);
  border-color: rgba(255, 59, 48, 0.2);
  color: #c22d23;
}

.account-order-status--neutral {
  background: rgba(142, 142, 147, 0.13);
  border-color: rgba(142, 142, 147, 0.18);
  color: #424245;
}

.account-order-meta {
  gap: 8px;
}

.account-order-meta span {
  gap: 2px;
  padding: 11px 12px;
  border-radius: 18px;
  background: #f5f5f7;
  border-color: rgba(0, 0, 0, 0.04);
}

.account-order-meta strong {
  color: #1d1d1f;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.account-order-status-visual {
  position: relative;
  padding: 8px 2px 0;
}

.account-order-status-line {
  position: absolute;
  top: 19px;
  left: 9%;
  right: 9%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(142, 142, 147, 0.22);
}

.account-order-status-line span {
  display: block;
  width: var(--order-progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0071e3, #5ac8fa);
}

.account-order-status-visual--warning .account-order-status-line span {
  background: linear-gradient(90deg, #ff9f0a, #ffd60a);
}

.account-order-status-visual--danger .account-order-status-line span {
  width: 8%;
  background: linear-gradient(90deg, #ff3b30, #ff9f0a);
}

.account-order-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
}

.account-order-step {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  color: #8e8e93;
  text-align: center;
}

.account-order-step i {
  width: 24px;
  height: 24px;
  border: 3px solid #f5f5f7;
  border-radius: 999px;
  background: #d1d1d6;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.account-order-step small {
  max-width: 100%;
  overflow: hidden;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-order-step.is-complete {
  color: #1d1d1f;
}

.account-order-step.is-complete i {
  background: #0071e3;
  box-shadow: 0 0 0 1px rgba(0, 113, 227, 0.18), 0 4px 12px rgba(0, 113, 227, 0.24);
}

.account-order-step.is-current i {
  background: linear-gradient(135deg, #0071e3, #5ac8fa);
}

.account-order-step.is-danger {
  color: #c22d23;
}

.account-order-step.is-danger i {
  background: #ff3b30;
  box-shadow: 0 0 0 1px rgba(255, 59, 48, 0.18), 0 4px 12px rgba(255, 59, 48, 0.18);
}

.account-order-items-wrap {
  padding: 8px;
  border-radius: 22px;
  background: #f5f5f7;
}

.account-order-items-head {
  margin: 2px 6px 6px;
  color: #1d1d1f;
  font-size: 0.82rem;
}

.account-order-items {
  gap: 0;
}

.account-order-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 5px 7px;
  border-top: 0;
  border-radius: 16px;
}

.account-order-item + .account-order-item {
  margin-top: 3px;
}

.account-order-item:hover {
  background: rgba(255, 255, 255, 0.78);
}

.account-order-item-media {
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 13px;
  background: #fff;
  text-decoration: none;
}

.account-order-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-order-item-media span {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d1d1d6, #f5f5f7);
}

.account-order-item-title {
  min-width: 0;
  overflow: hidden;
  color: #1d1d1f;
  font-size: 0.91rem;
  font-weight: 750;
  letter-spacing: -0.018em;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-order-item-title:hover {
  color: #0071e3;
}

.account-order-item strong {
  min-width: 34px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #1d1d1f;
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 520px) {
  .account-order-step small {
    display: none;
  }

  .account-order-status-line {
    left: 10%;
    right: 10%;
  }
}

.account-order-history-list {
  gap: 22px;
  margin-top: 22px;
}

.account-order-card {
  gap: 20px;
}

.account-order-card-head {
  padding-bottom: 2px;
}

.account-order-status-visual {
  margin: 2px 0 4px;
}

.account-order-products-wrap {
  padding: 12px;
  border-radius: 24px;
  background: #f5f5f7;
}

.account-order-product-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.account-order-thumb {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  overflow: visible;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 17px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 18px rgba(0, 0, 0, 0.055);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.account-order-thumb:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 12px 26px rgba(0, 0, 0, 0.09);
  transform: translateY(-1px);
}

.account-order-thumb img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  object-fit: cover;
}

.account-order-thumb span {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d1d1d6, #f5f5f7);
}

.account-order-thumb b {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 23px;
  height: 23px;
  padding: 0 6px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #1d1d1f;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 19px;
  text-align: center;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
}

@media (max-width: 520px) {
  .account-order-history-list {
    gap: 18px;
    margin-top: 18px;
  }

  .account-order-card {
    gap: 17px;
  }

  .account-order-products-wrap {
    padding: 10px;
  }

  .account-order-thumb {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
}

.account-order-footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.account-order-footer-actions .black-button {
  min-height: 36px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.order-detail-shell {
  display: grid;
  gap: 22px;
}

.order-detail-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 36px;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 255, 255, 0.98), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 247, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 24px 70px rgba(0, 0, 0, 0.08);
}

.order-detail-hero h1 {
  margin: 7px 0 10px;
  color: #1d1d1f;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.order-detail-hero p {
  margin: 0;
  color: #6e6e73;
  font-size: 1rem;
}

.order-detail-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.order-detail-actions .black-button,
.order-detail-actions .text-link {
  min-height: 42px;
  padding: 11px 17px;
  border-radius: 999px;
}

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

.order-detail-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: clamp(16px, 2.6vw, 24px);
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 18px 50px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(18px);
}

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

.order-detail-card h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.028em;
}

.order-detail-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.order-detail-card-head p {
  margin: 5px 0 0;
  color: #6e6e73;
}

.order-detail-fields {
  display: grid;
  gap: 8px;
  margin: 0;
}

.order-detail-fields div {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 38px;
  padding: 9px 11px;
  border-radius: 15px;
  background: #f5f5f7;
}

.order-detail-fields dt {
  color: #6e6e73;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.order-detail-fields dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: #1d1d1f;
  font-weight: 750;
  text-align: right;
}

.order-detail-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.order-detail-product {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 66px;
  padding: 8px 10px;
  border-radius: 20px;
  background: #f5f5f7;
  color: #1d1d1f;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.order-detail-product:hover {
  background: #fff;
  transform: translateY(-1px);
}

.order-detail-product span {
  display: grid;
  width: 54px;
  height: 54px;
  overflow: hidden;
  place-items: center;
  border-radius: 16px;
  background: #fff;
}

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

.order-detail-product i {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d1d1d6, #f5f5f7);
}

.order-detail-product strong {
  min-width: 0;
  overflow: hidden;
  font-size: 0.94rem;
  letter-spacing: -0.018em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-detail-product b {
  padding: 6px 9px;
  border-radius: 999px;
  background: #1d1d1f;
  color: #fff;
  font-size: 0.78rem;
}

@media (max-width: 860px) {
  .order-detail-hero,
  .order-detail-card-head,
  .account-order-footer {
    display: grid;
  }

  .order-detail-actions {
    justify-content: flex-start;
  }

  .order-detail-grid {
    grid-template-columns: 1fr;
  }

  .order-detail-fields div {
    grid-template-columns: 1fr;
  }

  .order-detail-fields dd {
    text-align: left;
  }
}

.account-profile-panel--minimal {
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.055);
}

.account-profile-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account-profile-panel--minimal .account-profile-head {
  margin: 0;
}

.account-profile-panel--minimal .account-profile-head h1 {
  margin: 4px 0 6px;
  color: #1d1d1f;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.048em;
  line-height: 1;
}

.account-profile-panel--minimal .account-profile-head p {
  margin: 0;
  color: #6e6e73;
  line-height: 1.5;
}

.account-profile-kicker {
  color: #0071e3;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-profile-actions--top {
  margin: 0;
  justify-content: flex-end;
}

.account-profile-actions--top .black-button,
.account-profile-actions--top .text-link {
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
}

.account-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 16px;
  margin-top: 18px;
}

.account-profile-side {
  display: grid;
  align-content: start;
  gap: 16px;
}

.account-profile-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 22px;
  background: #f5f5f7;
}

.account-profile-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-profile-card-head span {
  color: #1d1d1f;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.account-profile-card .account-profile-fields {
  gap: 8px;
  margin: 0;
}

.account-profile-card .account-profile-field {
  display: grid;
  grid-template-columns: minmax(92px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 9px 11px;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
}

.account-profile-card .account-profile-field span {
  color: #6e6e73;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.account-profile-card .account-profile-field strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #1d1d1f;
  font-size: 0.92rem;
  font-weight: 760;
  text-align: right;
}

.account-profile-cart-card {
  background: #ffffff;
}

.account-profile-cart-summary {
  display: grid;
  gap: 3px;
  padding: 15px;
  border-radius: 18px;
  background: #f5f5f7;
}

.account-profile-cart-summary strong {
  color: #1d1d1f;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.account-profile-cart-summary span {
  color: #6e6e73;
  font-weight: 720;
}

.account-profile-cart-summary em {
  margin-top: 4px;
  color: #1d1d1f;
  font-style: normal;
  font-weight: 850;
}

.account-profile-cart-preview {
  display: grid;
  gap: 6px;
}

.account-profile-cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 10px;
  border-radius: 13px;
  background: #f5f5f7;
  color: #1d1d1f;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.account-profile-cart-line:hover {
  background: #eeeeef;
  transform: translateY(-1px);
}

.account-profile-cart-product {
  display: grid;
  min-width: 0;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}

.account-profile-cart-thumb {
  display: grid;
  width: 34px;
  height: 34px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 10px;
  background:
    radial-gradient(circle at 24% 24%, rgba(31, 143, 58, 0.16), transparent 34%),
    #ffffff;
  color: #1f8f3a;
  font-size: 0.78rem;
  font-weight: 900;
}

.account-profile-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-profile-cart-text {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.account-profile-cart-title {
  min-width: 0;
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 740;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-profile-cart-variant {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
  overflow: hidden;
  color: #6e6e73;
  font-size: 0.72rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-profile-cart-variant-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.account-profile-cart-swatch {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border: 1px solid rgba(29, 29, 31, 0.18);
  border-radius: 999px;
  background: var(--variant-swatch, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.account-profile-cart-line strong {
  min-width: 32px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #1d1d1f;
  color: #ffffff;
  font-size: 0.72rem;
  text-align: center;
}

.account-profile-cart-line--more strong {
  background: #0071e3;
}

.account-profile-empty {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: #f5f5f7;
}

.account-profile-empty strong {
  color: #1d1d1f;
}

.account-profile-empty p,
.account-profile-shortcut-card p {
  margin: 0;
  color: #6e6e73;
  line-height: 1.55;
}

.account-profile-empty .black-button {
  justify-self: start;
  margin-top: 4px;
}

.account-profile-shortcut-card {
  align-content: space-between;
  min-height: 190px;
  background: linear-gradient(180deg, #ffffff, #f5f5f7);
}

.account-profile-shortcut-card h2 {
  margin: 6px 0 8px;
  color: #1d1d1f;
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.account-profile-shortcut-card .black-button {
  justify-self: start;
  border-radius: 999px;
}

@media (max-width: 860px) {
  .account-profile-hero,
  .account-profile-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .account-profile-actions--top {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .account-profile-card .account-profile-field {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .account-profile-card .account-profile-field strong {
    text-align: left;
  }
}

.black-button,
.text-link,
.account-profile-actions a,
.account-order-footer-actions a,
.order-detail-actions a,
.account-profile-empty .black-button,
.account-profile-shortcut-card .black-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  line-height: 1.05;
  text-align: center;
  vertical-align: middle;
}

.black-button {
  min-height: 42px;
}

.text-link {
  min-height: 32px;
}

.black-button > *,
.text-link > * {
  line-height: inherit;
}
.promo-grid--editorial {
  grid-template-columns: minmax(320px, 1.34fr) repeat(2, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.promo-grid--editorial .promo-card {
  position: relative;
  min-height: 196px;
  overflow: hidden;
  border: 1px solid rgba(27, 112, 57, 0.08);
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(36, 58, 44, 0.1);
}

.promo-card--membership {
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #17833a 0%, #4fb53f 100%);
}

.promo-card--membership .promo-body {
  width: min(520px, 100%);
  padding: 20px 24px;
}

.promo-card--membership h1 {
  max-width: 380px;
  font-size: clamp(24px, 2.65vw, 34px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.promo-card--membership p {
  max-width: 390px;
  font-size: 13px;
  line-height: 1.34;
}

.promo-grid--editorial .pill-button {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  line-height: 1;
}

.promo-card--membership .pill-button {
  min-width: 160px;
  justify-content: center;
  box-shadow: 0 14px 26px rgba(11, 69, 28, 0.2);
}

.promo-card--membership .promo-discs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.promo-card--membership .promo-discs span {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #08752f;
  box-shadow: 0 16px 36px rgba(11, 69, 28, 0.18);
}

.promo-card--membership .promo-discs strong,
.promo-card--membership .promo-discs em {
  display: block;
  font-style: normal;
  line-height: 1;
}

.promo-card--membership .promo-discs strong {
  align-self: end;
  font-size: 9px;
  text-transform: uppercase;
}

.promo-card--membership .promo-discs em {
  align-self: start;
  font-size: 16px;
  font-weight: 950;
}

.promo-card--image {
  display: grid;
  isolation: isolate;
  background: #fff4ed;
}

.promo-card--image > img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 360ms ease;
}

.promo-card--image::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 249, 243, 0.94) 0%, rgba(255, 249, 243, 0.72) 34%, rgba(255, 249, 243, 0.1) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 55%);
}

.promo-card--image:hover > img {
  transform: scale(1.055);
}

.promo-card--image .promo-body {
  display: flex;
  max-width: 238px;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
}

.promo-card--image .eyebrow {
  color: #0c8837;
}

.promo-card--image h2 {
  margin: 7px 0 8px;
  font-size: clamp(22px, 2.05vw, 28px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.promo-card--image p {
  max-width: 220px;
  margin-bottom: 10px;
  color: #30241f;
  font-size: 13px;
  line-height: 1.38;
}

.promo-card--image .pill-button {
  width: fit-content;
  min-width: 124px;
  justify-content: center;
  background: #0f913c;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 145, 60, 0.22);
}

.promo-card--summer::after {
  background:
    linear-gradient(90deg, rgba(245, 255, 249, 0.96) 0%, rgba(245, 255, 249, 0.74) 34%, rgba(255, 249, 230, 0.12) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 55%);
}

@media (max-width: 1080px) {
  .promo-grid--editorial {
    grid-template-columns: 1fr;
  }

  .promo-card--membership,
  .promo-card--image {
    min-height: 196px;
  }

  .promo-card--image .promo-body {
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .promo-card--membership .promo-body,
  .promo-card--image .promo-body {
    padding: 24px;
  }

  .promo-card--membership .promo-discs {
    gap: 8px;
  }

  .promo-card--membership .promo-discs span {
    width: 82px;
    height: 82px;
  }

  .promo-card--membership .promo-discs em {
    font-size: 16px;
  }
}

.quick-buy-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f8f3a, #b8d600);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(31, 143, 58, 0.22);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.quick-buy-trigger:hover {
  box-shadow: 0 18px 38px rgba(31, 143, 58, 0.28);
  transform: translateY(-1px);
}

.quick-buy-panel {
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid rgba(31, 143, 58, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(184, 214, 0, 0.18), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #fbfff2 48%, #f7fbff 100%);
  box-shadow: 0 28px 70px rgba(29, 29, 31, 0.1);
}

.quick-buy-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px 12px;
}

.quick-buy-head h2 {
  margin: 3px 0 4px;
  font-size: 1.55rem;
  letter-spacing: -0.045em;
}

.quick-buy-head p {
  max-width: 520px;
  margin: 0;
  color: #5f6659;
  font-size: 0.9rem;
  line-height: 1.45;
}

.quick-buy-close {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.08);
  color: #1d1d1f;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.quick-buy-grid {
  display: grid;
  gap: 12px;
  padding: 0 20px 20px;
}

.quick-buy-primary-item,
.quick-buy-section,
.quick-buy-mini-bag {
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(29, 29, 31, 0.05);
}

.quick-buy-primary-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
}

.quick-buy-product-media {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  background: var(--soft);
}

.quick-buy-product-media .thumbnail-sprite,
.quick-buy-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-buy-primary-item span {
  color: #6b7166;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-buy-primary-item h3 {
  margin: 3px 0;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.quick-buy-primary-item p {
  margin: 0;
  color: #6e6e73;
  font-size: 0.82rem;
}

.quick-buy-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 7px;
}

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

.quick-buy-price s {
  color: #8d8d92;
  font-size: 0.82rem;
}

.quick-buy-qty {
  display: inline-grid;
  grid-template-columns: 34px 32px 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 999px;
  background: #ffffff;
}

.quick-buy-qty button {
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
}

.quick-buy-qty output {
  color: #1d1d1f;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.quick-buy-mini-bag {
  padding: 10px;
}

.quick-buy-mini-head,
.quick-buy-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quick-buy-mini-head span,
.quick-buy-section > strong,
.quick-buy-section-head strong {
  color: #1d1d1f;
  font-size: 0.86rem;
  font-weight: 900;
}

.quick-buy-mini-head strong,
.quick-buy-section-head span {
  color: #6e6e73;
  font-size: 0.78rem;
  font-weight: 760;
}

.quick-buy-mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 9px;
}

.quick-buy-mini-item,
.quick-buy-mini-more {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 6px;
  border-radius: 12px;
  background: #f5f5f7;
  color: #1d1d1f;
  text-decoration: none;
}

.quick-buy-mini-item.is-current {
  background: #effbdd;
  outline: 1px solid rgba(31, 143, 58, 0.22);
}

.quick-buy-mini-item span {
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
}

.quick-buy-mini-item em {
  min-width: 0;
  overflow: hidden;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-buy-mini-item strong {
  padding: 3px 6px;
  border-radius: 999px;
  background: #1d1d1f;
  color: #ffffff;
  font-size: 0.68rem;
}

.quick-buy-mini-more {
  display: inline-flex;
  justify-content: center;
  grid-column: 1 / -1;
  color: #1f8f3a;
  font-size: 0.78rem;
  font-weight: 900;
}

.quick-buy-section {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.quick-buy-address-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.quick-buy-address-options button {
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
}

.quick-buy-address-options button.is-active {
  border-color: rgba(31, 143, 58, 0.38);
  background: #effbdd;
  color: #1f8f3a;
}

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

.quick-buy-address-form label {
  display: grid;
  gap: 4px;
  color: #6e6e73;
  font-size: 0.72rem;
  font-weight: 800;
}

.quick-buy-address-form input {
  width: 100%;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 12px;
  background: #ffffff;
  color: #1d1d1f;
  font: inherit;
}

.quick-buy-address-form input[readonly] {
  background: #f8f8f6;
  color: #4b4b4f;
}

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

.quick-buy-pay {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #111111 0%, #1f8f3a 100%);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(31, 143, 58, 0.26);
  cursor: pointer;
  font-weight: 900;
}

.quick-buy-pay:disabled {
  cursor: wait;
  opacity: 0.7;
}

.quick-buy-note {
  min-height: 18px;
  margin: 0;
  color: #b00020;
  font-size: 0.82rem;
  font-weight: 760;
}

@media (max-width: 720px) {
  .quick-buy-primary-item,
  .quick-buy-mini-list,
  .quick-buy-address-form {
    grid-template-columns: 1fr;
  }

  .quick-buy-primary-item {
    align-items: stretch;
  }

  .quick-buy-qty {
    width: fit-content;
  }
}
.quick-buy-billing {
  background: linear-gradient(180deg, #fffdf5 0%, #ffffff 100%);
}

.quick-buy-billing-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
  padding: 6px 18px;
}

.quick-buy-billing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
  color: #3f3a31;
  font-size: 0.96rem;
}

.quick-buy-billing-row:last-child {
  border-bottom: 0;
}

.quick-buy-billing-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.25;
}

.quick-buy-billing-row em {
  font-style: normal;
  color: #1f8f3a;
  font-weight: 800;
}

.quick-buy-billing-row strong {
  color: #0f172a;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.quick-buy-billing-row.is-discount strong {
  color: #168237;
}

.quick-buy-billing-total {
  min-height: 54px;
  font-size: 1.08rem;
}

.quick-buy-billing-total span,
.quick-buy-billing-total strong {
  color: #06120a;
  font-size: 1.08rem;
}

.quick-buy-billing-note {
  margin: 10px 2px 0;
  color: #6b6257;
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .quick-buy-billing-card {
    padding: 4px 14px;
    border-radius: 18px;
  }

  .quick-buy-billing-row {
    gap: 12px;
    font-size: 0.92rem;
  }
}
body.quick-buy-open {
  overflow: hidden;
}

.quick-buy-trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid #050505;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quick-buy-trigger:hover {
  background: #1d1d1f;
  border-color: #1d1d1f;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.quick-buy-trigger:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.quick-buy-trigger:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.36);
  outline-offset: 3px;
}

.quick-buy-dialog {
  position: fixed;
  inset: 0;
  z-index: 3000;
  width: 100vw;
  max-width: none;
  min-height: 100dvh;
  margin: 0;
  padding: clamp(18px, 3vw, 42px);
  overflow-y: auto;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #f5f5f7 0%, #ffffff 42%, #f2f2f4 100%);
  color: #1d1d1f;
}

.quick-buy-dialog::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
}

.quick-buy-dialog .quick-buy-head,
.quick-buy-dialog .quick-buy-grid {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin-inline: auto;
}

.quick-buy-dialog .quick-buy-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 0 22px;
}

.quick-buy-dialog .quick-buy-head h2 {
  margin: 6px 0 8px;
  color: #1d1d1f;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.quick-buy-dialog .quick-buy-head p {
  max-width: 520px;
  color: #6e6e73;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.45;
}

.quick-buy-dialog .account-profile-kicker {
  color: #0071e3;
  letter-spacing: 0.04em;
}

.quick-buy-dialog .quick-buy-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: #1d1d1f;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.quick-buy-dialog .quick-buy-close:hover {
  background: rgba(0, 0, 0, 0.14);
  transform: scale(1.04);
}

.quick-buy-dialog .quick-buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 42px;
}

.quick-buy-dialog .quick-buy-primary-item,
.quick-buy-dialog .quick-buy-mini-bag,
.quick-buy-dialog .quick-buy-section,
.quick-buy-dialog .quick-buy-pay,
.quick-buy-dialog .quick-buy-note {
  grid-column: 1;
}

.quick-buy-dialog .quick-buy-section:nth-of-type(2),
.quick-buy-dialog .quick-buy-billing,
.quick-buy-dialog .quick-buy-section:nth-of-type(4),
.quick-buy-dialog .quick-buy-pay,
.quick-buy-dialog .quick-buy-note {
  grid-column: 2;
}

.quick-buy-dialog .quick-buy-primary-item,
.quick-buy-dialog .quick-buy-mini-bag,
.quick-buy-dialog .quick-buy-section {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
}

.quick-buy-dialog .quick-buy-pay {
  min-height: 58px;
  border-radius: 999px;
  background: #050505;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.quick-buy-dialog .quick-buy-pay:hover {
  background: #1d1d1f;
}

@media (max-width: 900px) {
  .quick-buy-dialog {
    padding: 16px;
  }

  .quick-buy-dialog .quick-buy-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .quick-buy-dialog .quick-buy-primary-item,
  .quick-buy-dialog .quick-buy-mini-bag,
  .quick-buy-dialog .quick-buy-section,
  .quick-buy-dialog .quick-buy-pay,
  .quick-buy-dialog .quick-buy-note {
    width: 100%;
  }
}
.quick-buy-dialog .quick-buy-primary-item,
.quick-buy-dialog .quick-buy-mini-bag,
.quick-buy-dialog .quick-buy-address-section {
  grid-column: 1 !important;
}

.quick-buy-dialog .quick-buy-delivery-section,
.quick-buy-dialog .quick-buy-billing,
.quick-buy-dialog .quick-buy-payment-section,
.quick-buy-dialog .quick-buy-pay,
.quick-buy-dialog .quick-buy-note {
  grid-column: 2 !important;
}

@media (max-width: 900px) {
  .quick-buy-dialog .quick-buy-primary-item,
  .quick-buy-dialog .quick-buy-mini-bag,
  .quick-buy-dialog .quick-buy-address-section,
  .quick-buy-dialog .quick-buy-delivery-section,
  .quick-buy-dialog .quick-buy-billing,
  .quick-buy-dialog .quick-buy-payment-section,
  .quick-buy-dialog .quick-buy-pay,
  .quick-buy-dialog .quick-buy-note {
    grid-column: auto !important;
  }
}
.favorite-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #1d1d1f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.favorite-button svg {
  width: 14px;
  height: 14px;
  display: block;
  overflow: visible;
}

.favorite-button path {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 180ms ease, stroke 180ms ease;
}

.favorite-button:hover {
  transform: translateY(-1px) scale(1.03);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.favorite-button:active {
  transform: translateY(0) scale(0.98);
}

.favorite-button:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.32);
  outline-offset: 3px;
}

.favorite-button.is-active {
  color: #ffffff;
  background: #1d1d1f;
  border-color: #1d1d1f;
}

.favorite-button.is-active path {
  fill: currentColor;
  stroke: currentColor;
}

.product-favorite-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
}

@media (max-width: 900px) {
  .gallery {
    position: relative;
  }

  .product-favorite-overlay {
    top: 12px;
    left: 12px;
  }
}
@keyframes quickBuySheetUp {
  from {
    transform: translate3d(0, 100%, 0);
    opacity: 0.96;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.quick-buy-dialog {
  inset: auto 0 0 0;
  height: min(92dvh, 980px);
  min-height: auto;
  padding: clamp(22px, 2.4vw, 34px);
  border-top: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 30px 30px 0 0;
  background: #f5f5f7;
  box-shadow: none;
  animation: quickBuySheetUp 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.quick-buy-dialog::before {
  display: none;
}

.quick-buy-dialog::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.18);
  transform: translateX(-50%);
}

.quick-buy-dialog .quick-buy-head {
  padding: 18px 0 18px;
}

.quick-buy-dialog .quick-buy-head h2 {
  margin: 5px 0 6px;
  font-size: clamp(1.9rem, 3.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.quick-buy-dialog .quick-buy-head p {
  max-width: 480px;
  color: #6e6e73;
  font-size: 1rem;
  line-height: 1.45;
}

.quick-buy-dialog .quick-buy-grid {
  gap: 14px;
  padding-bottom: 26px;
}

.quick-buy-dialog .quick-buy-primary-item,
.quick-buy-dialog .quick-buy-mini-bag,
.quick-buy-dialog .quick-buy-section {
  border: 1px solid rgba(29, 29, 31, 0.09);
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
}

.quick-buy-dialog .quick-buy-product-media,
.quick-buy-dialog .quick-buy-address-form input,
.quick-buy-dialog .quick-buy-address-options button,
.quick-buy-dialog .delivery-card,
.quick-buy-dialog .checkout-payment-option,
.quick-buy-billing-card {
  box-shadow: none !important;
}

.quick-buy-dialog .quick-buy-close {
  background: #e8e8ed;
  box-shadow: none;
}

.quick-buy-dialog .quick-buy-close:hover {
  background: #dedee3;
}

.quick-buy-billing {
  background: #ffffff;
}

.quick-buy-billing-card {
  border-color: rgba(29, 29, 31, 0.08);
  background: #ffffff;
}

.quick-buy-dialog .quick-buy-pay {
  min-height: 56px;
  background: #1d1d1f;
  box-shadow: none;
}

.quick-buy-dialog .quick-buy-pay:hover {
  background: #000000;
}

@media (max-width: 900px) {
  .quick-buy-dialog {
    height: 94dvh;
    padding: 20px 14px 18px;
    border-radius: 24px 24px 0 0;
  }

  .quick-buy-dialog .quick-buy-head {
    padding-top: 16px;
  }
}
.quick-buy-variant-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 0;
}

.quick-buy-variant-summary span,
.quick-buy-mini-variant span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 999px;
  background: #f5f5f7;
  padding: 0 10px;
  color: #1d1d1f;
  line-height: 1;
}

.quick-buy-variant-summary em,
.quick-buy-mini-variant em {
  color: #6e6e73;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 760;
}

.quick-buy-variant-summary strong,
.quick-buy-mini-variant strong {
  color: #1d1d1f;
  font-size: 0.78rem;
  font-weight: 860;
}

.quick-buy-mini-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.quick-buy-mini-copy em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-buy-mini-variant {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.quick-buy-mini-variant span {
  min-height: 22px;
  padding-inline: 8px;
  background: #ffffff;
}

.quick-buy-mini-variant em,
.quick-buy-mini-variant strong {
  font-size: 0.68rem;
}
.quick-buy-trigger svg {
  width: 15px;
  height: 15px;
  display: block;
  flex: 0 0 auto;
}

.quick-buy-trigger path {
  fill: currentColor;
}

.quick-buy-trigger span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
@keyframes quickBuyFullscreenUp {
  from {
    transform: translate3d(0, 18%, 0);
    opacity: 0.98;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.quick-buy-dialog {
  position: fixed;
  inset: 0 !important;
  width: 100vw;
  height: 100dvh !important;
  min-height: 100dvh !important;
  max-height: none;
  padding: clamp(20px, 3vw, 42px) clamp(16px, 4vw, 64px) 54px;
  border: 0;
  border-radius: 0 !important;
  background: #f5f5f7;
  overflow-y: auto;
  animation: quickBuyFullscreenUp 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quick-buy-dialog::after {
  display: none;
}

.quick-buy-dialog .quick-buy-head,
.quick-buy-dialog .quick-buy-grid {
  width: min(940px, 100%);
  max-width: 940px;
  margin-inline: auto;
}

.quick-buy-dialog .quick-buy-head {
  padding: 4px 0 24px;
}

.quick-buy-dialog .quick-buy-close {
  position: fixed;
  top: clamp(16px, 2.2vw, 28px);
  right: clamp(16px, 2.2vw, 28px);
  z-index: 5;
}

.quick-buy-dialog .quick-buy-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px;
  align-items: stretch;
  padding-bottom: 60px;
}

.quick-buy-dialog .quick-buy-primary-item,
.quick-buy-dialog .quick-buy-mini-bag,
.quick-buy-dialog .quick-buy-address-section,
.quick-buy-dialog .quick-buy-delivery-section,
.quick-buy-dialog .quick-buy-billing,
.quick-buy-dialog .quick-buy-payment-section,
.quick-buy-dialog .quick-buy-pay,
.quick-buy-dialog .quick-buy-note,
.quick-buy-dialog .quick-buy-section {
  grid-column: auto !important;
  width: 100%;
  max-width: none;
}

.quick-buy-dialog .quick-buy-delivery-section .delivery-options,
.quick-buy-dialog .quick-buy-delivery-section .delivery-grid,
.quick-buy-dialog .quick-buy-delivery-section [class*="delivery"]:has([data-delivery-option]) {
  width: 100%;
}

.quick-buy-dialog .quick-buy-pay {
  position: sticky;
  bottom: 16px;
  z-index: 3;
  margin-top: 2px;
}

@media (min-width: 1100px) {
  .quick-buy-dialog .quick-buy-head,
  .quick-buy-dialog .quick-buy-grid {
    width: min(980px, calc(100vw - 220px));
  }
}

@media (max-width: 700px) {
  .quick-buy-dialog {
    padding: 18px 12px 42px;
  }

  .quick-buy-dialog .quick-buy-head h2 {
    padding-right: 54px;
  }

  .quick-buy-dialog .quick-buy-close {
    top: 12px;
    right: 12px;
  }
}
.quick-buy-cart-variant-details {
  margin-top: 9px;
}

.quick-buy-mini-media {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
}

.quick-buy-mini-media .thumbnail-sprite,
.quick-buy-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-buy-mini-cart-variant-details {
  gap: 4px;
  margin: 4px 0 0;
}

.quick-buy-mini-cart-variant-details div {
  gap: 3px;
  padding: 2px 7px;
  background: #f7f7f4;
}

.quick-buy-mini-cart-variant-details dt {
  font-size: 8px;
}

.quick-buy-mini-cart-variant-details dd {
  max-width: 76px;
  font-size: 9px;
}

.quick-buy-mini-item .variant-detail-swatch {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  display: inline-block;
  min-width: 10px;
  min-height: 10px;
  padding: 0;
  border-radius: 999px;
  background: var(--variant-swatch, #ffffff);
}

.quick-buy-mini-item .cart-variant-details {
  color: inherit;
}
.order-success-page {
  display: grid;
  min-height: min(68vh, 720px);
  place-items: center;
  padding: clamp(32px, 6vw, 84px) 0;
}

.order-success-card {
  width: min(680px, 100%);
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 30px;
  background: #ffffff;
  padding: clamp(26px, 5vw, 52px);
  text-align: center;
}

.order-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #1d1d1f;
  color: #ffffff;
}

.order-success-icon svg {
  width: 34px;
  height: 34px;
}

.order-success-icon path {
  fill: currentColor;
}

.order-success-card h1 {
  margin: 8px 0 10px;
  color: #1d1d1f;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.order-success-card p {
  margin: 0 auto;
  max-width: 520px;
  color: #6e6e73;
  font-size: 1.06rem;
  line-height: 1.55;
}

.order-success-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 24px 0 22px;
  border-radius: 999px;
  background: #f5f5f7;
  padding: 10px 16px;
  color: #4b4b50;
  font-weight: 750;
}

.order-success-countdown strong {
  color: #1d1d1f;
  font-size: 1.12rem;
}

.order-success-card .account-profile-actions {
  justify-content: center;
}
.product-article-section {
  margin-top: 24px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 24px;
  background: #ffffff;
  padding: clamp(18px, 3vw, 28px);
}

.product-article-section h2 {
  margin: 6px 0 14px;
  color: #1d1d1f;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.product-article-content {
  display: grid;
  gap: 12px;
  color: #3f3a31;
  font-size: 0.98rem;
  line-height: 1.68;
}

.product-article-content :is(p, ul, ol, blockquote, h2, h3, h4) {
  margin: 0;
}

.product-article-content :is(h2, h3, h4) {
  color: #1d1d1f;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.product-article-content ul,
.product-article-content ol {
  padding-left: 1.2rem;
}

.product-article-content blockquote {
  border-left: 3px solid #1f8f3a;
  padding-left: 14px;
  color: #5f5a51;
}

.product-article-content a {
  color: #1d1d1f;
  font-weight: 800;
  text-decoration: underline;
}

.product-article-content img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
}
.product-article-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 16px;
  background: #ffffff;
}

.product-article-content th,
.product-article-content td {
  border-bottom: 1px solid rgba(29, 29, 31, 0.07);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.product-article-content tr:last-child th,
.product-article-content tr:last-child td {
  border-bottom: 0;
}

.product-article-content th {
  background: #f7f7f4;
  color: #1d1d1f;
  font-size: 0.82rem;
  font-weight: 900;
}

.product-article-content td {
  color: #4b443d;
}
.routine-step p s {
  margin-left: 6px;
  color: #8a8178;
  font-size: 0.86em;
}

.routine-step p em {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-left: 7px;
  border-radius: 999px;
  background: rgba(31, 143, 58, 0.12);
  color: #147a2d;
  padding: 0 8px;
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 900;
  vertical-align: middle;
}
.product-detail-layout + .product-article-section {
  margin-top: clamp(28px, 5vw, 56px);
  margin-bottom: clamp(22px, 4vw, 42px);
  width: 100%;
}

.product-detail-layout + .product-article-section .product-article-content {
  max-width: none;
  grid-template-columns: minmax(0, 1fr);
}

.product-detail-layout + .product-article-section h2 {
  max-width: 920px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.product-detail-layout + .product-article-section .product-article-content > p,
.product-detail-layout + .product-article-section .product-article-content > ul,
.product-detail-layout + .product-article-section .product-article-content > ol,
.product-detail-layout + .product-article-section .product-article-content > blockquote {
  max-width: 920px;
}

.product-detail-layout + .product-article-section .product-article-content table,
.product-detail-layout + .product-article-section .product-article-content figure,
.product-detail-layout + .product-article-section .product-article-content .medium-insert-images {
  max-width: 100%;
}
