/** Shopify CDN: Minification failed

Line 570:18 Expected identifier but found whitespace
Line 570:20 Unexpected "{"
Line 570:29 Expected ":"
Line 571:24 Expected identifier but found whitespace
Line 571:26 Unexpected "{"
Line 571:35 Expected ":"
Line 572:25 Expected identifier but found whitespace
Line 572:27 Unexpected "{"
Line 572:36 Expected ":"

**/
.pp-main-product .product-main {
  margin: 0 auto;
  padding: 12px 0 0;
  display: grid;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

/* ===== IMAGE GALLERY ===== */
.pp-main-product .gallery-wrap {
  position: sticky;
  top: 88px;
  min-width: 0;
  max-width: 100%;
}

.pp-main-product .main-image-wrap {
  background: var(--sand-light);
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

.pp-main-product .main-image-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  background: var(--sand-light);
}

.pp-main-product .gallery-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.pp-main-product .gallery-slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.28s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.pp-main-product .gallery-slider-track.is-dragging {
  transition: none;
}

.template-product .section-tag {
  color: #3d6b40;
  background: #d4e5d5;
}
.template-product .section-tag.orange {
  color: #9a5510;
  background: #fdeedd;
}

@media (prefers-reduced-motion: reduce) {
  .pp-main-product .gallery-slider-track {
    transition: none;
  }
  .product-lightbox-img {
    transition: none;
  }
}

.pp-main-product .gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-main-product .main-image-emoji {
  font-size: 160px;
  transition: transform 0.4s ease;
  user-select: none;
  filter: drop-shadow(0 20px 40px rgba(61,44,30,0.15));
}

.pp-main-product .main-image-wrap:hover .main-image-emoji { transform: scale(1.1); }

.pp-main-product .img-badge-wrap {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 4;
  max-width: calc(100% - 80px);
  pointer-events: none;
}

.pp-main-product .img-badge {
  display: inline-block;
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.pp-main-product .img-badge.bestseller { background: var(--amber); color: #fff; }
.pp-main-product .img-badge.vet { background: var(--sage); color: #fff; }

.pp-main-product .gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--bark);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.pp-main-product .gallery-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}
.pp-main-product .gallery-prev { left: 12px; }
.pp-main-product .gallery-next { right: 12px; }

.pp-main-product .thumbnail-row {
  display: flex;
  gap: 10px;
}

.pp-main-product .thumb {
  background: var(--sand-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.pp-main-product .thumb.active { border-color: var(--amber); }
.pp-main-product .thumb:hover { transform: scale(1.05); border-color: var(--bark); }

/* ===== PRODUCT INFO ===== */
.pp-main-product .product-info {
  padding-top: 4px;
  min-width: 0;
  max-width: 100%;
  container-type: inline-size;
  container-name: product-info;
}
.pp-main-product .pi-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.pp-main-product .pi-brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

.pp-main-product .pi-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--bark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.pp-main-product .pi-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pp-main-product .stars-lg { color: #f0a500; font-size: 16px; letter-spacing: 1px; }
.pp-main-product .rating-num { font-weight: 700; color: var(--bark); font-size: 15px; }
.pp-main-product .rating-count { font-size: 13px; color: #2d6f8a; font-weight: 600; text-decoration: underline; cursor: pointer; background: none; border: none; padding: 0; font-family: inherit; }
.pp-main-product .pi-badge-small {
  background: var(--sage-light);
  color: var(--sage);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
}

/* Viewing now */
.pp-main-product .viewing-now {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff8f0;
  border: 1px solid #f0d9b8;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.pp-main-product .viewers-num {
  font-weight: 700;
  color: var(--bark);
  display: inline-block;
  min-width: 1.5em;
  text-align: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.pp-main-product .viewers-num.is-updating {
  opacity: 0.55;
  transform: translateY(-2px);
}
.pp-main-product .viewing-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
}
@keyframes pp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.pp-main-product .viewing-dot { animation: pp-pulse 1.5s ease infinite; }

/* Price */
.pp-main-product .price-block {
  background: var(--sand-light);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.pp-main-product .price-main {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.pp-main-product .price-was {
  font-size: 18px;
  color: #6b5c4e;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
}

.pp-main-product .price-save {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 10px;
  vertical-align: middle;
}

.pp-main-product .price-per-unit {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* Stock urgency */
.pp-main-product .stock-urgency {
  margin-bottom: 20px;
}

.pp-main-product .stock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.pp-main-product .stock-label { font-size: 13px; font-weight: 600; color: var(--coral); }
.pp-main-product .stock-num { font-size: 12px; color: var(--text-mid); }

.pp-main-product .stock-track {
  height: 8px;
  background: var(--border);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 6px;
}

.pp-main-product .stock-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sage) 0%, var(--amber) 60%, var(--coral) 100%);
  border-radius: 50px;
  width: 82%;
  transition: width 1s ease;
}

.pp-main-product .stock-sub { font-size: 12px; color: var(--text-mid); }
.pp-main-product .stock-sub strong { color: var(--bark); }

/* Countdown */
.pp-main-product .countdown-wrap {
  background: linear-gradient(135deg, #fff3e8, #fde8d2);
  border: 1px solid #f0d0a8;
  border-radius: var(--radius);
  padding: clamp(10px, 2.5vw, 14px) clamp(12px, 3vw, 18px);
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
  margin-bottom: 20px;
  flex-wrap: wrap;
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
}
.pp-main-product .cd-label-text {
  font-size: clamp(11px, 3.2vw, 13px);
  font-weight: 600;
  color: var(--bark);
  flex: 1 1 7rem;
  min-width: 0;
  line-height: 1.3;
}
.pp-main-product .countdown-units {
  display: flex;
  gap: clamp(2px, 1vw, 6px);
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
}
.pp-main-product .cd-unit {
  background: var(--bark);
  color: #fff;
  border-radius: 8px;
  padding: clamp(4px, 1.2vw, 6px) clamp(5px, 1.8vw, 10px);
  text-align: center;
  flex: 1 1 0;
  min-width: clamp(34px, 10vw, 48px);
  max-width: 64px;
  box-sizing: border-box;
}
.pp-main-product .cd-num {
  font-family: var(--font-heading);
  font-size: clamp(15px, 4.2vw, 20px);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.pp-main-product .cd-lbl {
  font-size: clamp(7px, 2vw, 9px);
  opacity: 0.65;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.pp-main-product .cd-sep {
  font-size: clamp(12px, 3.5vw, 18px);
  font-weight: 700;
  color: var(--bark);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
}

@container product-info (max-width: 400px) {
  .pp-main-product .countdown-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .pp-main-product .cd-label-text {
    text-align: center;
    flex: none;
  }
  .pp-main-product .countdown-units {
    justify-content: center;
    width: 100%;
  }
  .pp-main-product .cd-unit {
    flex: 1 1 0;
    max-width: none;
  }
}

/* Image lightbox */
.product-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  align-items: center;
  justify-content: center;
}
.product-lightbox.open {
  display: flex;
}
.product-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}
.product-lightbox-stage {
  position: relative;
  z-index: 2;
  max-width: min(92vw, 1100px);
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.18s ease, transform 0.2s ease;
  cursor: zoom-out;
}
.product-lightbox-img.is-loading {
  opacity: 0.35;
}
.product-lightbox-nav,
.product-lightbox-close {
  position: absolute;
  z-index: 3;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--bark);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.product-lightbox-nav:hover,
.product-lightbox-close:hover {
  background: #fff;
  transform: scale(1.06);
}
.product-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 28px;
  line-height: 1;
}
.product-lightbox-nav:hover { transform: translateY(-50%) scale(1.06); }
.product-lightbox-prev { left: 16px; }
.product-lightbox-next { right: 16px; }
.product-lightbox-close {
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  font-size: 18px;
}
.product-lightbox-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  text-align: center;
  margin: 0;
  padding: 0 16px;
  white-space: nowrap;
}

/* Variants */
.pp-main-product .variant-section { margin-bottom: 20px; }

.pp-main-product .variant-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pp-main-product .variant-label span { color: var(--amber); font-weight: 700; }

.pp-main-product .variant-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pp-main-product .variant-btn {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.pp-main-product .variant-btn.active {
  border-color: var(--amber);
  background: #fff8f0;
  color: var(--bark);
  font-weight: 700;
}
.pp-main-product .variant-btn:hover { border-color: var(--bark); color: var(--bark); }

/* ===== BUNDLE & SAVE ===== */
.pp-main-product .bundle-save {
  margin: 20px 0 24px;
  --bundle-accent: {{ section.settings.bundle_accent_color | default: '#6b4c9a' }};
  --bundle-accent-light: {{ section.settings.bundle_accent_color | default: '#6b4c9a' | color_modify: 'alpha', 0.08 }};
  --bundle-accent-border: {{ section.settings.bundle_accent_color | default: '#6b4c9a' | color_modify: 'alpha', 0.35 }};
}
.pp-main-product .bundle-save-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.pp-main-product .bundle-save-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.pp-main-product .bundle-save-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--bark);
  white-space: nowrap;
}
.pp-main-product .bundle-save-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pp-main-product .bundle-tier {
  position: relative;
  display: block;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.pp-main-product .bundle-tier:hover { border-color: var(--bundle-accent-border); }
.pp-main-product .bundle-tier.is-selected {
  border-color: var(--bundle-accent);
  background: var(--bundle-accent-light);
  box-shadow: 0 4px 18px rgba(61, 44, 30, 0.06);
}
.pp-main-product .bundle-tier-radio {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 18px;
  height: 18px;
  accent-color: var(--bundle-accent);
  margin: 0;
}
.pp-main-product .bundle-tier-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-left: 30px;
}
.pp-main-product .bundle-tier-left { flex: 1; min-width: 0; }
.pp-main-product .bundle-tier-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.pp-main-product .bundle-tier-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--bark);
}
.pp-main-product .bundle-tier-pack {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: var(--sand-light);
  color: var(--text-mid);
  border-radius: 50px;
  padding: 3px 10px;
}
.pp-main-product .bundle-tier.is-selected .bundle-tier-pack {
  background: rgba(255, 255, 255, 0.7);
}
.pp-main-product .bundle-tier-save-text {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.4;
}
.pp-main-product .bundle-tier-bonus {
  font-size: 12px;
  font-weight: 600;
  color: var(--bundle-accent);
  margin: 4px 0 0;
}
.pp-main-product .bundle-tier-prices { text-align: right; flex-shrink: 0; }
.pp-main-product .bundle-tier-price {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--bundle-accent);
  line-height: 1.1;
}
.pp-main-product .bundle-tier-compare {
  display: block;
  font-size: 13px;
  color: #6b5c4e;
  text-decoration: line-through;
  margin-top: 2px;
}
.pp-main-product .bundle-ribbon {
  position: absolute;
  top: 12px;
  right: -34px;
  transform: rotate(45deg);
  background: var(--bundle-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 36px;
  pointer-events: none;
}
.pp-main-product .bundle-tier-variants {
  margin-top: 14px;
  padding-top: 14px;
  padding-left: 30px;
  border-top: 1px solid var(--bundle-accent-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pp-main-product .bundle-tier-variants[hidden] { display: none !important; }
.pp-main-product .bundle-item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--bundle-accent-border);
  border-radius: 12px;
  padding: 12px 14px;
}
.pp-main-product .bundle-item-head {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--bundle-accent);
  margin-bottom: 10px;
}
.pp-main-product .bundle-option-row { margin-bottom: 10px; }
.pp-main-product .bundle-option-row:last-child { margin-bottom: 0; }
.pp-main-product .bundle-option-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 8px;
}
.pp-main-product .bundle-option-label span {
  color: var(--bundle-accent);
  font-weight: 700;
}
.pp-main-product .bundle-variant-select {
  width: 100%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--bark);
  border-radius: 10px;
  padding: 10px 36px 10px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b4c35' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pp-main-product .bundle-variant-select:hover,
