@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,700&family=DM+Mono:wght@400;500&family=Noto+Naskh+Arabic:wght@400;600&family=Noto+Sans+Arabic:wght@300;400;500&display=swap');

/* ==========================================================================
   Wie — visual system
   Paper #F5F2EB · Ink #16130E · Terracotta #A6482F
   Display: Instrument Serif · Text: DM Sans · Labels/prices: DM Mono
   ========================================================================== */

:root {
  --ink: #16130E;
  --ink-soft: #5D564B;
  --paper: #F5F2EB;
  --paper-warm: #EFEBE1;
  --panel: #FFFDF9;
  --stone: #EBE5D9;
  --line: #E2DCD0;
  --line-soft: #E7E0D2;
  --muted: #7C7365;
  --muted-light: #9C9384;
  --accent: #A6482F;
  --accent-soft: #D9825F;
  --accent-tint: #F0E7DF;
  --sale: #A6482F;
  --success: #2E7D32;
  --serif: 'Instrument Serif', 'Noto Naskh Arabic', Georgia, serif;
  --sans: 'DM Sans', 'Noto Sans Arabic', Helvetica, Arial, sans-serif;
  --mono: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

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

::selection {
  background: var(--ink);
  color: var(--paper);
}

@keyframes wie-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.72); }
}

@keyframes wie-flash {
  0%, 100% { background: var(--accent); }
  50% { background: #8E3A24; }
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
}

/* --------------------------------------------------------- Announcement bar */

.announce-bar {
  background: var(--accent);
  color: #FFF6F0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 16px;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.announce-bar::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #FFF6F0;
  animation: wie-pulse 1.2s ease-in-out infinite;
}

/* ---------------------------------------------------------------- Header */

header#site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 242, 235, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(12px, 2.2vw, 18px) clamp(16px, 3vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 22px;
}

.logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 4vw, 30px);
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  line-height: 1;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  font-size: 13.5px;
  font-weight: 400;
}

.main-nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.main-nav a:hover {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
}

.lang-switch {
  display: inline-flex;
  flex: 0 0 auto;
  border: 1px solid #DDD6C8;
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch button {
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  min-height: 34px;
  color: var(--muted);
}

.lang-switch .flag {
  font-size: 15px;
  line-height: 1;
  filter: saturate(0.85);
}

.lang-switch button.active .flag {
  filter: none;
}

@media (max-width: 640px) {
  /* Phone: flags only — the codes are redundant next to them.
     The switcher sits outside the scrolling nav rail, so all three stay
     visible in every language. */
  .lang-switch {
    flex: 0 0 auto;
    order: 3;
  }

  .lang-switch button {
    padding: 7px 9px;
    gap: 0;
  }

  .lang-switch .lang-code {
    display: none;
  }

  .lang-switch .flag {
    font-size: 17px;
  }
}

.lang-switch button:hover {
  color: var(--ink);
}

.lang-switch button.active {
  background: var(--ink);
  color: var(--paper);
}

body[data-lang='ar'] {
  font-family: 'Noto Sans Arabic', var(--sans);
}

body[data-lang='ar'] h1,
body[data-lang='ar'] h2,
body[data-lang='ar'] h3,
body[data-lang='ar'] .logo,
body[data-lang='ar'] .footer-logo {
  font-family: 'Noto Naskh Arabic', var(--serif);
}

body[data-lang='ar'] .logo,
body[data-lang='ar'] .footer-logo {
  font-family: var(--serif);
}

[dir='rtl'] .cart-item-price,
[dir='rtl'] .footer-bottom {
  text-align: start;
}

/* Trust strip — typographic, no emoji weight */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

/* ---------------------------------------------------------------- Footer */

footer#site-footer {
  background: var(--ink);
  color: #E4DDCE;
  margin-top: clamp(56px, 8vw, 96px);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) clamp(16px, 3vw, 40px) 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.footer-col {
  flex: 1 1 min(100%, 180px);
}

