﻿/* ==========================================================================
   More Nutrition Clone — style.css
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  --pink:   #E91E8C;
  --pink-light: #FFE4F2;
  --green:  #2E7D32;
  --dark:   #111111;
  --soft:   #777777;
  --border: #E8E8E8;
  --bg:     #F5F5F5;
  --star:   #FFB800;
  --radius: 12px;
  --header-h: 108px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
svg.icon { display: inline-block; width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; flex-shrink: 0; }

/* ---------- Shared Container ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #e8197e 0%, #e91e8c 40%, #f02090 100%);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announcement-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  padding-left: 100%;
}
.announcement-item { display: inline-flex; align-items: center; gap: 8px; }
.anc-icon { font-style: normal; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-top {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.logo img { height: 36px; width: auto; }

.menu-toggle { display: none; }
@media (max-width: 1024px) { .menu-toggle { display: flex; } }

.header-search { flex: 1; max-width: 420px; margin: 0 16px; }
.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 14px;
}
.search-wrap input { background: none; border: none; outline: none; flex: 1; font-size: 14px; }
.search-wrap .icon { width: 16px; height: 16px; color: var(--soft); }

.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.icon-btn {
  width: 40px; height: 40px;
  border: none;
  background: none;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background .15s;
}
.icon-btn:hover { background: var(--bg); }

.lang-pill {
  display: flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border);
  background: none;
  border-radius: 40px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 4px;
  transition: border-color .15s;
}
.lang-pill:hover { border-color: #999; }

.cart-count {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Main Nav ---------- */
.main-nav {
  border-top: 1px solid var(--border);
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  height: 44px;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav ul::-webkit-scrollbar { display: none; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 12px;
  height: 44px;
  font-size: 13.5px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-link:hover { color: var(--pink); }
.nav-link--aktion { color: var(--pink); }
.nav-link.mega-is-active { color: var(--pink); border-bottom-color: var(--pink); }
.nav-link .icon { width: 14px; height: 14px; }

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

/* ---------- Mega Menu ---------- */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-top: 2px solid var(--pink);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 200;
}
.mega-menu.is-open { display: block; }

.mega-menu__inner { max-width: 1440px; margin: 0 auto; padding: 24px 32px 28px; }
.mega-menu__heading { font-size: 18px; font-weight: 800; font-family: 'Poppins', sans-serif; color: var(--pink); margin-bottom: 18px; }
.mega-menu__grid { display: flex; gap: 24px; }
.mega-col { display: flex; flex-direction: column; gap: 2px; min-width: 200px; }

.mega-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .15s;
  color: #222;
}
.mega-item:hover { background: var(--bg); }
.mega-item--plain { padding: 10px 12px; }
.mega-item__img { width: 48px; height: 48px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.mega-item__title { font-size: 13.5px; font-weight: 600; }

/* Backdrop — below header z-index */
.mega-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 90;
}
.mega-backdrop.is-visible { display: block; }

/* ==========================================================================
   MOBILE NAV
   ========================================================================== */
.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: min(380px, 90vw);
  height: 100%;
  background: #fff;
  z-index: 400;
  transform: translateX(-110%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0,0,0,.12);
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-logo { height: 32px; }

.mobile-nav-list { flex: 1; padding: 12px 0; }
.mobile-nav-list > li > a,
.mobile-nav-list .accordion-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  border: none; background: none; width: 100%; text-align: left;
  transition: background .15s;
}
.mobile-nav-list > li > a:hover,
.mobile-nav-list .accordion-trigger:hover { background: var(--bg); }

.accordion-panel {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease;
  background: var(--bg);
}
.accordion-item.is-open .accordion-panel { max-height: 600px; }
.accordion-panel a {
  display: block;
  padding: 12px 32px;
  font-size: 14px;
  color: #444;
  transition: color .15s;
}
.accordion-panel a:hover { color: var(--pink); }

/* ==========================================================================
   OVERLAY
   ========================================================================== */
.overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 300;
}
.overlay.is-visible { display: block; }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: min(430px, 96vw); height: 100%;
  background: #fff; z-index: 500;
  transform: translateX(110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,.15);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  font-size: 17px; font-weight: 700; flex-shrink: 0;
}
/* Discount code */
.cart-discount { padding: 14px 20px 0; flex-shrink: 0; }
.cart-discount__label { font-size: 12.5px; font-weight: 600; display: block; margin-bottom: 8px; color: #111; }
.cart-discount__row { display: flex; gap: 8px; }
.cart-discount__input {
  flex: 1; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 9px 12px; font-size: 13.5px; outline: none; font-family: inherit;
  transition: border-color .15s;
}
.cart-discount__input:focus { border-color: #111; }
.cart-discount__input.is-invalid { border-color: #e53935; animation: cart-shake .38s ease; }
.cart-discount__error { font-size: 12px; font-weight: 600; color: #e53935; margin-top: 6px; display: none; }
.cart-discount__error.is-visible { display: block; animation: cart-fadein .2s ease; }
@keyframes cart-shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-7px); }
  40%      { transform: translateX(7px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
@keyframes cart-fadein { from { opacity:0; } to { opacity:1; } }
.cart-discount__btn {
  background: #fff; border: 2px solid #111; border-radius: 40px;
  padding: 9px 18px; font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: inherit; white-space: nowrap; transition: background .15s, color .15s;
}
.cart-discount__btn:hover { background: #111; color: #fff; }
.cart-applied-codes { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; min-height: 0; }
.cart-code-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #e8f5e9; color: #2E7D32; border: 1px solid #a5d6a7;
  border-radius: 20px; font-size: 12px; font-weight: 700; padding: 4px 10px;
}
.cart-code-remove { background: none; border: none; cursor: pointer; font-size: 14px; color: #2E7D32; padding: 0; line-height: 1; }
/* Shipping bar */
.cart-shipping-progress { display: flex; align-items: center; gap: 10px; padding: 12px 20px 0; flex-shrink: 0; }
.cart-shipping-bar { flex: 1; height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.cart-shipping-fill { height: 100%; background: #1a237e; border-radius: 3px; transition: width .4s ease; }
.cart-shipping-target { font-size: 12px; font-weight: 700; color: #555; flex-shrink: 0; }
.cart-shipping-msg { padding: 6px 20px 0; font-size: 12.5px; color: #555; flex-shrink: 0; }
/* Urgency */
.cart-urgency {
  display: flex; align-items: center; gap: 10px;
  margin: 10px 20px 0; background: #e53935; color: #fff;
  border-radius: 8px; padding: 10px 14px; font-size: 12.5px; flex-shrink: 0;
}
.cart-urgency__icon { font-size: 16px; flex-shrink: 0; font-style: normal; }
/* Cart body */
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-empty { color: var(--soft); text-align: center; margin-top: 40px; font-size: 14px; }
/* Cart item */
.cart-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.cart-item__img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; flex-shrink: 0; background: var(--bg); }
.cart-item__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.cart-item__title { font-size: 13px; font-weight: 700; color: #111; line-height: 1.35; }
.cart-item__variant { font-size: 11.5px; color: #777; }
.cart-item__price { display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.cart-item__old { font-size: 12px; color: #aaa; text-decoration: line-through; }
.cart-item__new { font-size: 14px; font-weight: 700; color: #E91E8C; }
.cart-item__controls { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 40px; width: fit-content; margin-top: 6px; }
.cart-qty-btn { width: 32px; height: 32px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #222; font-weight: 400; }
.cart-qty-val { min-width: 22px; text-align: center; font-size: 13px; font-weight: 700; }
.cart-item__del { background: none; border: none; cursor: pointer; color: #bbb; padding: 4px; flex-shrink: 0; transition: color .15s; align-self: flex-start; margin-top: 2px; }
.cart-item__del:hover { color: #555; }
/* Footer */
.cart-drawer__footer { border-top: 1px solid var(--border); padding: 14px 20px 20px; flex-shrink: 0; }
.cart-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cart-meta__row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #555; }
.cart-meta__savings { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
/* Checkout button — GREEN */
.btn-checkout {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #2e7d32; color: #fff; width: 100%; padding: 16px 24px;
  border: none; border-radius: 40px; font-size: 16px; font-weight: 700;
  cursor: pointer; font-family: 'Poppins', sans-serif; transition: background .2s;
  text-decoration: none;
}
.btn-checkout:hover { background: #1b5e20; }
/* Payment icons in cart */
.cart-pay-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; margin-top: 12px; }
.cart-pay-icons span { font-size: 9.5px; font-weight: 700; color: #444; border: 1px solid #ddd; border-radius: 4px; padding: 3px 7px; height: 22px; display: inline-flex; align-items: center; background: #fff; }

/* ==========================================================================
   PRODUCT CARDS  (shared: homepage + collection)
   ========================================================================== */
.product-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .product-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .product-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .product-grid-4 { grid-template-columns: 1fr; } }

.pcard {
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
  border: 1px solid transparent;
}
.pcard:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  border-color: var(--border);
  transform: translateY(-2px);
}

.pcard__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg);
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.pcard__media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform .3s; }
.pcard:hover .pcard__media img { transform: scale(1.04); }

.pcard__badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; z-index: 1; }
.pbadge {
  font-size: 11px; font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  width: fit-content;
}
.pbadge--sale { background: var(--pink); color: #fff; }
.pbadge--new  { background: var(--green); color: #fff; }

.pcard__cart {
  position: absolute; bottom: 10px; right: 10px;
  width: 38px; height: 38px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s;
}
.pcard:hover .pcard__cart { opacity: 1; transform: translateY(0); }
.pcard__cart .icon { width: 16px; height: 16px; color: #fff; }
.pcard__cart.is-added { background: var(--green); transform: translateY(0) scale(1.15); }
.pcard__cart.is-added .icon { display: none; }
.pcard__cart.is-added::after { content: '✓'; font-size: 16px; font-weight: 700; line-height: 1; }

.pcard__body { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.pcard__variants { display: flex; flex-wrap: wrap; gap: 4px; }
.pchip {
  font-size: 11px; font-weight: 600;
  padding: 3px 8px;
  background: var(--bg);
  border-radius: 20px;
  color: #555;
}
.pchip--more { color: var(--pink); background: var(--pink-light); }
.pcard__name { font-size: 14px; font-weight: 700; line-height: 1.35; color: #111; }
.pcard__desc { font-size: 12px; color: var(--soft); line-height: 1.3; }
.pcard__stars { display: flex; align-items: center; gap: 5px; }
.pcard__star-icons { color: var(--star); font-size: 12px; letter-spacing: 1px; }
.pcard__star-val { font-size: 12px; font-weight: 700; color: #444; }
.pcard__price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
.pcard__price-old { font-size: 12px; color: var(--soft); text-decoration: line-through; }
.pcard__price-new { font-size: 15px; font-weight: 700; color: var(--pink); }
.pcard__price-reg { font-size: 15px; font-weight: 700; color: #111; }
.pcard__unit { font-size: 11px; color: var(--soft); }
.pdiscount { font-size: 11px; font-weight: 700; color: var(--pink); background: var(--pink-light); padding: 2px 7px; border-radius: 20px; }

/* ==========================================================================
   HOMEPAGE
   ========================================================================== */

/* Hero */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide { display: none; }
.hero-slide.is-active { display: block; }
.hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.5); cursor: pointer; transition: background .2s; }
.hero-dots button.is-active { background: #fff; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.9); border: none; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.hero-arrow--prev { left: 16px; }
.hero-arrow--next { right: 16px; }

/* Tab pills */
.ptabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.ptab {
  padding: 9px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: #555;
  transition: all .15s;
}
.ptab.is-active { background: var(--dark); color: #fff; border-color: var(--dark); }
.ptab:hover:not(.is-active) { border-color: #999; color: #111; }

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* Sources */
.sources .sources-list { display: none; }
.sources.is-open .sources-list { display: block; }

/* ==========================================================================
   COLLECTION PAGES
   ========================================================================== */
.col-hero {
  background: var(--bg);
  padding: 48px 24px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.col-hero h1 { font-size: clamp(28px,4vw,48px); font-weight: 800; font-family: 'Poppins', sans-serif; color: #111; margin-bottom: 10px; }
.col-hero p { font-size: 15px; color: var(--soft); max-width: 540px; margin: 0 auto; }

.col-filter-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  max-width: 1280px; margin: 0 auto;
}
.col-filter-pill {
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  background: #fff;
  font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit;
  transition: all .15s;
}
.col-filter-pill:hover, .col-filter-pill.is-active { background: var(--dark); color: #fff; border-color: var(--dark); }

.col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 32px auto;
  padding: 0 24px;
}
@media (max-width: 1100px) { .col-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .col-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .col-grid { grid-template-columns: 1fr; } }

/* Collection card (col-card) */
.col-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  border: 1px solid transparent;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none; color: inherit;
}
.col-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  border-color: var(--border);
  transform: translateY(-2px);
}
.col-card__media { position: relative; aspect-ratio: 1/1; background: var(--bg); overflow: hidden; }
.col-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.col-card__body { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.col-card__name { font-size: 14px; font-weight: 700; color: #111; line-height: 1.35; }
.col-card__stars { display: flex; align-items: center; gap: 5px; }
.col-card__star-icons { color: var(--star); font-size: 12px; }
.col-card__star-val { font-size: 12px; font-weight: 700; color: #444; }
.col-card__price { display: flex; align-items: baseline; gap: 6px; }
.col-card__price-old { font-size: 12px; color: var(--soft); text-decoration: line-through; }
.col-card__price-new { font-size: 15px; font-weight: 700; color: var(--pink); }
.col-card__price-reg { font-size: 15px; font-weight: 700; color: #111; }
.col-card-btn {
  margin: 8px 14px 14px;
  padding: 10px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background .2s;
  text-align: center;
  display: block;
}
.col-card-btn:hover { background: #333; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark);
  color: #fff;
  margin-top: 80px;
}
.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 768px) { .footer-main { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-main { grid-template-columns: 1fr; } }

.fcol h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; color: rgba(255,255,255,.55); }
.fcol ul li { margin-bottom: 10px; }
.fcol ul a { font-size: 13.5px; color: rgba(255,255,255,.75); transition: color .15s; }
.fcol ul a:hover { color: #fff; }
.btn-revoke {
  display: inline-block;
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 40px;
  padding: 7px 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,.75);
  transition: border-color .15s, color .15s;
}
.btn-revoke:hover { border-color: #fff; color: #fff; }

.footer-products { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-products h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; color: rgba(255,255,255,.55); }
.footer-links-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px 16px; }
.footer-links-grid a { font-size: 12.5px; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-links-grid a:hover { color: #fff; }
@media (max-width: 900px) { .footer-links-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .footer-links-grid { grid-template-columns: repeat(2, 1fr); } }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-icons span { font-size: 11px; background: rgba(255,255,255,.1); padding: 4px 9px; border-radius: 4px; color: rgba(255,255,255,.8); font-weight: 600; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.5); }

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 12.5px; color: var(--soft);
  padding: 16px 0;
}
.breadcrumb a { color: var(--soft); transition: color .15s; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span:last-child { color: #111; font-weight: 500; }

/* ==========================================================================
   PRODUCT DETAIL PAGE  (pd-*)
   ========================================================================== */
.pd-page { max-width: 1240px; margin: 0 auto; padding: 0 24px 80px; }

/* Hide breadcrumb on product page to match original */
.pd-page .breadcrumb { display: none; }

/* 50/50 split — matches original */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 32px;
}

/* --- Gallery: vertical thumbs LEFT, main image RIGHT (matches original) --- */
.pd-gallery {
  display: flex;
  flex-direction: row;
  gap: 10px;
  position: sticky;
  top: 120px;
  align-items: flex-start;
}

/* Thumbnails: narrow vertical column on the left */
.pd-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  max-height: 540px;
  flex-shrink: 0;
  width: 72px;
  padding-right: 2px;
}
.pd-gallery__thumbs::-webkit-scrollbar { width: 3px; }
.pd-gallery__thumbs::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }

.pd-thumb {
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--bg);
  flex-shrink: 0;
  transition: border-color .15s;
  display: block;
}
.pd-thumb.is-active { border-color: var(--pink); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 6px; }

/* Main image: takes remaining space */
.pd-gallery__main {
  flex: 1;
  min-width: 0;
  position: relative;
  border-radius: 16px;
  background: var(--bg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pd-gallery__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: box-shadow .15s;
  z-index: 1;
}
.pd-gallery__arrow:hover { box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.pd-gallery__arrow .icon { width: 16px; height: 16px; }

/* --- Product Info --- */
.pd-info { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 120px; }

.pd-rating { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pd-stars { color: var(--star); font-size: 16px; letter-spacing: 1px; line-height: 1; }
.pd-rating-val { font-weight: 700; font-size: 14px; }
.pd-rating-count { color: var(--soft); font-size: 13px; font-weight: 400; cursor: pointer; }

/* Badge: light pink bg, pink text */
.pd-sale-badge {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  width: fit-content;
  letter-spacing: .3px;
}

/* Product badges row (Glutenfrei, Limited, etc.) */
.pd-badges {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.pd-badges:empty { display: none; }
.pd-badge {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: .2px; white-space: nowrap;
}
.pd-badge--green { background: #E8F5E9; color: var(--green); }
.pd-badge--pink  { background: var(--pink-light); color: var(--pink); }
.pd-badge--gray  { background: #f0f0f0; color: #555; }

.pd-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1.15;
  color: #111;
  margin: 0;
}

.pd-subtitle {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.pd-usps {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.pd-usps li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; font-weight: 700; line-height: 1.4; color: #222;
}
.pd-check {
  width: 16px; height: 16px;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 2.5;
}

/* Separator */
.pd-separator { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

/* Variant header */
.pd-variant-header { font-size: 13px; color: var(--soft); font-weight: 400; margin: 0; }

/* Variants */
.pd-variants { display: flex; flex-direction: column; gap: 12px; }
.pd-variant-label {
  font-size: 14px; font-weight: 700; color: #111;
  display: flex; align-items: center; justify-content: space-between;
}
.pd-variant-label .pd-variant-stock { font-weight: 400; font-size: 12.5px; color: var(--soft); }
.pd-variant-options { display: flex; flex-wrap: wrap; gap: 8px; }

/* Text-only variants: pill style */
.pd-variant-btn {
  padding: 9px 20px;
  border: 1.5px solid #ddd;
  border-radius: 40px;
  background: #fff;
  font-size: 13.5px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  color: #222;
  transition: border-color .15s, background .15s, color .15s;
}
.pd-variant-btn.is-active { border-color: var(--pink); background: var(--pink); color: #fff; }
.pd-variant-btn:hover:not(.is-active) { border-color: #333; }

/* Image-tile variants — ~185px wide, 3 per row in 50% column */
.pd-variant-options--tiles { gap: 8px; flex-wrap: wrap; }
.pd-variant-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  width: 185px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
  flex-shrink: 0;
  position: relative;
}
.pd-variant-tile.is-active { border-color: var(--pink); box-shadow: 0 0 0 1px var(--pink); }
.pd-variant-tile:hover:not(.is-active) { border-color: #bbb; }
.pd-variant-tile__img { width: 185px; height: 185px; object-fit: cover; display: block; }
.pd-variant-tile__name {
  font-size: 11px; font-weight: 600; text-align: center;
  padding: 7px 6px 2px; line-height: 1.3; color: #222; width: 100%;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pd-variant-tile__sizes {
  font-size: 9.5px; color: #888; text-align: center;
  padding: 0 6px 8px; width: 100%;
}

/* Size selector */
.pd-size-selector { display: flex; flex-direction: column; gap: 10px; }
.pd-size-selector__head { display: flex; align-items: center; justify-content: space-between; }
.pd-best-price { font-size: 11px; color: var(--green); font-weight: 700; background: #E8F5E9; padding: 3px 10px; border-radius: 20px; }
.pd-size-btn {
  padding: 9px 20px;
  border: 1.5px solid #ddd;
  border-radius: 40px;
  background: #fff;
  font-size: 13.5px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  color: #222;
  transition: border-color .15s, background .15s, color .15s;
}
.pd-size-btn.is-active { border-color: var(--pink); background: var(--pink); color: #fff; }
.pd-size-btn:hover:not(.is-active) { border-color: #333; }

/* Price */
.pd-price {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 0 8px;
  border-top: 1px solid var(--border);
}
.pd-price__label { font-size: 12px; color: #999; font-weight: 400; margin-bottom: 2px; }
.pd-price__old { font-size: 15px; color: #aaa; text-decoration: line-through; display: block; margin-bottom: 2px; }
/* Main row: price on left, qty counter on right */
.pd-price__main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pd-price__left { display: flex; flex-direction: column; }
.pd-price__row { display: flex; align-items: center; gap: 10px; }
.pd-price__new {
  font-size: 34px; font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--dark); line-height: 1;
}
.pd-price__new--sale { color: var(--pink); }
.pd-price__badge { background: var(--pink-light); color: var(--pink); font-size: 12.5px; font-weight: 700; padding: 4px 11px; border-radius: 20px; }
.pd-price__tax { font-size: 11.5px; color: #999; margin-top: 4px; }
.pd-price__tax a { color: #999; text-decoration: underline; }
.pd-price__base { font-size: 11.5px; color: #aaa; }

/* Qty inline (inside price row) */
.pd-qty {
  display: flex; align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  padding: 0 4px;
  flex-shrink: 0;
}
.pd-qty button {
  width: 38px; height: 48px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: #222;
}
.pd-qty button .icon { width: 16px; height: 16px; stroke-width: 2.5; }
.pd-qty__num { width: 28px; text-align: center; font-weight: 700; font-size: 16px; }

/* Cart button: full width below price */
.pd-cart-btn {
  width: 100%;
  background: var(--dark); color: #fff;
  border: none; border-radius: 40px;
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  padding: 0 28px; height: 54px;
  transition: background .2s;
  white-space: nowrap;
  display: block;
  margin-top: 4px;
}
.pd-cart-btn:hover { background: #333; }

/* Payment icons */
.pd-payment-icons {
  display: flex; flex-wrap: wrap; gap: 5px; align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.pd-payment-icon {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 3px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 9.5px; font-weight: 700;
  color: #444;
  background: #fff;
  height: 24px;
  letter-spacing: .3px;
  white-space: nowrap;
}

/* Trust */
.pd-trust {
  display: flex; gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.pd-trust-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 6px;
  font-size: 10.5px; color: #555; text-align: center;
  padding: 4px 8px;
  line-height: 1.4;
}
.pd-trust-icon { width: 26px; height: 26px; color: var(--green); flex-shrink: 0; }
.pd-trust-text { display: block; }
.pd-trust-text strong { display: block; font-size: 11px; font-weight: 600; color: #111; }

/* Delivery */
.pd-delivery {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: #555;
}

/* Tabs */
.pd-tabs { margin-top: 64px; }
.pd-tab-list { display: flex; border-bottom: 2px solid var(--border); }
.pd-tab-btn {
  padding: 14px 24px;
  background: none; border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-size: 14.5px; font-weight: 600;
  cursor: pointer; color: #999;
  font-family: inherit;
  transition: color .15s, border-color .15s;
}
.pd-tab-btn.is-active { color: var(--pink); border-color: var(--pink); }
.pd-tab-panel { display: none; padding: 28px 0; font-size: 14.5px; line-height: 1.75; max-width: 760px; color: #333; }
.pd-tab-panel.is-active { display: block; }
.pd-nutrition-table { border-collapse: collapse; width: 100%; max-width: 520px; margin-top: 8px; }
.pd-nutrition-table th, .pd-nutrition-table td { padding: 9px 14px; border: 1px solid var(--border); font-size: 13.5px; text-align: left; }
.pd-nutrition-table thead th { background: var(--bg); font-weight: 700; }

/* Related */
.pd-related { margin-top: 72px; }
.pd-related__title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; margin-bottom: 28px; font-family: 'Poppins', sans-serif; }

/* Product page responsive */
@media (max-width: 1100px) {
  .pd-layout { gap: 32px; }
  .pd-variant-tile { width: 160px; }
  .pd-variant-tile__img { width: 160px; height: 160px; }
}
@media (max-width: 900px) {
  .pd-layout { grid-template-columns: 1fr; gap: 24px; }
  .pd-gallery { position: static; flex-direction: column-reverse; }
  .pd-gallery__thumbs { flex-direction: row; overflow-x: auto; overflow-y: hidden; width: auto; max-height: none; }
  .pd-thumb { width: 64px; height: 64px; }
  .pd-info { position: static; max-height: none; overflow-y: visible; }
  .pd-variant-tile { width: 140px; }
  .pd-variant-tile__img { width: 140px; height: 140px; }
}
@media (max-width: 600px) {
  .pd-tab-btn { padding: 12px 14px; font-size: 13px; }
  .pd-title { font-size: 24px; }
  .pd-price__new { font-size: 26px; }
}

/* ==========================================================================
   HOMEPAGE — HERO SLIDER
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  display: none;
}
.hero-slide.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
@media (max-width: 700px) {
  .hero-slide.is-active { grid-template-columns: 1fr; min-height: auto; }
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
  gap: 20px;
  color: #fff;
}
.hero-code-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  width: fit-content;
}
.hero-headline {
  font-family: 'Barlow Condensed', 'Poppins', sans-serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}
.hero-cta {
  display: inline-block;
  background: #fff;
  color: #111;
  font-size: 13.5px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  padding: 13px 32px;
  border-radius: 40px;
  width: fit-content;
  transition: background .2s, color .2s;
  letter-spacing: .04em;
}
.hero-cta:hover { background: #f0f0f0; }

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-right img {
  max-height: 420px;
  max-width: 100%;
  object-fit: contain;
  padding: 24px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.hero-arrow--prev { left: 16px; }
.hero-arrow--next { right: 16px; }
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .2s;
}
.hero-dots button.is-active { background: #fff; }

/* ==========================================================================
   HOMEPAGE — HORIZONTAL PRODUCT SCROLL
   ========================================================================== */
.product-hscroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.product-hscroll::-webkit-scrollbar { height: 4px; }
.product-hscroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
/* Fix: cards in hscroll need a fixed width so they don't stretch */
.product-hscroll > .pcard {
  min-width: 220px;
  max-width: 220px;
  flex-shrink: 0;
}

/* ==========================================================================
   HOMEPAGE — SECTION TITLES
   ========================================================================== */
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 800;
  font-style: italic;
  color: #111;
  margin-bottom: 24px;
}
.section-title--center { text-align: center; }

/* ==========================================================================
   HOMEPAGE — CAMPAIGN SPLIT SECTIONS  (.camp-*)
   ========================================================================== */
.camp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.camp-split--rev .camp-cards { order: -1; }
@media (max-width: 768px) {
  .camp-split { grid-template-columns: 1fr; }
  .camp-split--rev .camp-cards { order: 0; }
}

.camp-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 56px;
  gap: 24px;
  overflow: hidden;
  color: #fff;
}

.camp-product {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.camp-headline {
  position: relative;
  font-family: 'Barlow Condensed', 'Poppins', sans-serif;
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  z-index: 1;
}

.camp-cta {
  position: relative;
  display: inline-block;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  padding: 12px 28px;
  border-radius: 40px;
  letter-spacing: .04em;
  z-index: 1;
  transition: background .2s;
}
.camp-cta:hover { background: #f0f0f0; }

.camp-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  overflow-y: auto;
  background: #f5f5f5;
}
.camp-cards > .pcard {
  flex-direction: row;
  align-items: center;
}
.camp-cards > .pcard .pcard__media {
  width: 90px;
  height: 90px;
  min-width: 90px;
  aspect-ratio: 1;
  border-radius: 8px;
  flex-shrink: 0;
}
.camp-cards > .pcard .pcard__body { padding: 8px 12px; }

/* ==========================================================================
   HOMEPAGE — GOALS SECTION  (.goals-*)
   ========================================================================== */
.goals-section { padding: 56px 0; background: #fff; }

.goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .goals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .goals-grid { grid-template-columns: 1fr; } }

.goal-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  text-decoration: none;
}
.goal-card__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goal-card__img-placeholder img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  opacity: .35;
}
.goal-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
}
.goal-card__label {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.goal-arrow { font-size: 20px; }

/* ==========================================================================
   HOMEPAGE — STATS SECTION  (.stats-*)
   ========================================================================== */
.stats-section { padding: 56px 0; background: #f5f5f5; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  min-height: 220px;
  color: #fff;
}
.stat-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.stat-card__num {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}
.stat-card__label {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}

/* ==========================================================================
   HOMEPAGE — TRUST MARQUEE
   ========================================================================== */
.trust-marquee {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}
.trust-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  padding-left: 100%;
}
.trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: #333; }
.trust-icon { font-style: normal; font-size: 14px; }
.trust-icon--pink { color: var(--pink); }
.trust-icon--green { color: var(--green); }

/* ==========================================================================
   HOMEPAGE — REVIEWS SECTION  (.rcard)
   ========================================================================== */
.reviews-section { padding: 64px 0; background: #fff; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .reviews-grid { grid-template-columns: 1fr; } }

.rcard {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rcard__img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #e0e0e0;
  flex-shrink: 0;
}
.rcard__img img { width: 100%; height: 100%; object-fit: contain; }
.rcard__top { display: flex; align-items: center; justify-content: space-between; }
.rcard__stars { color: var(--star); font-size: 13px; letter-spacing: 1px; }
.rcard__date { font-size: 11.5px; color: var(--soft); }
.rcard__title { font-size: 14.5px; font-weight: 700; }
.rcard__text { font-size: 13.5px; color: #444; line-height: 1.55; flex: 1; }
.rcard__author { font-size: 12px; color: var(--soft); }
.rcard__verified { color: var(--green); margin-left: 4px; font-weight: 600; }

/* ==========================================================================
   MISC BADGES & UTILS
   ========================================================================== */
.pbadge--limited { background: #111; color: #fff; }
.section-title--normal { font-style: normal; }
.section-title--upper  { text-transform: uppercase; letter-spacing: .06em; }

/* single-column mega menu variant */
.mega-menu__grid--single { flex-direction: column; }
.mega-menu__grid--single .mega-col { flex-direction: row; flex-wrap: wrap; }

/* ==========================================================================
   COLLECTION PAGES — HEADER / TOOLBAR / GRID
   ========================================================================== */
.collection-header {
  background: var(--bg);
  padding: 36px 24px 32px;
  border-bottom: 1px solid var(--border);
}
.collection-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: #111;
  margin: 8px 0 10px;
}
.collection-header p {
  font-size: 14.5px;
  color: var(--soft);
  max-width: 600px;
  line-height: 1.6;
}

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  max-width: 1280px;
  margin: 0 auto;
}
.collection-count {
  font-size: 13.5px;
  color: var(--soft);
  font-weight: 500;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 24px auto 60px;
  padding: 0 24px;
}
@media (max-width: 1100px) { .collection-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .collection-grid { grid-template-columns: 1fr; } }
/* selected variant value in label */.pd-variant-selected { font-weight: 400; color: #555; }

/* description tab: style injected HTML content */
#pdDesc p, .pd-tab-panel p { margin-bottom: 14px; }
#pdDesc ul, .pd-tab-panel ul { padding-left: 20px; margin-bottom: 14px; }
#pdDesc li, .pd-tab-panel li { margin-bottom: 6px; font-size: 14px; }
#pdDesc strong, .pd-tab-panel strong { font-weight: 700; }
#pdDesc a { color: var(--pink); }