.pp-main-product .bundle-variant-select:focus {
  border-color: var(--bundle-accent);
  outline: none;
  box-shadow: 0 0 0 3px var(--bundle-accent-light);
}
.pp-main-product.has-bundle-multi .product-form-standard[data-standard-variants] {
  display: none !important;
}
.pp-main-product .product-bundle-above-atc {
  margin-bottom: 12px;
}
.pp-main-product .bundle-tier-variants.is-open {
  display: block;
}
.pp-main-product .bundle-pick-hint {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  margin: 0 0 10px 28px;
}
@media (max-width: 600px) {
  .pp-main-product .bundle-tier-main { flex-direction: column; gap: 10px; }
  .pp-main-product .bundle-tier-prices { text-align: left; }
  .pp-main-product .bundle-tier-price { font-size: 20px; }
}

/* Color swatches */
.pp-main-product .swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  box-shadow: 0 2px 6px var(--shadow);
}
.pp-main-product .swatch:hover { transform: scale(1.1); }
.pp-main-product .swatch.active { border-color: var(--bark); }

/* Quantity + ATC */
.pp-main-product .atc-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.pp-main-product .qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
}
.pp-main-product .qty-btn {
  background: none;
  border: none;
  padding: 0 16px;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  color: var(--bark);
  height: 48px;
  transition: background 0.2s;
}
.pp-main-product .qty-btn:hover { background: var(--sand-light); }
.pp-main-product .qty-num {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--bark);
  min-width: 36px;
  text-align: center;
}