.footer-col:first-child {
  flex: 1 1 min(100%, 240px);
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: #E4DDCE;
}

.footer-col a:hover {
  color: var(--accent-soft);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: var(--paper);
  padding: 0 !important;
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px clamp(16px, 3vw, 40px) 36px;
  border-top: 1px solid #2A241C;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: start;
}

/* --------------------------------------------------------------- Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: none;
  cursor: pointer;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
  text-align: center;
}

.btn:hover {
  background: var(--accent);
  color: var(--paper);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ------------------------------------------------------------------ Hero */

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(36px, 5vw, 76px) clamp(16px, 3vw, 40px) clamp(44px, 6vw, 84px);
  max-width: 1320px;
  margin: 0 auto;
}

.hero-copy {
  flex: 1 1 min(100%, 380px);
}

.hero-copy .eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--accent);
}

.hero-copy h1 {
  font-size: clamp(38px, 7.2vw, 78px);
  line-height: 1.02;
  margin: 20px 0 0;
  text-wrap: pretty;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-copy p {
  color: var(--ink-soft);
  font-size: clamp(15px, 2.4vw, 16.5px);
  line-height: 1.65;
  max-width: 42ch;
  margin: 22px 0 26px;
}

.hero-image {
  flex: 1 1 min(100%, 340px);
  position: relative;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  margin-top: clamp(34px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-image {
  isolation: auto;
}

.pour {
  position: absolute;
  left: 1%;
  top: 31%;
  width: 60px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.pour svg {
  display: block;
  overflow: visible;
}

#hero-kettle {
  transform-origin: 62% 88%;
}

/* ------------------------------------------------------- Urgency / scarcity */

.urgency-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(12.5px, 2.6vw, 15px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0;
  margin: 0 0 24px;
}

.urgency-banner::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  animation: wie-pulse 1.1s ease-in-out infinite;
  flex-shrink: 0;
}

/* Big countdown band (collection page) */

.discount-banner {
  background: var(--ink);
  color: var(--paper);
  border-inline-start: 4px solid var(--accent);
  border-radius: 0;
  text-align: start;
  max-width: 1320px;
  margin: 30px auto 0;
  padding: clamp(20px, 3vw, 26px) clamp(18px, 3vw, 28px);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.countdown-band {
  max-width: 1320px;
  margin: 30px auto 0;
  padding: clamp(20px, 3vw, 26px) clamp(18px, 3vw, 28px);
  background: var(--ink);
  color: var(--paper);
  border-inline-start: 4px solid var(--accent);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 40px;
}

.countdown-band-copy {
  flex: 1 1 min(100%, 300px);
}

.countdown-band-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8A183;
}

.countdown-band-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #E8552F;
  animation: wie-pulse 1.2s ease-in-out infinite;
}

.countdown-band h2 {
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.15;
  margin: 10px 0 0;
}

.countdown-band-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 10px;
  font-size: 12.5px;
  color: #C4BBA9;
}

.countdown-band-meta strong {
  color: var(--paper);
  font-weight: 500;
}

.countdown-boxes {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 6px;
}

.countdown-box {
  text-align: center;
}

.countdown-box b {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(24px, 5.4vw, 34px);
  line-height: 1;
  background: #241E17;
  padding: 12px;
  min-width: clamp(50px, 12vw, 62px);
}

.countdown-box.seconds b {
  background: var(--accent);
  animation: wie-flash 1.6s ease-in-out infinite;
}

.countdown-box span {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 6px;
}

.countdown-chip {
  font-family: var(--mono);
  font-size: clamp(12px, 2.6vw, 14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFF6F0;
  background: var(--accent);
  padding: 14px 18px;
  white-space: nowrap;
}

/* --------------------------------------------------- Collection / grids */

.collection-header {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) clamp(16px, 3vw, 40px) 30px;
  border-bottom: 1px solid var(--line);
  text-align: start;
}

