/* 疆孜香辛料官网 — 响应式样式 */

:root {
  --color-bg: #faf7f2;
  --color-bg-alt: #f0ebe3;
  --color-surface: #ffffff;
  --color-ink: #1c1917;
  --color-muted: #57534e;
  --color-muted-light: #78716c;
  --color-accent: #b45309;
  --color-accent-hover: #92400e;
  --color-accent-soft: #ea580c;
  --color-forest: #3f6212;
  --color-forest-bg: #ecfccb;
  --color-border: #e7e5e4;
  --color-danger-bg: #fef2f2;
  --color-danger-text: #991b1b;
  --max-width: 1200px;
  --radius-card: 12px;
  --radius-btn: 10px;
  --shadow-card: 0 8px 24px rgba(28, 25, 23, 0.08);
  --font-display: "Noto Serif SC", "Source Han Serif SC", Georgia, "Times New Roman",
    serif;
  --font-body: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nav-drawer__backdrop,
  .nav-drawer__panel {
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
}

#categories,
#ency-teaser,
#scenes,
#channels {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* 百科列表条目：首页等入口锚点定位 */
[id^="ency-"] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* —— 布局 —— */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.section {
  padding-block: clamp(40px, 6vw, 72px);
}

.section--tight {
  padding-block: clamp(24px, 4vw, 40px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.section-lead {
  margin: 0 0 32px;
  color: var(--color-muted);
  max-width: 52ch;
}

/* —— 顶栏 —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
}

.logo:hover {
  text-decoration: none;
  color: var(--color-accent);
}

.logo__img {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 8px;
}

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #7c2d12 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 8px;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop__cluster {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.nav-desktop__sep {
  flex-shrink: 0;
  width: 1px;
  height: 1.25rem;
  margin: 0 6px 0 10px;
  background: var(--color-border);
  align-self: center;
}

.nav-desktop a {
  color: var(--color-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--color-ink);
  background: var(--color-bg-alt);
  text-decoration: none;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: var(--color-ink);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.45);
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-drawer.is-open .nav-drawer__backdrop {
  opacity: 1;
}

.nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--color-surface);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-drawer.is-open .nav-drawer__panel {
  transform: translateX(0);
}

.nav-drawer__panel a {
  color: var(--color-ink);
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
}

.nav-drawer__panel a:hover {
  background: var(--color-bg);
}

.nav-drawer__sub {
  font-size: 0.875rem;
  color: var(--color-muted);
  padding-left: 14px;
}

.nav-drawer__section {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-light);
  padding: 12px 14px 6px;
  margin-top: 4px;
}

.nav-drawer__section:first-of-type {
  padding-top: 0;
  margin-top: 0;
}

.nav-drawer__close {
  align-self: flex-end;
  margin-bottom: 8px;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding-block: clamp(48px, 10vw, 96px);
  overflow: hidden;
  /* 保证竖条/横屏下 banner 有足够展示高度，减轻 cover 裁切「缺一块」的观感 */
  min-height: clamp(22rem, 52vh, 40rem);
}

@supports (height: 100svh) {
  .hero {
    min-height: clamp(22rem, 52svh, 40rem);
  }
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  transform-origin: center center;
}

@media (min-aspect-ratio: 16/9) {
  .hero__photo {
    object-position: center center;
  }
}

@media (max-aspect-ratio: 3/4) {
  .hero__photo {
    object-position: center 32%;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      90deg,
      rgba(250, 247, 242, 0.98) 0%,
      rgba(250, 247, 242, 0.92) 36%,
      rgba(250, 247, 242, 0.55) 52%,
      rgba(250, 247, 242, 0.12) 64%,
      transparent 78%
    ),
    linear-gradient(165deg, rgba(250, 247, 242, 0.2) 0%, var(--color-bg) 58%),
    radial-gradient(ellipse 80% 50% at 70% -10%, rgba(180, 83, 9, 0.1), transparent),
    radial-gradient(ellipse 60% 40% at 10% 100%, rgba(63, 98, 18, 0.06), transparent);
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}

@media (prefers-reduced-motion: reduce) {
  .hero__photo {
    transform: none;
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-forest);
  background: var(--color-forest-bg);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  max-width: 14ch;
}

.hero__desc {
  margin: 0 0 28px;
  color: var(--color-muted);
  font-size: 1.0625rem;
  max-width: 40ch;
}

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

/* —— 购买渠道 · 小程序码与电话 —— */
.channels-layout {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .channels-layout {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

.channel-miniapp {
  margin: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 16px;
  box-shadow: var(--shadow-card);
  max-width: 240px;
}

.channel-miniapp img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

.channel-miniapp figcaption {
  margin-top: 12px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-muted);
  text-align: center;
}

.channels-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.channels-phone {
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.channels-phone a {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.channels-phone a:hover {
  color: var(--color-accent);
}

/* —— 按钮 —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

.btn--secondary {
  background: var(--color-surface);
  color: var(--color-ink);
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.btn--secondary:hover {
  border-color: var(--color-muted-light);
  color: var(--color-ink);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
}

/* —— 信任条 —— */
.trust-strip {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

@media (min-width: 768px) {
  .trust-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-strip__item {
  background: var(--color-surface);
  padding: 20px 16px;
  text-align: center;
}

.trust-strip__icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.trust-strip__title {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.trust-strip__text {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* —— 分类磁贴 —— */
.tiles {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile {
  position: relative;
  border-radius: var(--radius-card);
  padding: 24px;
  min-height: 160px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-card);
}

.tile:hover {
  text-decoration: none;
  transform: translateY(-2px);
  transition: transform 0.2s;
}

.tile h3 {
  font-family: var(--font-display);
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.tile p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.92;
}

.tile--spice {
  background-image: linear-gradient(145deg, rgba(124, 45, 18, 0.9) 0%, rgba(180, 83, 9, 0.82) 100%),
    url("images/category-single-new.png");
  background-size: cover;
  background-position: center;
}

.tile--blend {
  background-image: linear-gradient(145deg, rgba(28, 25, 23, 0.88) 0%, rgba(68, 64, 60, 0.78) 100%),
    url("images/category-blend-new.png");
  background-size: cover;
  background-position: center;
}

.tile--stew {
  background-image: linear-gradient(145deg, rgba(54, 83, 20, 0.9) 0%, rgba(77, 124, 15, 0.82) 100%),
    url("images/category-stew-new.png");
  background-size: cover;
  background-position: center;
}

/* —— 产品卡片 —— */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted);
  cursor: pointer;
  font-family: inherit;
}

.filter-chip:hover {
  border-color: var(--color-muted-light);
}

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

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

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-card);
}

.product-card__visual {
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-muted);
  background-size: cover;
  background-position: center;
}

/* 产品列表页 / 首页主推：用 <img> 展示单品图 */
.product-card__visual:has(.product-card__photo) {
  display: block;
  padding: 0;
  line-height: 0;
}

.product-card__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.product-card__body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.badge {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 6px;
}

.badge--single {
  background: var(--color-forest-bg);
  color: var(--color-forest);
}

.badge--blend {
  background: #f5f5f4;
  color: #44403c;
}

.badge--stew {
  background: var(--color-forest-bg);
  color: #3f6212;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 8px;
}

.product-card__meta {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin: 0 0 12px;
}

.flavor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.flavor-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--color-bg);
  color: var(--color-muted);
  border: 1px solid var(--color-border);
}

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

/* —— 百科卡片 —— */
.ency-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ency-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ency-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

a.ency-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
}

a.ency-card:hover,
a.ency-card:focus-visible {
  box-shadow: var(--shadow-card);
  border-color: var(--color-border);
  color: inherit;
  text-decoration: none;
}

.ency-card__foot {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-accent);
}