.pp-main-product .btn-atc {
  flex: 1;
  background: var(--bark);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(61,44,30,0.2);
}
.pp-main-product .btn-atc:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,131,42,0.35); }

.pp-main-product .btn-buynow {
  width: 100%;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(232,131,42,0.3);
}
.pp-main-product .btn-buynow:hover { background: var(--amber-dark); transform: translateY(-1px); }

/* Trust badges inline */
.pp-main-product .trust-badges-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.pp-main-product .tbi {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
}
.pp-main-product .tbi-icon { font-size: 18px; flex-shrink: 0; }
.pp-main-product .tbi-title { font-weight: 600; color: var(--bark); font-size: 12px; line-height: 1.2; }
.pp-main-product .tbi-sub { font-size: 10px; color: var(--text-light); }

/* Payment icons */
.pp-main-product .payment-icons-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pp-main-product .pay-label { font-size: 11px; color: var(--text-light); }
.pp-main-product .pay-icon {
  background: var(--sand-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-mid);
}

/* Accordion / Details */
.pp-main-product .accordion { margin-bottom: 0; }
.pp-main-product .acc-item { border-top: 1px solid var(--border); }
.pp-main-product .acc-item:last-child { border-bottom: 1px solid var(--border); }

.pp-main-product .acc-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--bark);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}
.pp-main-product .acc-btn:hover { color: var(--amber); }
.pp-main-product .acc-arrow { font-size: 18px; transition: transform 0.3s; color: var(--amber); flex-shrink: 0; }
.pp-main-product .acc-item.open .acc-arrow { transform: rotate(45deg); }

