:root {
  --green: #2d5c2e;
  --deepgreen: #17361e;
  --gold: #c9973a;
  --paper: #f5f0e4;
  --ink: #1f1c16;
  --muted: #5d564b;
  --cream: #fff8e7;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 20% 15%, #fff8ea 0, #f6f0e1 36%, #e8dcc5 100%);
}

a { color: inherit; }

.promo-strip {
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.7rem;
  color: #fff;
  background: linear-gradient(90deg, #1d4727, #3a6f3d);
}

.topbar {
  background: linear-gradient(120deg, #183b20, var(--green));
  color: #fff;
  border-bottom: 2px solid rgba(201, 151, 58, 0.7);
  padding: 1.15rem 1rem;
}

.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 900;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 999px;
  border: 2px solid var(--gold);
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cart-chip {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.cart-chip.is-pulsing {
  animation: cartChipPulse 0.65s ease;
}

@keyframes cartChipPulse {
  0% { transform: scale(1); }
  35% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: linear-gradient(165deg, #fff 0%, #f9f3e5 55%, #efe5d2 100%);
  border: 2px solid rgba(23, 54, 30, 0.15);
  border-radius: 16px;
  padding: 1.3rem;
  box-shadow: 0 16px 40px rgba(33, 34, 25, 0.09);
}

.hero-text-wrap .page-title {
  margin-bottom: 0.55rem;
}

.hero-photo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-photo-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center center;
  border-radius: 12px;
  border: 0;
  background: transparent;
}

.hero-photo-row img:nth-child(1) { object-position: center center; }
.hero-photo-row img:nth-child(2) { object-position: center center; }
.hero-photo-row img:nth-child(3) { object-position: center center; }

.eyebrow {
  margin: 0;
  color: var(--deepgreen);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.trust-grid {
  display: grid;
  gap: 0.7rem;
}

.trust-item {
  background: #fff;
  border: 1px solid #e2dccf;
  border-radius: 12px;
  padding: 0.75rem;
}

.trust-item strong {
  display: block;
  color: var(--deepgreen);
  margin-bottom: 0.2rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.section-title {
  margin: 0;
  color: var(--deepgreen);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
  width: 100%;
  flex: 1;
}

.page-title {
  font-family: 'Playfair Display', serif;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.45rem;
}

.page-subtitle {
  color: var(--muted);
  margin-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(45, 92, 46, 0.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(29, 31, 24, 0.1);
  display: flex;
  flex-direction: column;
  contain: layout paint;
}

.product-card.is-clickable {
  cursor: pointer;
}

.product-card:focus-visible {
  outline: 3px solid rgba(201, 151, 58, 0.85);
  outline-offset: 3px;
}

.product-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #f2f2f2;
}

.product-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-body h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  color: var(--green);
}

.product-description {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.45em * 4 + 0.18rem);
  padding-bottom: 0.18rem;
}

.price {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #171513;
}

.price-stack {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.price-stack .price-prefix {
  font-size: 0.86rem;
  color: #5d564b;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-stack .price-now {
  font-size: 1.24rem;
  font-weight: 900;
  color: #17361e;
  line-height: 1;
}

.price-stack .price-was {
  font-size: 0.9rem;
  color: #7b7263;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-stack .price-promo-badge {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f4f05;
  background: #fff3d5;
  border: 1px solid #f3d08e;
  border-radius: 999px;
  padding: 0.16rem 0.45rem;
}

.price-stack.is-compact {
  gap: 0.35rem;
}

.price-stack.is-compact .price-prefix {
  font-size: 0.74rem;
}

.price-stack.is-compact .price-now {
  font-size: 1.02rem;
}

.price-stack.is-compact .price-was {
  font-size: 0.78rem;
}

.price-stack.is-compact .price-promo-badge {
  font-size: 0.64rem;
  padding: 0.14rem 0.4rem;
}

.badge {
  align-self: flex-start;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  margin-top: 0.08rem;
}

.product-card-footer {
  margin-top: auto;
  display: grid;
  gap: 0.45rem;
  padding-top: 0.1rem;
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}

.product-card-actions .btn,
.product-card-actions button {
  min-height: 42px;
}

.stock-banner {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  padding: 0.22rem 0.56rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.stock-banner.low {
  background: #fff6dd;
  color: #78500a;
  border-color: #f0cc74;
}

.stock-banner.out {
  background: #ffe4e4;
  color: #8f1919;
  border-color: #e79f9f;
}

.stock-banner.in {
  background: #ecf8ec;
  color: #245629;
  border-color: #b3d4b2;
}

.offer-box {
  margin: 0.2rem 0 0.5rem;
  padding: 0.46rem 0.65rem;
  border-radius: 10px;
  border: 1px solid #f3d08e;
  background: #fff3d5;
  color: #6f4f05;
  font-size: 0.9rem;
  font-weight: 700;
}

.pickmix-builder {
  margin: .55rem 0 .7rem;
  padding: .7rem;
  border-radius: 12px;
  border: 1px solid #dbc9a2;
  background: #fff9ec;
}

.pickmix-ingredients {
  display: grid;
  gap: .5rem;
}

.pickmix-ingredient-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(138px, 152px);
  gap: .6rem;
  align-items: center;
  border: 1px solid #e3d7bb;
  border-radius: 10px;
  padding: .5rem .6rem;
  background: #fff;
}

.pickmix-ingredient-row input {
  width: 100%;
}

.pickmix-qty-controls {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  gap: .35rem;
  align-items: center;
}

.pickmix-qty-controls button {
  padding: .35rem;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  line-height: 1;
}

.pickmix-qty-controls input {
  text-align: center;
  min-width: 52px;
  height: 38px;
  border: 1px solid #b8b3a7;
  border-radius: 8px;
  background: #fff;
  color: #1f1c16;
  -webkit-text-fill-color: #1f1c16;
  opacity: 1;
  font-weight: 700;
  font-size: 1rem;
  padding: 0 .35rem;
}

.pickmix-ingredient-meta strong {
  display: block;
}

.pickmix-ingredient-meta span {
  color: #5d564b;
  font-size: .82rem;
}

.line-meta {
  margin-top: .35rem;
  color: #5d564b;
  font-size: .8rem;
  line-height: 1.45;
}

button, .btn {
  appearance: none;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  background: var(--gold);
  color: #17120b;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.68rem 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button:hover, .btn:hover {
  transform: translateY(-1px);
}

button.secondary, .btn.secondary {
  background: #1f3e20;
  color: #fff;
}

button.is-attention,
.btn.is-attention {
  animation: checkoutAttention 1.1s ease 2;
}

@keyframes checkoutAttention {
  0% { box-shadow: 0 0 0 rgba(201, 151, 58, 0); }
  50% { box-shadow: 0 0 0 10px rgba(201, 151, 58, 0.16); }
  100% { box-shadow: 0 0 0 rgba(201, 151, 58, 0); }
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.gallery-main {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: visible;
  background: transparent;
}

.product-media-viewport {
  width: 100%;
  min-height: clamp(460px, 68vh, 720px);
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  background: #f2ebde;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  min-height: inherit;
  will-change: transform;
  align-items: center;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #17361e;
  border: 1px solid rgba(23, 54, 30, 0.28);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0;
  display: grid;
  place-items: center;
  line-height: 1;
}

.carousel-arrow-icon {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

.carousel-arrow.prev {
  left: 0.8rem;
}

.carousel-arrow.next {
  right: 0.8rem;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible,
.carousel-arrow:active {
  transform: translateY(-50%);
}

.carousel-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.carousel-counter {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  color: #415147;
  border-radius: 999px;
  padding: 0.3rem 0.68rem;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.38rem;
  padding: 0.55rem 0.8rem 0.28rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(23, 54, 30, 0.3);
  padding: 0;
}

.carousel-dot.is-active {
  background: #1f4b2a;
}

.carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
  gap: 0.45rem;
  padding: 0 0.7rem 0.72rem;
}

.carousel-thumb {
  border: 2px solid rgba(23, 54, 30, 0.2);
  border-radius: 8px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.carousel-thumb.is-active {
  border-color: #c9973a;
}

.carousel-thumb img {
  width: 100%;
  min-height: 62px;
  height: 62px;
  object-fit: cover;
}

.back-chip {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: #183b20;
  border: 1px solid rgba(24, 59, 32, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.78rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.panel {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(45, 92, 46, 0.22);
  padding: 1rem;
}

.stock-msg {
  border-radius: 9px;
  background: #f2f8f0;
  border: 1px solid #cadfc5;
  color: #234428;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.benefit-list span {
  border-radius: 999px;
  border: 1px solid #c8d6c2;
  background: #f6fbf4;
  color: #27442b;
  padding: 0.24rem 0.62rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.meta {
  color: var(--muted);
  line-height: 1.6;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.qty-row input {
  width: 78px;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #b8b3a7;
}

.store-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  width: min(390px, calc(100vw - 2rem));
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(23, 54, 30, 0.98), rgba(38, 82, 43, 0.97));
  color: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  transform: translateX(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.store-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.store-toast-close {
  justify-self: end;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}

.store-toast-close:hover {
  transform: none;
  color: #fff;
}

.store-toast-copy {
  display: grid;
  gap: 0.28rem;
}

.store-toast-copy strong {
  font-size: 1rem;
}

.store-toast-copy span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.store-toast-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.store-toast-summary-block {
  display: grid;
  gap: 0.22rem;
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.store-toast-summary-block span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.store-toast-summary-block strong {
  font-size: 1.02rem;
}

.store-toast-items {
  display: grid;
  gap: 0.55rem;
}

.store-toast-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(9, 24, 12, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-toast-item span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.store-toast-item strong {
  font-size: 0.92rem;
  white-space: nowrap;
}

.store-toast-overflow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.store-toast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.store-toast-actions .btn {
  flex: 0 0 auto;
}

.store-toast-dismiss {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.store-toast-dismiss:hover {
  transform: none;
  color: #fff;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.table th, .table td {
  padding: 0.75rem;
  border-bottom: 1px solid #ebe8e1;
  text-align: left;
}

.table th {
  color: var(--green);
  font-family: 'Playfair Display', serif;
}

.cart-row-product {
  position: relative;
  padding-right: 2.4rem;
}

.cart-row-product-copy {
  min-width: 0;
}

.cart-remove-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  min-width: 36px;
  padding: 0;
  border-radius: 999px;
  background: #f6f1e6;
  color: #6c5941;
  border: 1px solid #d7c8ae;
  font-size: 1.15rem;
  line-height: 1;
}

.cart-remove-btn:hover,
.cart-remove-btn:focus-visible {
  background: #efe4cf;
  color: #4e3f2d;
  transform: none;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.cart-summary {
  position: sticky;
  top: 1rem;
}

.cart-checkout-hint {
  margin: 0 0 0.9rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  background: #f2f8f0;
  border: 1px solid #cadfc5;
  color: #234428;
  font-size: 0.92rem;
  font-weight: 700;
}

.cart-summary .cart-checkout-primary {
  width: 100%;
  min-height: 56px;
  font-size: 1.02rem;
  font-weight: 900;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(201, 151, 58, 0.22);
}

.cart-summary .cart-continue-shopping {
  width: 100%;
  margin-top: 0.7rem;
  background: #f6f1e6;
  color: #31422f;
  border: 1px solid #d8cfbd;
}

.cart-summary .cart-continue-shopping:hover {
  transform: translateY(-1px);
  background: #efe4cf;
}

.cart-delivery-option {
  margin: 0.6rem 0 0.85rem;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #d8d2c5;
  background: #fbf8f1;
}

.cart-delivery-option .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #263f2a;
}

.cart-delivery-option .checkbox-row input {
  width: auto;
  margin-top: 0.2rem;
}

.cart-qty-controls {
  display: inline-grid;
  grid-template-columns: 34px 64px 34px;
  gap: 0.35rem;
  align-items: center;
}

.cart-qty-controls input {
  text-align: center;
  padding: 0.45rem 0.35rem;
  height: 36px;
}

.cart-qty-controls button {
  width: 34px;
  height: 34px;
  min-width: 34px;
  padding: 0;
  border-radius: 8px;
}

.cart-qty-fixed {
  font-weight: 700;
}

.row-actions {
  display: flex;
  gap: 0.45rem;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #c8c2b5;
  border-radius: 8px;
  padding: 0.58rem;
  font: inherit;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.notice {
  background: #fff;
  border: 1px dashed #b5a678;
  padding: 1rem;
  border-radius: 10px;
}

.reassurance-band {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.reassurance-band article {
  background: #fff;
  border: 1px solid #e2dccf;
  border-radius: 12px;
  padding: 0.85rem;
}

.reassurance-band h3 {
  margin: 0 0 0.35rem;
  color: var(--deepgreen);
  font-family: 'Playfair Display', serif;
}

.reassurance-band p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

footer {
  text-align: center;
  padding: 1.2rem 1rem 2rem;
  color: #5c5549;
  margin-top: auto;
}

.product-mobile-buybar {
  display: none;
}

@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-layout { grid-template-columns: 1fr; }
  .reassurance-band { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .hero-photo-row img { aspect-ratio: 4 / 3; }
  .product-media-viewport { min-height: 440px; }
}

@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }
  .topbar-inner { flex-wrap: wrap; }
  .nav-links { width: 100%; flex-wrap: wrap; }
  .hero-panel { display: none; }
  .section-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-photo-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .table {
    display: block;
    background: transparent;
    border-radius: 0;
  }
  .table thead {
    display: none;
  }
  .table tbody {
    display: grid;
    gap: 0.8rem;
  }
  .table tr {
    display: grid;
    gap: 0.5rem;
    padding: 0.85rem;
    border-radius: 12px;
    border: 1px solid #e4ddd1;
    background: #fff;
    box-shadow: 0 8px 18px rgba(29, 31, 24, 0.06);
  }
  .table td {
    display: block;
    padding: 0;
    border-bottom: 0;
  }
  .table td[data-label]:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.18rem;
    color: var(--green);
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
  }
  .cart-row-qty .cart-qty-controls {
    display: grid;
    grid-template-columns: 38px minmax(72px, 1fr) 38px;
    width: min(190px, 100%);
  }
  .cart-row-product {
    padding-right: 2.2rem;
  }
  .cart-remove-btn {
    top: -0.1rem;
    right: -0.1rem;
  }
  .gallery-main {
    min-height: 0;
  }
  .product-media-viewport {
    min-height: 78vw;
    border-radius: 0;
  }
  .product-media-viewport .carousel-arrow.prev { left: 0.5rem; }
  .product-media-viewport .carousel-arrow.next { right: 0.5rem; }
  .carousel-counter {
    right: 0.5rem;
    bottom: 0.5rem;
  }
  .carousel-dots {
    padding-top: 0;
  }
  .carousel-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
  .carousel-thumb img {
    min-height: 56px;
    height: 56px;
  }
  .product-mobile-buybar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.8rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(245, 240, 228, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(45, 92, 46, 0.2);
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
    box-shadow: 0 -12px 28px rgba(29, 31, 24, 0.15);
  }
  .store-toast {
    right: 0.75rem;
    left: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    width: auto;
    transform: translateY(20px);
  }
  .store-toast.is-visible {
    transform: translateY(0);
  }
  .store-toast-summary {
    grid-template-columns: 1fr;
  }
  .store-toast-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .store-toast-actions .btn,
  .store-toast-dismiss {
    width: 100%;
  }
  .product-mobile-buybar .mobile-buy-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--green);
    font-weight: 900;
  }
  .product-mobile-buybar .mobile-buy-copy {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.15rem;
  }
  main {
    padding-bottom: 6.6rem;
  }
}