a.ency-card:hover .ency-card__foot,
a.ency-card:focus-visible .ency-card__foot {
  text-decoration: underline;
}

.ency-card h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.125rem;
}

.ency-card__tags {
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.ency-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  flex: 1;
}

.ency-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 4px;
}

.ency-card__actions a {
  font-weight: 600;
  font-size: 0.875rem;
}

/* —— 商详布局 —— */
.pdp {
  padding-block: 24px clamp(32px, 5vw, 48px);
}

.pdp__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .pdp__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.pdp__gallery {
  border-radius: var(--radius-card);
  background: var(--color-bg-alt);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
}

.pdp__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 8px;
}

.pdp__subtitle {
  margin: 0 0 20px;
  color: var(--color-muted);
  font-size: 1rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.spec-table th,
.spec-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.spec-table th {
  color: var(--color-muted);
  font-weight: 500;
  width: 38%;
}

.compliance {
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  overflow: hidden;
}

.compliance summary {
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.compliance[open] summary {
  border-bottom: 1px solid var(--color-border);
}

.compliance__body {
  padding: 16px 18px;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.compliance__body p {
  margin: 0 0 10px;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--color-muted-light);
  padding: 12px 14px;
  background: var(--color-bg);
  border-radius: 8px;
  margin-top: 16px;
  line-height: 1.5;
}

/* —— 文章页 —— */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding-block: 32px 48px;
}

.article h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 12px;
}

.article__meta {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 28px;
}

.article h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.article p {
  margin: 0 0 16px;
  color: var(--color-ink);
}

.article ul {
  margin: 0 0 16px;
  padding-left: 1.25em;
  color: var(--color-muted);
}

/* —— 页脚 —— */
.site-footer {
  background: var(--color-ink);
  color: #a8a29e;
  padding-block: 48px 32px;
  margin-top: auto;
}

.site-footer a {
  color: #e7e5e4;
}

.site-footer__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr;
  }
}

.site-footer h4 {
  color: #fff;
  font-size: 0.875rem;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  text-decoration: none;
  font-size: 0.875rem;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #44403c;
  font-size: 0.8125rem;
  text-align: center;
}

/* 仅版权行、无 site-footer__grid 时 */
.site-footer .container > .site-footer__bottom:only-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* —— 面包屑 —— */
.breadcrumb {
  font-size: 0.8125rem;
  color: var(--color-muted);
  padding-block: 16px;
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

/* —— 移动底部 CTA —— */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 10px;
  justify-content: stretch;
}

.sticky-cta .btn {
  flex: 1;
  padding-block: 14px;
}

@media (min-width: 1024px) {
  .sticky-cta {
    display: none;
  }
}

/* 为底部固定条留出空间 */
@media (max-width: 1023px) {
  body.has-sticky-cta {
    padding-bottom: 72px;
  }
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-shell main {
  flex: 1;
}

.pdp__actions-desktop {
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 1024px) {
  .pdp__actions-desktop {
    display: flex;
  }
}