.pp-main-product .acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.pp-main-product .acc-item.open .acc-body { max-height: 2400px; }

.pp-main-product .product-custom-blocks {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.pp-main-product .product-block-group {
  margin-bottom: 16px;
}

.pp-main-product .pi-block {
  margin-bottom: 20px;
}

.pp-main-product .pi-block-heading {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--bark);
  margin: 0 0 10px;
}

.pp-main-product .pi-block-content {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

.pp-main-product .pi-block-content img,
.pp-main-product .pi-metafield-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-top: 8px;
}

.pp-main-product .pi-metafield-link {
  color: var(--amber);
  word-break: break-word;
}

.pp-main-product .pi-metafield-empty {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

.pp-main-product .pi-metafield-empty code {
  font-size: 12px;
  background: var(--sand-light);
  padding: 2px 6px;
  border-radius: 4px;
}

.pp-main-product .acc-inner {
  padding-bottom: 18px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

.pp-main-product .acc-inner ul { padding-left: 18px; }
.pp-main-product .acc-inner ul li { margin-bottom: 6px; }

/* Collapsible product description (mobile-first) */
.pp-main-product .pi-description-collapse {
  border: none;
  margin-bottom: 0;
}
.pp-main-product .pi-desc-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--bark);
  cursor: pointer;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.pp-main-product .pi-desc-summary::-webkit-details-marker { display: none; }
.pp-main-product .pi-desc-arrow {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-light);
  transition: transform 0.2s;
}
.pp-main-product .pi-description-collapse[open] .pi-desc-arrow { transform: rotate(45deg); }
.pp-main-product .pi-description-collapse .pi-block-content {
  padding: 12px 0 16px;
  font-size: 14px;
  line-height: 1.65;
}
@media (min-width: 769px) {
  .pp-main-product .pi-description-collapse .pi-desc-summary {
    pointer-events: none;
    cursor: default;
    border-bottom: none;
    padding-bottom: 8px;
    font-size: 17px;
  }
  .pp-main-product .pi-description-collapse .pi-desc-arrow { display: none; }
  .pp-main-product .pi-description-collapse .pi-block-content {
    display: block !important;
    padding-top: 0;
  }
}