.collection-header .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.collection-header h1 {
  font-size: clamp(34px, 6.4vw, 62px);
  line-height: 1;
  margin: 14px 0 0;
}

.collection-header p {
  color: var(--ink-soft);
  font-size: clamp(14.5px, 2.4vw, 15.5px);
  line-height: 1.65;
  max-width: 52ch;
  margin: 14px 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1px;
  background: var(--line);
  padding: 0;
  margin: 34px auto clamp(60px, 8vw, 100px);
  max-width: 1320px;
}

.product-card {
  background: var(--paper);
  border: none;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: clamp(18px, 2.4vw, 28px);
  transition: background 0.18s ease;
}

.product-card:hover {
  background: var(--panel);
}

.product-card > a {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--stone);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.sale-badge {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 5px 8px;
  border-radius: 0;
}

.product-card-body {
  padding: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card-title {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.35;
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--mono);
}

.price-now {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 14px;
}

.price-was {
  color: var(--muted-light);
  text-decoration: line-through;
  font-size: 12.5px;
}

.quick-add-btn {
  margin: 16px 0 0;
  min-height: 46px;
  padding: 12px 18px;
  font-size: 13px;
}

/* ------------------------------------------------------------ Product page */

.product {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 72px);
  align-items: flex-start;
  padding: 22px clamp(16px, 3vw, 40px) clamp(56px, 8vw, 96px);
  max-width: 1320px;
  margin: 0 auto;
}

.product-gallery {
  flex: 1 1 min(100%, 400px);
  min-width: 0;
}

.gallery-main {
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: var(--stone);
  aspect-ratio: 1 / 1;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 8px;
  min-width: 0;
}

.gallery-thumbs img {
  min-width: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  mix-blend-mode: multiply;
  background: var(--stone);
  border: none;
  border-radius: 0;
  outline: 1px solid var(--line);
  outline-offset: -1px;
  cursor: pointer;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
  outline-color: var(--ink);
}

.product-info {
  flex: 1 1 min(100%, 340px);
  min-width: 0;
}

.product-info h1 {
  font-size: clamp(30px, 5.4vw, 52px);
  line-height: 1.04;
  margin: 14px 0 0;
}

.product-info .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 0;
}

.price-row .price-now {
  font-size: clamp(22px, 4vw, 26px);
}

.price-row .price-was {
  font-size: 16px;
}

.save-pct {
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shipping-note {
  color: var(--ink-soft);
  font-size: clamp(14.5px, 2.4vw, 15.5px);
  line-height: 1.7;
  margin: 18px 0 0;
  max-width: 48ch;
}

.delivery-estimate {
  color: var(--muted);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.option-label {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 28px 0 12px;
}

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

.option-value {
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  background: var(--panel);
  font-weight: 400;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

.option-value:hover {
  border-color: var(--ink);
}

.option-value.selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Bundle / quantity discount */

.bundle-options {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bundle-option {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  border: 1px solid #DDD6C8;
  border-radius: 0;
  padding: 15px 18px;
  cursor: pointer;
  background: transparent;
}

.bundle-option:hover {
  border-color: var(--muted);
}

.bundle-option.selected {
  border-color: var(--ink);
  background: var(--panel);
  box-shadow: none;
}

.bundle-option-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.bundle-options .bundle-option {
  flex-wrap: nowrap;
}

.bundle-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #C6BDAC;
  flex-shrink: 0;
}

.bundle-option.selected .bundle-radio {
  border: 5px solid var(--ink);
  background: none;
}

.bundle-option-title {
  display: block;
  font-weight: 400;
  font-size: 14.5px;
}

.bundle-option-sub {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}

.bundle-save-tag {
  background: var(--accent);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 7px;
  border-radius: 0;
}

.bundle-option-price {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 14px;
}

.bundle-option-right {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.qty-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  height: 56px;
  padding: 0 6px;
}

.qty-control button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 17px;
  cursor: pointer;
  border-radius: 999px;
  color: var(--ink);
}

.qty-control button:hover {
  background: #E7E0D2;
}

.qty-control input {
  width: 34px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
}

.qty-line-total {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 15px;
}

.qty-discount-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.add-to-cart-row {
  margin-top: 10px;
}

.add-to-cart-row .btn {
  min-height: 56px;
}

.toast {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--success);
  display: none;
}

.product-description {
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.product-description p {
  margin: 0 0 12px;
  max-width: 62ch;
}

.product-description table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}

.product-description th,
.product-description td {
  text-align: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  font-weight: 400;
}

.product-description th {
  color: var(--ink);
  width: 34%;
}

.product-description td {
  color: var(--muted);
}

.product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

/* Scarcity panel (product page) */

.delivery-trust-block {
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  border-inline-start: 4px solid var(--accent);
  padding: 18px 20px;
  margin: 26px 0;
}

.delivery-trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #E4DDCE;
  padding: 5px 0;
}