/* ===== TRUST MICRO + DEFERRED BUY ZONE ===== */
.pp-main-product .trust-micro-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 4px;
}
.pp-main-product .trust-micro-chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.3;
}
.pp-main-product .product-buy-deferred {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.pp-main-product .product-buy-deferred > *:first-child { margin-top: 0; }

/* ===== STICKY ATC BAR (sibling of .pp-main-product) ===== */
.template-product .sticky-atc {
  position: fixed;
  bottom: -120px;
  left: 0;
  right: 0;
  z-index: 450;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 0;
  box-shadow: 0 -8px 32px rgba(61, 44, 30, 0.12);
  transition: bottom 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.template-product .sticky-atc.show { bottom: 0; }
.template-product .sticky-atc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 100%;
}
.template-product .sticky-product-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
}
.template-product .sticky-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--sand-light);
}
.template-product .sticky-text { min-width: 0; }
.template-product .sticky-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1.2;
}
.template-product .sticky-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.template-product .sticky-atc-btn {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 200px;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(232, 131, 42, 0.35);
}
.template-product .sticky-atc-btn:hover { background: var(--amber-dark); }
.template-product .sticky-atc-btn:active { transform: scale(0.98); }
body.template-product.sticky-atc-visible { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0)); }
@media (min-width: 769px) {
  .template-product .sticky-atc { display: none !important; }
  body.template-product.sticky-atc-visible { padding-bottom: 0; }
}

.pp-main-product .visually-hidden { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0 }
.pp-main-product .product-select { position:absolute;opacity:0;pointer-events:none;height:0;width:0 }
.pp-main-product .main-product-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.pp-main-product .thumbnail-row .thumb {
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.pp-main-product .thumbnail-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  cursor: pointer;
  display: block;
}
.pp-main-product .breadcrumb[hidden] { display: none !important; }
.pp-main-product .breadcrumb {
  margin: 0 auto;
  padding: 8px 0 0;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
}
.pp-main-product .breadcrumb a { color: var(--text-mid); }
@media (max-width: 1024px) {
  .pp-main-product .product-main { grid-template-columns: 1fr; gap: 24px; }
  .pp-main-product .countdown-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .pp-main-product .cd-label-text {
    text-align: center;
    flex: none;
  }
  .pp-main-product .countdown-units {
    justify-content: center;
    width: 100%;
  }
  .pp-main-product .cd-unit {
    flex: 1 1 0;
    max-width: none;
  }
}
@media (max-width: 480px) {
  .pp-main-product .countdown-units {
    gap: 3px;
  }
  .pp-main-product .cd-unit {
    min-width: 0;
    padding: 5px 4px;
  }
}
@media (max-width: 768px) {
  .pp-main-product .product-main { grid-template-columns: 1fr; padding: 8px 0 0; }
  .pp-main-product .breadcrumb { padding: 6px 0 0; }
  .pp-main-product .gallery-wrap { position: static; }
  .pp-main-product .main-image-wrap {
    width: 100%;
  }
  .pp-main-product .product-buy-deferred {
    margin-top: 12px;
    padding-top: 12px;
    border-top: none;
  }
  .pp-main-product .trust-micro-row {
    justify-content: center;
    margin: 8px 0 2px;
  }
  .pp-main-product .trust-micro-chip {
    font-size: 11px;
    padding: 4px 0;
  }
  .pp-main-product .atc-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .pp-main-product .qty-selector { display: none; }
  .pp-main-product .btn-atc {
    width: 100%;
    flex: none;
    min-height: 54px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 800;
    background: var(--amber);
    box-shadow: 0 8px 24px rgba(232, 131, 42, 0.38);
    letter-spacing: 0.01em;
  }
  .pp-main-product .btn-atc:hover {
    background: var(--amber-dark);
  }
  .pp-main-product .price-block {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 10px;
  }
  .pp-main-product .btn-buynow {
    margin-top: 10px;
    margin-bottom: 0;
    padding: 12px;
    font-size: 14px;
    background: transparent;
    color: var(--bark);
    border: 1.5px solid var(--border);
    box-shadow: none;
  }
  .pp-main-product .trust-badges-inline { display: none; }
  .pp-main-product .img-badge-wrap .img-badge:nth-child(n+2) { display: none; }
  .template-product .sticky-atc-inner { padding: 10px 14px; gap: 10px; }
  .template-product .sticky-atc-btn {
    max-width: none;
    min-height: 48px;
    padding: 14px 18px;
    font-size: 15px;
  }
  .template-product .sticky-name { display: none; }
  .pp-main-product .variant-options { gap: 8px; }
  .pp-main-product .variant-btn { padding: 8px 14px; font-size: 13px; }
  .pp-main-product .gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .pp-main-product .gallery-prev { left: 8px; }
  .pp-main-product .gallery-next { right: 8px; }
  .pp-main-product .img-badge-wrap {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 56px);
  }
  .pp-main-product .img-badge {
    font-size: 10px;
    padding: 4px 10px;
  }
  .pp-main-product .countdown-wrap {
    padding: 12px 10px;
  }
  .pp-main-product .price-main { font-size: 30px; }
  .pp-main-product .thumbnail-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .product-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .product-lightbox-prev { left: 8px; }
  .product-lightbox-next { right: 8px; }
  .product-lightbox-hint {
    white-space: normal;
    font-size: 11px;
    bottom: 12px;
    max-width: 90vw;
  }
}