.delivery-trust-line strong {
  color: #E8A183;
  font-weight: 500;
}

.dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E8552F;
  animation: wie-pulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

.check-mark {
  color: #E8A183;
  font-weight: 400;
}

.payment-trust-text {
  text-align: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 18px 0 0;
}

.trust-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 18px;
  margin-top: 22px;
  text-align: center;
}

.trust-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-icon {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.price-converted {
  font-size: 0.78em;
  font-weight: 400;
  color: var(--muted-light);
  margin-inline-start: 4px;
  white-space: nowrap;
}

/* --------------------------------------------------------------- Reviews */

.reviews-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(16px, 3vw, 40px) clamp(56px, 8vw, 90px);
  border-top: 1px solid var(--line);
}

.reviews-section h2 {
  font-size: clamp(26px, 4.4vw, 38px);
  margin-bottom: 8px;
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.reviews-empty {
  border: 1px dashed var(--line);
  border-radius: 0;
  padding: 36px 24px;
  text-align: center;
  color: var(--muted);
}

.reviews-empty strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
}

.review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
}

.review-item {
  flex: 1 1 min(100%, 260px);
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
}

.review-item .stars {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.review-item .review-body {
  font-family: var(--serif);
  font-size: clamp(19px, 3vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  margin-top: 10px;
}

.review-item .review-author {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}

/* ------------------------------------------------------------- Cart page */

.cart-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px) clamp(16px, 3vw, 40px) clamp(60px, 8vw, 100px);
}

.cart-layout h1 {
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1;
  margin: 0 0 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.cart-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  mix-blend-mode: multiply;
  background: var(--stone);
  border-radius: 0;
  border: none;
}

.cart-item-thumb {
  position: relative;
  flex-shrink: 0;
}

.cart-item-qty-badge {
  position: absolute;
  top: -8px;
  inset-inline-end: -8px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.cart-item-info {
  flex: 1 1 160px;
  font-size: 16px;
}

.cart-item-info .meta {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

.cart-item-price {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 15px;
  text-align: end;
}

.cart-item-price .price-was {
  display: block;
  color: var(--muted-light);
  text-decoration: line-through;
  font-size: 12.5px;
  font-weight: 400;
  margin-top: 4px;
}

.remove-link {
  color: var(--muted);
  font-size: 12.5px;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid #D8D0C1;
  display: inline-block;
  padding-bottom: 2px;
  margin-top: 10px;
}

.remove-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.cart-summary {
  margin-top: 30px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--panel);
  border: 1px solid var(--line);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 14.5px;
}

.summary-row.discount {
  color: var(--accent);
  font-weight: 400;
}

.summary-row.total {
  font-weight: 400;
  font-size: 15px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 18px;
  align-items: baseline;
}

.summary-row.total span:last-child {
  font-family: var(--serif);
  font-size: 26px;
  white-space: nowrap;
  text-align: end;
  line-height: 1.1;
}

.summary-row.total .summary-currency {
  font-family: var(--mono);
  font-size: 10.5px;
  vertical-align: 0.9em;
}

.summary-row span:last-child {
  font-family: var(--mono);
}

.bundle-upsell {
  margin-top: 24px;
  border: none;
  border-inline-start: 2px solid var(--accent);
  border-radius: 0;
  padding: 12px 16px;
  background: var(--accent-tint);
  color: #7A3323;
  font-size: 12.5px;
  line-height: 1.6;
}

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

/* --------------------------------------------------------------- Checkout */

.checkout-layout {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 72px);
  padding: clamp(32px, 5vw, 56px) clamp(16px, 3vw, 40px) clamp(60px, 8vw, 100px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: flex-start;
}

.checkout-form-col {
  flex: 1 1 min(100%, 380px);
  min-width: 0;
}

.checkout-summary {
  flex: 1 1 min(100%, 300px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: clamp(22px, 3vw, 32px);
  position: sticky;
  top: 120px;
}

.checkout-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-section:first-child {
  padding-top: 0;
}

.checkout-section h2 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.checkout-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 14px;
}

.checkout-section-header h2 {
  margin: 0;
}

.sign-in-link {
  color: var(--accent);
  font-size: 13.5px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.form-field {
  margin-bottom: 12px;
}

.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
#card-element {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #DDD6C8;
  border-radius: 0;
  background: var(--panel);
  font-size: 15px;
  color: var(--ink);
}

.form-field select {
  height: 54px;
  padding: 0 14px;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--ink);
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 10px;
}

.form-row .form-field {
  flex: 1;
  min-width: 0;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 14px 0;
  cursor: pointer;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shipping-option {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  border: 1px solid #DDD6C8;
  border-radius: 0;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 400;
  background: transparent;
}

.shipping-option.selected {
  border-color: var(--ink);
  background: var(--panel);
  box-shadow: none;
}

.shipping-option-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shipping-option span:last-child {
  font-family: var(--mono);
  font-size: 13.5px;
}

.payment-subtext {
  color: var(--muted);
  font-size: 13px;
  margin: -4px 0 14px;
}

.card-brand-icons {
  display: inline-flex;
  gap: 6px;
  margin-inline-start: 10px;
}

.card-logo {
  width: 34px;
  height: 22px;
  border-radius: 2px;
}

.payment-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.payment-logo-row .card-logo {
  width: 42px;
  height: 27px;
}

.payment-request-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 16px 0;
}

.payment-request-divider::before,
.payment-request-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.summary-currency {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  margin-inline-end: 4px;
}

.card-panel {
  border: 1px solid #DDD6C8;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--panel);
}

.card-panel-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  background: transparent;
  color: var(--ink);
  font-weight: 400;
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.card-panel-body {
  padding: 18px;
  background: var(--panel);
  display: grid;
  gap: 10px;
}

.card-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.card-input-wrap #card-number-element {
  flex: 1;
  height: 54px;
  padding: 16px 40px 16px 18px;
  border: 1px solid #DDD6C8;
  border-radius: 0;
  background: var(--paper);
}

.card-lock-icon {
  position: absolute;
  inset-inline-end: 14px;
  font-size: 12px;
  color: var(--muted);
  pointer-events: none;
}

.stripe-input {
  height: 54px;
  padding: 16px 18px;
  border: 1px solid #DDD6C8;
  border-radius: 0;
  background: var(--paper);
}

#card-errors {
  color: #B3402A;
  font-size: 13px;
  margin-top: 8px;
  min-height: 1.2em;
}

.pay-note {
  font-size: 12.5px;
  color: var(--muted);
  --pay-note-ok: #22602A;
  margin-top: 14px;
  line-height: 1.6;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F1F5F0;
  border: none;
  border-inline-start: 2px solid #2E7D32;
  border-radius: 0;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 12.5px;
  font-weight: 500;
  color: #22602A;
}

.secure-badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2E7D32;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 500;
  flex-shrink: 0;
}