/* Product page — Shopify wraps each block in <section>; kill global section padding */
.template-product #main-content > .shopify-section {
  padding: 0 !important;
}

/* Product page — consistent tight spacing on all screen sizes */
.template-product .pp-product-howto .section-header,
.template-product .pp-product-upsell .section-header,
.template-product .pp-product-reviews .section-header {
  margin-bottom: 12px;
}

.template-product .pp-product-faq .section-header {
  margin-bottom: 8px !important;
}

.template-product .pp-product-why .why-p {
  margin-bottom: 12px;
}

.template-product .pp-product-reviews .reviews-top {
  margin-bottom: 12px;
}

.template-product .pp-product-guarantee .guarantee-banner {
  padding: 24px 20px;
}

.template-product .pp-product-guarantee .guarantee-banner p {
  margin-bottom: 16px;
}

@media (min-width: 769px) {
  .template-product .pawprime-section:not(.pp-main-product):not(.pp-product-benefits):not(.pp-product-guarantee) {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
}

@media (max-width: 768px) {
  .template-product .pawprime-section:not(.pp-main-product):not(.pp-product-benefits):not(.pp-product-guarantee) {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .template-product .pp-main-product.pawprime-section {
    padding: 0 16px 4px !important;
  }

  .template-product .pp-product-benefits.pawprime-section,
  .template-product .pp-product-guarantee.pawprime-section {
    padding: 0 !important;
  }

  .template-product .fade-in {
    opacity: 1;
    transform: none;
  }

  /* — Main product buy box — */
  .template-product .pp-main-product .breadcrumb {
    display: none;
  }

  .template-product .pp-main-product .gallery-wrap {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }

  .template-product .pp-main-product .main-image-wrap {
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin-bottom: 10px;
  }

  .template-product .pp-main-product .main-image-media,
  .template-product .pp-main-product .main-image-wrap {
    border-radius: 0;
  }

  .template-product .pp-main-product .product-main {
    gap: 10px;
    padding-top: 0;
  }

  .template-product .pp-main-product .pi-title {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .template-product .pp-main-product .pi-rating-row {
    margin-bottom: 10px;
  }

  .template-product .pp-main-product .price-block {
    padding: 0;
    margin-bottom: 8px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .template-product .pp-main-product .product-bundle-above-atc {
    margin-bottom: 10px;
  }

  .template-product .pp-main-product .bundle-tier-variants {
    margin-top: 10px;
    padding-top: 10px;
  }

  .template-product .pp-main-product .bundle-item {
    margin-bottom: 10px;
  }

  .template-product .pp-main-product .bundle-pick-hint {
    margin-left: 0;
    margin-bottom: 8px;
    text-align: center;
  }

  .template-product .pp-main-product .price-main {
    font-size: 28px;
  }

  .template-product .pp-main-product .countdown-wrap {
    margin-bottom: 8px;
    padding: 8px 0;
    background: transparent;
    border: none;
    box-shadow: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .template-product .pp-main-product .viewing-now {
    margin-bottom: 8px;
    font-size: 11px;
    padding: 4px 0;
    background: transparent;
    border: none;
  }

  .template-product .pp-main-product .stock-urgency {
    margin-bottom: 8px;
    padding: 0;
    background: transparent;
    border: none;
  }

  .template-product .pp-main-product .cd-label-text {
    font-size: 11px;
    flex: 1;
    text-align: left;
  }

  .template-product .pp-main-product .countdown-units {
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .template-product .pp-main-product .bundle-tier-main {
    padding-left: 24px;
  }

  .template-product .pp-main-product .bundle-tier-title {
    font-size: 14px;
  }

  .template-product .pp-main-product .bundle-tier-price {
    font-size: 18px;
  }

  .template-product .pp-main-product .product-buy-deferred {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(61, 44, 30, 0.08);
  }

  .template-product .pp-main-product .trust-micro-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: center;
    margin: 6px 0 4px;
  }

  .template-product .pp-main-product .trust-micro-chip {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-mid);
  }

  .template-product .pp-main-product .atc-row {
    flex-direction: column;
    gap: 0;
  }

  .template-product .pp-main-product .qty-selector {
    display: none;
  }

  .template-product .pp-main-product .btn-atc {
    width: 100%;
    flex: none;
    min-height: 54px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 800;
    background: var(--amber);
    box-shadow: 0 8px 24px rgba(232, 131, 42, 0.38);
  }

  .template-product .pp-main-product .btn-buynow {
    margin-bottom: 0;
    padding: 11px;
    font-size: 13px;
    background: transparent;
    color: var(--bark);
    border: 1.5px solid var(--border);
    box-shadow: none;
  }

  .template-product .pp-main-product .trust-badges-inline {
    display: none;
  }

  .template-product .pp-main-product .tbi {
    border: none;
    background: var(--cream);
    box-shadow: none;
  }

  .template-product .pp-main-product .bundle-save {
    margin: 8px 0 10px;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .template-product .pp-main-product .bundle-tier {
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    box-shadow: none;
  }

  .template-product .pp-main-product .bundle-tier.is-selected {
    border-color: var(--amber);
    box-shadow: none;
  }

  .template-product .pp-main-product .img-badge-wrap .img-badge:nth-child(n+2) {
    display: none;
  }

  .template-product .pp-main-product .pi-block,
  .template-product .pp-main-product .product-block-group {
    border: none;
    box-shadow: none;
  }

  .template-product .sticky-atc-btn {
    max-width: none;
    min-height: 50px;
  }

  .template-product .pp-main-product .thumbnail-row .thumb {
    width: 56px;
    height: 56px;
  }

  .template-product .pp-main-product .acc-btn {
    padding: 12px 0;
    font-size: 13px;
  }

  /* — Benefits strip — */
  .template-product .pp-product-benefits .benefits-strip {
    padding: 12px 0;
  }

  .template-product .pp-product-benefits .benefits-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .template-product .pp-product-benefits .benefits-inner::-webkit-scrollbar {
    display: none;
  }

  .template-product .pp-product-benefits .benefit-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 130px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 10px;
  }

  .template-product .pp-product-benefits .benefit-sub {
    display: none;
  }

  .template-product .pp-product-benefits .benefit-title {
    font-size: 12px;
  }

  /* — Why section — */
  .template-product .pp-product-why .why-visual {
    display: none;
  }

  .template-product .pp-product-why .why-inner {
    gap: 0;
  }

  .template-product .pp-product-why .why-h {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .template-product .pp-product-why .why-p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .template-product .pp-product-why .feature-list {
    gap: 10px;
  }

  .template-product .pp-product-why .feature-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 10px 0;
  }

  .template-product .pp-product-why .feature-desc {
    font-size: 12px;
    line-height: 1.45;
  }

  /* — How-to — */
  .template-product .pp-product-howto .section-header {
    margin-bottom: 16px;
  }

  .template-product .pp-product-howto .section-h2 {
    font-size: 22px;
  }

  .template-product .pp-product-howto .howto-steps {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .template-product .pp-product-howto .howto-steps::-webkit-scrollbar {
    display: none;
  }

  .template-product .pp-product-howto .howto-step {
    flex: 0 0 78%;
    min-width: 78%;
    scroll-snap-align: center;
    padding: 14px 12px;
  }

  .template-product .pp-product-howto .howto-num {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 8px;
  }

  .template-product .pp-product-howto .howto-icon {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .template-product .pp-product-howto .howto-text {
    font-size: 12px;
    line-height: 1.5;
  }

  /* — Reviews — */
  .template-product .pp-product-reviews .section-header {
    margin-bottom: 12px;
  }

  .template-product .pp-product-reviews .section-h2 {
    font-size: 22px;
  }

  .template-product .pp-product-reviews .reviews-top {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 16px;
  }

  .template-product .pp-product-reviews .rev-summary-left {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .template-product .pp-product-reviews .rev-big-num {
    font-size: 40px;
  }

  .template-product .pp-product-reviews .rev-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .template-product .pp-product-reviews .rev-filter-btn {
    flex-shrink: 0;
    padding: 6px 12px;
    font-size: 11px;
  }

  .template-product .pp-product-reviews .reviews-grid {
    gap: 12px;
    margin-bottom: 16px;
  }

  .template-product .pp-product-reviews .review-card {
    padding: 14px;
  }

  .template-product .pp-product-reviews .review-card:nth-child(n+3) {
    display: none;
  }

  .template-product .pp-product-reviews .rev-photo {
    height: 64px;
    font-size: 24px;
  }

  .template-product .pp-product-reviews .rev-text {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* — Upsell — */
  .template-product .pp-product-upsell .section-header {
    margin-bottom: 16px;
  }

  .template-product .pp-product-upsell .section-h2 {
    font-size: 22px;
  }

  .template-product .pp-product-upsell .section-p {
    font-size: 14px;
  }

  .template-product .pp-product-upsell .upsell-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .template-product .pp-product-upsell .upsell-grid::-webkit-scrollbar {
    display: none;
  }

  .template-product .pp-product-upsell .upsell-card {
    flex: 0 0 72%;
    min-width: 72%;
    scroll-snap-align: center;
  }

  .template-product .pp-product-upsell .upsell-img {
    height: 120px;
    font-size: 40px;
  }

  /* — Guarantee — */
  .template-product .pp-product-guarantee .guarantee-banner {
    padding: 28px 16px;
  }

  .template-product .pp-product-guarantee .guarantee-banner h2 {
    font-size: 22px;
  }

  .template-product .pp-product-guarantee .guarantee-banner p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .template-product .pp-product-guarantee .guarantee-icons {
    gap: 16px 20px;
  }

  .template-product .pp-product-guarantee .gi {
    font-size: 12px;
  }

  /* — FAQ — */
  .template-product .pp-product-faq .section-header {
    margin-bottom: 12px !important;
  }

  .template-product .pp-product-faq .faq-q {
    padding: 14px 0;
    font-size: 14px;
  }

  .template-product #main-content {
    padding-bottom: 76px;
  }
}

/* ===== PERFORMANCE ===== */
.template-product .pp-product-benefits,
.template-product .pp-product-why,
.template-product .pp-product-howto,
.template-product .pp-product-video-row,
.template-product .pp-product-reviews,
.template-product .pp-product-upsell,
.template-product .pp-product-guarantee,
.template-product .pp-product-faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

.template-product .section-tag {
  color: #3d6b40;
  background: #d4e5d5;
}
.template-product .section-tag.orange {
  color: #9a5510;
  background: #fdeedd;
}