.payment-method-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.payment-method-tab {
  flex: 1 1 120px;
  min-height: 48px;
  padding: 14px 12px;
  border: 1px solid #DDD6C8;
  border-radius: 0;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
}

.payment-method-tab.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.payment-panel {
  display: none;
}

.payment-panel.active {
  display: block;
}

#paypal-button-container {
  min-height: 45px;
}

#payment-success {
  display: none;
  text-align: center;
  padding: clamp(48px, 8vw, 80px) 24px;
}

#payment-success h2 {
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 12px;
}

/* ---------------------------------------------------------- Policy pages */

.policy-page {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) clamp(16px, 3vw, 40px) clamp(64px, 9vw, 110px);
}

.policy-page h1 {
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1;
  margin-bottom: 14px;
}

.policy-updated {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.policy-page h2 {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0;
  margin: 34px 0 12px;
}

.policy-page p,
.policy-page li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  max-width: 62ch;
  text-wrap: pretty;
}

.policy-page ul {
  padding-inline-start: 18px;
  margin: 12px 0;
}

.policy-page li::marker {
  color: var(--accent);
}

.policy-business-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 20px 22px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
}

.policy-business-block strong {
  color: var(--ink);
  font-weight: 500;
}

/* --------------------------------------------------------- Cart drawer */

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 19, 14, 0.45);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  height: 100%;
  width: min(440px, 100%);
  background: var(--paper);
  box-shadow: -8px 0 40px rgba(22, 19, 14, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 26px;
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  min-width: 44px;
  min-height: 44px;
}

.cart-drawer-close:hover {
  color: var(--ink);
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 4px 24px;
}

.cart-drawer-items .cart-item {
  align-items: flex-start;
  justify-content: space-between;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-item-remove-x {
  background: none;
  border: none;
  font-size: 16px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 6px;
}

.cart-item-remove-x:hover {
  color: var(--accent);
}

.drawer-qty-control {
  margin-top: 8px;
  width: fit-content;
  height: 44px;
}

.drawer-qty-control button {
  width: 36px;
  height: 36px;
  font-size: 15px;
}

.drawer-qty-control input {
  width: 30px;
  font-size: 13px;
}

.cart-drawer-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--line);
}

/* ------------------------------------------------------ Translate widget */

.translate-widget {
  position: fixed;
  bottom: 14px;
  inset-inline-start: 14px;
  z-index: 50;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 4px 8px;
  box-shadow: 0 6px 18px rgba(22, 19, 14, 0.12);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.goog-te-banner-frame {
  box-shadow: 0 2px 8px rgba(22, 19, 14, 0.1) !important;
}

/* -------------------------------------------------------- Small screens */

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

  .product-card {
    padding: 12px;
  }

  .product-card-body {
    padding-top: 12px;
    gap: 6px;
  }

  .product-card-title {
    font-size: 13.5px;
  }

  .product-card-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

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

  .price-was {
    font-size: 11.5px;
  }

  .price-converted {
    display: block;
    margin-inline-start: 0;
  }

  .quick-add-btn {
    margin-top: 12px;
    padding: 10px 12px;
    font-size: 12px;
    min-height: 44px;
  }

  .sale-badge {
    font-size: 9px;
    padding: 4px 6px;
  }

  .cart-item-price {
    text-align: start;
  }

  .checkout-summary {
    position: static;
  }
}


/* ==========================================================================
   Phone (≤ 640px) — a layout of its own, not a squeezed desktop.
   Quiet by design: one row of chrome, edge-to-edge product imagery,
   swipeable gallery, and a sticky buy bar that only appears once the
   in-page button has scrolled away.
   ========================================================================== */

@media (max-width: 640px) {
  /* Chrome: one line, no wrapping stack */
  .announce-bar {
    gap: 8px;
    padding: 9px 14px;
    font-size: 10px;
    letter-spacing: 0.08em;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .announce-bar span:nth-child(4),
  .announce-bar span:nth-child(5),
  .announce-bar span:nth-child(6) {
    display: none;
  }

  .header-inner {
    flex-wrap: nowrap;
    gap: 12px;
    padding: 12px 16px;
  }

  .logo {
    font-size: 21px;
    letter-spacing: 0.24em;
    text-indent: 0.24em;
  }

  /* Nav becomes a quiet scrollable rail instead of a wrapped block */
  .main-nav {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    font-size: 13px;
    justify-content: flex-end;
  }

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

  .main-nav a {
    white-space: nowrap;
  }

  .trust-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 22px;
    padding: 10px 16px;
    scrollbar-width: none;
    font-size: 9.5px;
    letter-spacing: 0.12em;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 24px), transparent 100%);
  }

  .trust-strip::-webkit-scrollbar {
    display: none;
  }

  .trust-strip span {
    white-space: nowrap;
  }

  /* Hero: copy first, then the kettle full-bleed off the right edge */
  .hero {
    padding: 26px 16px 34px;
    gap: 22px;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.03;
    margin-top: 14px;
  }

  .hero-copy p {
    margin: 16px 0 20px;
  }

  .hero-image {
    margin: 0 -16px -12px 8px;
  }

  .hero-image img {
    aspect-ratio: 1 / 1;
    object-position: center right;
  }

  .hero-cta-row {
    gap: 10px;
  }

  .hero-cta-row .btn {
    flex: 1 1 auto;
  }

  .countdown-chip {
    flex: 1 1 100%;
    text-align: center;
  }

  /* Product page already has the countdown in the announcement bar —
     one timer per screen on a phone. */
  #product-countdown {
    display: none;
  }

  .urgency-banner {
    font-size: 12px;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
  }

  .hero-specs {
    gap: 10px 20px;
    margin-top: 26px;
    padding-top: 18px;
    font-size: 10px;
  }

  /* Collection band: stacked, digits sized down */
  .countdown-band {
    gap: 18px;
    padding: 20px 18px;
  }

  .countdown-box b {
    font-size: 26px;
    padding: 10px 8px;
    min-width: 46px;
  }

  /* Product page */
  .product {
    padding: 14px 16px 96px;
    gap: 22px;
  }

  .gallery-main {
    margin: 0 -16px;
  }

  /* Thumbs: swipeable strip with snap, not a cramped grid */
  .gallery-thumbs {
    display: flex;
    gap: 8px;
    margin: 8px -16px 0;
    padding: 0 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumbs img {
    width: 68px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .product-info h1 {
    font-size: 30px;
  }

  .option-value {
    padding: 10px 15px;
    font-size: 13.5px;
  }

  .bundle-option {
    padding: 13px 14px;
    gap: 8px;
  }

  .bundle-option-sub {
    font-size: 11.5px;
  }

  .bundle-option-price {
    font-size: 13px;
  }

  /* The in-page buy buttons stay, but the sticky bar carries the action
     once they leave the screen. */
  .buy-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(245, 242, 235, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    transform: translateY(110%);
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .buy-bar.visible {
    transform: translateY(0);
  }

  .buy-bar-price {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .buy-bar-price b {
    font-family: var(--mono);
    font-weight: 400;
    font-size: 15px;
  }

  .buy-bar-price span {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .buy-bar .btn {
    flex: 1;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 14px;
  }

  /* Cart & checkout: full-width rows, no sticky column */
  .cart-layout,
  .checkout-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cart-item {
    gap: 14px;
    padding: 18px 0;
  }

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

  .cart-summary,
  .checkout-summary {
    padding: 20px 18px;
  }

  .summary-row.total span:last-child {
    font-size: 23px;
  }

  .footer-inner {
    gap: 26px;
    padding-bottom: 24px;
  }

  .footer-col {
    flex: 1 1 min(100%, 140px);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding-bottom: 28px;
  }
}

/* The buy bar is a phone-only device */
@media (min-width: 641px) {
  .buy-bar {
    display: none !important;
  }
}
