/** Shopify CDN: Minification failed

Line 24:7 Unexpected "{"
Line 24:16 Expected ":"
Line 24:23 Unexpected "{"
Line 34:7 Unexpected "{"
Line 34:16 Expected ":"
Line 44:9 Unexpected "{"
Line 44:18 Expected ":"
Line 56:7 Unexpected "{"
Line 56:16 Expected ":"
Line 62:9 Unexpected "{"
... and 519 more hidden warnings

**/

/* ══════════════════════════════════════════════════
   ThePieCraft PDP — 2-Column Layout
   All rules scoped to #cpdp-{section.id}
   Tokens: var(--color-*), var(--font-*) from theme
   ══════════════════════════════════════════════════ */

/* ── Page shell ── */
#cpdp-{{ section.id }} {
  font-family: var(--font-body--family, inherit);
  background: #FBF7F1;
  color: #3D352E;
  width: 100%;
  padding: 40px 0 80px;
  box-sizing: border-box;
}

/* ── 2-col grid ── */
#cpdp-{{ section.id }} .cpdp-two-col {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 32px;
  row-gap: 16px;
}
@media (min-width: 1024px) {
  #cpdp-{{ section.id }} .cpdp-two-col {
    grid-template-columns: 1.15fr 1fr;
    column-gap: 48px;
    row-gap: 24px;
    padding: 0 32px;
    align-items: start;
  }
}

/* ══════════════════
   LEFT — GALLERY
   ══════════════════ */
#cpdp-{{ section.id }} .cpdp-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  #cpdp-{{ section.id }} .cpdp-gallery-col {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (min-width: 1024px) {
  #cpdp-{{ section.id }} .cpdp-gallery-col {
    position: sticky;
    top: calc(var(--header-height, 0px) + 20px);
    align-self: start;
  }
}

/* Main image wrapper */
#cpdp-{{ section.id }} .cpdp-main-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  background: #f5f1eb;
  cursor: zoom-in;
}
#cpdp-{{ section.id }} .cpdp-main-slider {
  position: absolute;
  inset: 0;
}
#cpdp-{{ section.id }} .cpdp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#cpdp-{{ section.id }} .cpdp-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
#cpdp-{{ section.id }} .cpdp-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
#cpdp-{{ section.id }} .cpdp-main-wrap:hover .cpdp-main-img { transform: scale(1.05); }

/* Badges */
#cpdp-{{ section.id }} .cpdp-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
#cpdp-{{ section.id }} .cpdp-badge-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 0;
  background: #FBF7F1;
  color: #3D352E;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
#cpdp-{{ section.id }} .cpdp-badge-pill--sale {
  background: #9B2335;
  color: #fff;
}

/* Wishlist */
#cpdp-{{ section.id }} .cpdp-wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #3D352E;
  z-index: 2;
  transition: color 0.18s, background 0.18s;
}
#cpdp-{{ section.id }} .cpdp-wishlist-btn:hover { color: #9B2335; }
#cpdp-{{ section.id }} .cpdp-wishlist-btn.is-wished { color: #9B2335; }
#cpdp-{{ section.id }} .cpdp-wishlist-btn.is-wished svg { fill: currentColor; }
#cpdp-{{ section.id }} .cpdp-wishlist-btn:focus-visible { outline: 2px solid #8B6F47; outline-offset: 2px; }

/* Arrows — removed */
#cpdp-{{ section.id }} .cpdp-arrow { display: none; }

/* Zoom btn */
#cpdp-{{ section.id }} .cpdp-zoom-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: #3D352E;
  transition: background 0.18s;
}
#cpdp-{{ section.id }} .cpdp-zoom-btn:hover { background: #fff; }
#cpdp-{{ section.id }} .cpdp-zoom-btn:focus-visible { outline: 2px solid #8B6F47; }

/* Thumbnail strip */
#cpdp-{{ section.id }} .cpdp-thumb-strip {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  flex-shrink: 0;
}
#cpdp-{{ section.id }} .cpdp-thumb-strip::-webkit-scrollbar { display: none; }
@media (min-width: 640px) {
  #cpdp-{{ section.id }} .cpdp-thumb-strip {
    flex-direction: column;
    overflow-x: visible;
    overflow-y: auto;
    width: 80px;
    max-height: 560px;
  }
}
#cpdp-{{ section.id }} .cpdp-thumb {
  flex-shrink: 0;
  width: 64px;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: #f5f1eb;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.18s;
}
@media (min-width: 640px) { #cpdp-{{ section.id }} .cpdp-thumb { width: 80px; } }
#cpdp-{{ section.id }} .cpdp-main-wrap { flex: 1; min-width: 0; }
#cpdp-{{ section.id }} .cpdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
#cpdp-{{ section.id }} .cpdp-thumb.is-active { border-color: #8B6F47; }
#cpdp-{{ section.id }} .cpdp-thumb:hover { border-color: rgba(139,111,71,0.5); }
#cpdp-{{ section.id }} .cpdp-thumb:focus-visible { outline: 2px solid #8B6F47; outline-offset: 2px; }

/* Mobile trust strip — hidden on desktop (trust chips shown in right col) */
#cpdp-{{ section.id }} .cpdp-trust-strip--mobile { display: none; }
@media (max-width: 1023px) {
  #cpdp-{{ section.id }} .cpdp-trust-strip--mobile { display: flex; gap: 12px; flex-wrap: wrap; padding: 8px 0; }
}

/* ══════════════════
   RIGHT — INFO
   ══════════════════ */
#cpdp-{{ section.id }} .cpdp-info-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Breadcrumb */
#cpdp-{{ section.id }} .cpdp-breadcrumb {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7A6E63;
  padding: 0;
  list-style: none;
  margin: 0 0 16px;
}
#cpdp-{{ section.id }} .cpdp-breadcrumb a,
#cpdp-{{ section.id }} .cpdp-breadcrumb span {
  display: inline-flex;
  align-items: center;
}
#cpdp-{{ section.id }} .cpdp-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
  padding: 6px 0;
}
#cpdp-{{ section.id }} .cpdp-breadcrumb a:hover { color: #3D352E; }
#cpdp-{{ section.id }} .cpdp-bc-sep { opacity: 0.4; margin: 0 10px; font-weight: 400; }
#cpdp-{{ section.id }} .cpdp-breadcrumb [aria-current] { color: #3D352E; font-weight: 600; padding: 6px 0; }

/* Eyebrow */
#cpdp-{{ section.id }} .cpdp-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3D352E;
  font-weight: 600;
  margin: 0;
}

/* Title */
#cpdp-{{ section.id }} .cpdp-title {
  font-family: var(--font-heading--family, serif);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  color: var(--color-heading, #1A1612);
}

/* Trust row */
#cpdp-{{ section.id }} .cpdp-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 20px;
}
#cpdp-{{ section.id }} .cpdp-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
  color: #3D352E;
  background: none;
  padding: 0;
  white-space: nowrap;
}
#cpdp-{{ section.id }} .cpdp-trust-chip svg { flex-shrink: 0; color: #9C836A; }

/* Price block */
#cpdp-{{ section.id }} .cpdp-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
#cpdp-{{ section.id }} .cpdp-price {
  font-family: var(--font-heading--family, serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #3D352E;
  letter-spacing: -0.01em;
}
#cpdp-{{ section.id }} .cpdp-compare {
  font-size: 1.1rem;
  color: #7A6E63;
  text-decoration: line-through;
}
#cpdp-{{ section.id }} .cpdp-save-chip {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  background: rgba(185,28,28,0.1);
  color: #9B2335;
  padding: 4px 10px;
  border-radius: 0;
}
#cpdp-{{ section.id }} .cpdp-header-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#cpdp-{{ section.id }} .cpdp-eyebrow {
  margin: 0;
}
#cpdp-{{ section.id }} .cpdp-title {
  margin: 0;
}
#cpdp-{{ section.id }} .cpdp-price-sub {
  font-size: 0.76rem;
  color: #7A6E63;
  margin: -14px 0 0;
}
#cpdp-{{ section.id }} .cpdp-coating-breakdown {
  font-size: 0.76rem;
  color: #7A6E63;
  margin: -10px 0 0;
  display: block;
}
#cpdp-{{ section.id }} .cpdp-offer-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  background: #F4F1EC;
  color: #3D352E;
  padding: 5px 10px;
  border-radius: 0;
}

/* ── Option / variant rows ── */
#cpdp-{{ section.id }} .cpdp-variants {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 4px;
}
#cpdp-{{ section.id }} .cpdp-option {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#cpdp-{{ section.id }} .cpdp-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
#cpdp-{{ section.id }} .cpdp-option-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: #3D352E;
}
#cpdp-{{ section.id }} .cpdp-option-name strong { font-weight: 600; }
#cpdp-{{ section.id }} .cpdp-free-custom-note {
  font-size: 0.65rem;
  color: #3D352E;
  margin: 0;
  font-weight: 500;
}

/* Pills */
#cpdp-{{ section.id }} .cpdp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#cpdp-{{ section.id }} .cpdp-pill {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
#cpdp-{{ section.id }} .cpdp-pill input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
#cpdp-{{ section.id }} .cpdp-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 36px;
  border-radius: 0;
  border: 1px solid #E5DDD3;
  font-size: 0.72rem;
  font-weight: 500;
  background: transparent;
  color: #3D352E;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  min-width: 44px;
}
#cpdp-{{ section.id }} .cpdp-pill:hover span { background: #F4F1EC; }
#cpdp-{{ section.id }} .cpdp-pill input:checked + span {
  background: #8B6F47;
  border-color: #8B6F47;
  color: #fff;
}
#cpdp-{{ section.id }} .cpdp-pill input:focus-visible + span { outline: 2px solid #8B6F47; outline-offset: 2px; }
#cpdp-{{ section.id }} .cpdp-pill input:disabled + span { opacity: 0.45; border-style: dashed; border-color: #C0B3A3; background: transparent; color: #9A8B7B; cursor: not-allowed; }
#cpdp-{{ section.id }} .cpdp-pill--disabled span { opacity: 0.45; border-style: dashed; border-color: #C0B3A3; background: transparent; color: #9A8B7B; cursor: not-allowed; }
#cpdp-{{ section.id }} .cpdp-pill--custom span { gap: 6px; }

/* Color swatches */
#cpdp-{{ section.id }} .cpdp-swatch { cursor: pointer; }
#cpdp-{{ section.id }} .cpdp-swatch-inp { position: absolute; opacity: 0; width: 0; height: 0; }
#cpdp-{{ section.id }} .cpdp-swatch-dot {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 0;
  border: 2px solid transparent;
  outline: 1px solid rgba(0,0,0,0.15);
  transition: outline-color 0.15s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cpdp-{{ section.id }} .cpdp-swatch-inp:checked + .cpdp-swatch-dot { outline-color: #8B6F47; outline-width: 2px; }

/* Unit toggle */
#cpdp-{{ section.id }} .cpdp-unit-toggle {
  display: inline-flex;
  border: 1px solid #E5DDD3;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
}
#cpdp-{{ section.id }} .cpdp-unit-btn {
  padding: 4px 12px;
  border: none;
  background: transparent;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: #7A6E63;
  font-family: inherit;
  min-height: 28px;
  transition: background 0.15s, color 0.15s;
}
#cpdp-{{ section.id }} .cpdp-unit-btn--active {
  background: #8B6F47;
  color: #fff;
}
#cpdp-{{ section.id }} .cpdp-unit-btn:focus-visible { outline: 2px solid #8B6F47; outline-offset: -2px; }

/* Compat note */
#cpdp-{{ section.id }} .cpdp-compat-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.72rem;
  color: #9B2335;
  line-height: 1.5;
  padding: 4px 0;
  margin: 0;
}

/* ── Custom size card ── */
#cpdp-{{ section.id }} .cpdp-custom-fields { margin: 0; }
#cpdp-{{ section.id }} .cpdp-custom-card {
  background: #FDFBF7;
  border: 1px solid #E5DDD3;
  border-radius: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
#cpdp-{{ section.id }} .cpdp-custom-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
}
#cpdp-{{ section.id }} .cpdp-custom-card__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3D352E;
}
#cpdp-{{ section.id }} .cpdp-custom-hint {
  font-size: 0.72rem;
  color: #3D352E;
  margin: 0;
  line-height: 1.5;
}
#cpdp-{{ section.id }} .cpdp-range-hint {
  font-size: 0.65rem;
  color: #7A6E63;
  margin: -8px 0 0;
}
#cpdp-{{ section.id }} .cpdp-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
#cpdp-{{ section.id }} .cpdp-field-lbl {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: #3D352E;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#cpdp-{{ section.id }} .cpdp-field-inp {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #E5DDD3;
  border-radius: 0;
  background: #fff;
  font-size: 0.88rem;
  color: #3D352E;
  font-family: inherit;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}
#cpdp-{{ section.id }} .cpdp-field-inp:focus { outline: none; border-color: #8B6F47; }
#cpdp-{{ section.id }} .cpdp-field-inp::-webkit-outer-spin-button,
#cpdp-{{ section.id }} .cpdp-field-inp::-webkit-inner-spin-button { -webkit-appearance: none; }
#cpdp-{{ section.id }} .cpdp-field-err {
  display: none;
  font-size: 0.65rem;
  color: #9B2335;
  margin-top: 3px;
}

/* Live estimate */
#cpdp-{{ section.id }} .cpdp-estimate {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
#cpdp-{{ section.id }} .cpdp-estimate__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #7A6E63;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#cpdp-{{ section.id }} .cpdp-estimate__row--total {
  font-family: var(--font-heading--family, serif);
  font-size: 0.95rem;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px dashed #E5DDD3;
  color: #3D352E;
}
#cpdp-{{ section.id }} .cpdp-estimate__lbl { color: #7A6E63; }
#cpdp-{{ section.id }} .cpdp-estimate__price { font-weight: 600; }

/* ── Shape selector ── */
#cpdp-{{ section.id }} .cpdp-shape-row { margin-top: 4px; }
#cpdp-{{ section.id }} .cpdp-shape-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 640px) {
  #cpdp-{{ section.id }} .cpdp-shape-grid { grid-template-columns: repeat(4, 1fr); }
}
#cpdp-{{ section.id }} .cpdp-shape-btn {
  border: 1px solid #E5DDD3;
  border-radius: 0;
  background: transparent;
  padding: 10px 6px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: border-color 0.15s, background 0.15s;
  font-family: inherit;
  min-height: 44px;
}
#cpdp-{{ section.id }} .cpdp-shape-btn:hover { background: #F4F1EC; border-color: #C9B99F; }
#cpdp-{{ section.id }} .cpdp-shape-btn[aria-pressed="true"] { border-color: #8B6F47; background: #8B6F47; color: #fff; }
#cpdp-{{ section.id }} .cpdp-shape-btn:focus-visible { outline: 2px solid #8B6F47; outline-offset: 2px; }
#cpdp-{{ section.id }} .cpdp-shape-svg { width: 56px; height: 38px; }
#cpdp-{{ section.id }} .pc-stroke { stroke: #7A6E63; }
#cpdp-{{ section.id }} .pc-text { fill: #7A6E63; font-family: inherit; }
#cpdp-{{ section.id }} .pc-accent { stroke: #8B6F47; }
#cpdp-{{ section.id }} .cpdp-shape-btn[aria-pressed="true"] .pc-stroke { stroke: #fff; }
#cpdp-{{ section.id }} .cpdp-shape-btn[aria-pressed="true"] .pc-text { fill: #fff; }
#cpdp-{{ section.id }} .cpdp-shape-btn[aria-pressed="true"] .pc-accent { stroke: #fff; }
#cpdp-{{ section.id }} .cpdp-shape-name {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3D352E;
}

/* ── Qty ── */
#cpdp-{{ section.id }} .cpdp-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}
#cpdp-{{ section.id }} .cpdp-qty {
  display: flex;
  align-items: center;
  border: 1px solid #E5DDD3;
  border-radius: 0;
  background: #F4F1EC;
  height: 44px;
  min-width: 120px;
  flex-shrink: 0;
  overflow: hidden;
}
#cpdp-{{ section.id }} .cpdp-qty-btn {
  width: 44px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: #3D352E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.12s;
  min-width: 44px;
}
#cpdp-{{ section.id }} .cpdp-qty-btn:hover { background: rgba(139,111,71,0.15); }
#cpdp-{{ section.id }} .cpdp-qty-btn:focus-visible { outline: 2px solid #8B6F47; }
#cpdp-{{ section.id }} .cpdp-qty-inp {
  width: 40px;
  height: 100%;
  text-align: center;
  border: none;
  border-left: 1px solid #E5DDD3;
  border-right: 1px solid #E5DDD3;
  background: transparent;
  font-size: 0.88rem;
  color: #3D352E;
  -moz-appearance: textfield;
  padding: 0;
  font-family: inherit;
}
#cpdp-{{ section.id }} .cpdp-qty-inp::-webkit-outer-spin-button,
#cpdp-{{ section.id }} .cpdp-qty-inp::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ── CTA hint ── */
#cpdp-{{ section.id }} .cpdp-cta-hint {
  font-size: 0.72rem;
  color: #3D352E;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── CTA grid ── */
#cpdp-{{ section.id }} .cpdp-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 479px) { #cpdp-{{ section.id }} .cpdp-cta-grid { grid-template-columns: 1fr; } }
#cpdp-{{ section.id }} .cpdp-atc {
  width: 100%;
  height: 48px;
  border-radius: 0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#cpdp-{{ section.id }} .cpdp-atc--outline {
  background: transparent;
  color: #8B6F47;
  border: 1px solid #8B6F47;
}
#cpdp-{{ section.id }} .cpdp-atc--outline:hover { background: #F4F1EC; }
#cpdp-{{ section.id }} .cpdp-atc--filled {
  background: #8B6F47;
  color: #FAFAF7;
  border: 1px solid #8B6F47;
}
#cpdp-{{ section.id }} .cpdp-atc--filled:hover { background: #6E5839; border-color: #6E5839; }
#cpdp-{{ section.id }} .cpdp-atc:disabled { opacity: 0.4; cursor: not-allowed; }
#cpdp-{{ section.id }} .cpdp-atc:focus-visible { outline: 2px solid #8B6F47; outline-offset: 2px; }

/* ── WA fallback ── */
#cpdp-{{ section.id }} .cpdp-wa-fallback {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
  flex-wrap: wrap;
  margin-top: 12px;
}
#cpdp-{{ section.id }} .cpdp-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 0;
  background: #4F6B58;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  height: 48px;
  border: 1px solid #4F6B58;
}
#cpdp-{{ section.id }} .cpdp-wa-btn:hover { background: #3f5546; border-color: #3f5546; }
#cpdp-{{ section.id }} .cpdp-email-link {
  font-size: 0.72rem;
  color: #7A6E63;
  text-decoration: none;
  border-bottom: 1px solid #7A6E63;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
#cpdp-{{ section.id }} .cpdp-email-link:hover {
  color: #3D352E;
  border-color: #3D352E;
}
#cpdp-{{ section.id }} .cpdp-wa-sent {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F4F1EC;
  border: 1px solid #E5DDD3;
  border-radius: 0;
  padding: 10px 14px;
  font-size: 0.75rem;
  color: #3D352E;
}
#cpdp-{{ section.id }} .cpdp-wa-resend { color: #3D352E; text-decoration: underline; }

/* ── Expert card ── */
#cpdp-{{ section.id }} .cpdp-expert-card {
  background: #FAFAF7;
  border: 1px solid #E5DDD3;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 0;
}
#cpdp-{{ section.id }} .cpdp-expert-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
#cpdp-{{ section.id }} .cpdp-expert-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #1E1A16;
}
#cpdp-{{ section.id }} .cpdp-expert-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
#cpdp-{{ section.id }} .cpdp-expert-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #1E1A16;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E1A16;
  text-decoration: none;
  transition: opacity 0.2s;
}
#cpdp-{{ section.id }} .cpdp-expert-icon-btn:hover {
  opacity: 0.7;
}
#cpdp-{{ section.id }} .cpdp-expert-icon-btn svg {
  width: 16px;
  height: 16px;
}
#cpdp-{{ section.id }} .cpdp-expert-cta {
  background: #1E1A16;
  color: #fff;
  padding: 0 16px;
  height: 36px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  margin-left: 8px;
  transition: opacity 0.2s;
}
#cpdp-{{ section.id }} .cpdp-expert-cta:hover {
  opacity: 0.8;
  color: #fff;
}
#cpdp-{{ section.id }} .cpdp-expert-desc {
  font-size: 0.95rem;
  color: #5C5248;
  margin: 0;
  line-height: 1.5;
}

/* ── Add-ons ── */
#cpdp-{{ section.id }} .cpdp-addons {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #E5DDD3;
  border-radius: 0;
  overflow: hidden;
}
#cpdp-{{ section.id }} .cpdp-addons-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7A6E63;
  margin: 0;
  padding: 12px 14px 8px;
}
#cpdp-{{ section.id }} .cpdp-addon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-top: 1px solid #E5DDD3;
  transition: background 0.15s;
  min-height: 44px;
}
#cpdp-{{ section.id }} .cpdp-addon-item:hover { background: #f7f3ec; }
#cpdp-{{ section.id }} .cpdp-addon-chk { flex-shrink: 0; width: 16px; height: 16px; accent-color: #8B6F47; }
#cpdp-{{ section.id }} .cpdp-addon-info { flex: 1; min-width: 0; }
#cpdp-{{ section.id }} .cpdp-addon-name { display: block; font-size: 0.78rem; font-weight: 500; color: #3D352E; }
#cpdp-{{ section.id }} .cpdp-addon-desc { display: block; font-size: 0.65rem; color: #7A6E63; margin-top: 2px; }
#cpdp-{{ section.id }} .cpdp-addon-price { font-size: 0.75rem; font-weight: 600; color: #3D352E; white-space: nowrap; }


/* ── Spec strip ── */
#cpdp-{{ section.id }} .cpdp-spec-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #E5DDD3;
  border-bottom: 1px solid #E5DDD3;
}
@media (min-width: 640px) {
  #cpdp-{{ section.id }} .cpdp-spec-strip { grid-template-columns: repeat(5, 1fr); }
}
#cpdp-{{ section.id }} .cpdp-spec-cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
#cpdp-{{ section.id }} .cpdp-spec-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A6E63;
  font-weight: 500;
}
#cpdp-{{ section.id }} .cpdp-spec-val {
  font-size: 0.78rem;
  color: #3D352E;
  font-weight: 500;
}

/* ── Feature row ── */
#cpdp-{{ section.id }} .cpdp-feature-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
#cpdp-{{ section.id }} .cpdp-feature-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: #3D352E;
  font-weight: 500;
}
#cpdp-{{ section.id }} .cpdp-feature-item svg { flex-shrink: 0; stroke: #3D352E; }

/* ── Accordions ── */
#cpdp-{{ section.id }} .cpdp-accordions {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E5DDD3;
}
#cpdp-{{ section.id }} .cpdp-accordion {
  border-bottom: 1px solid #E5DDD3;
}
#cpdp-{{ section.id }} .cpdp-acc-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D352E;
  user-select: none;
}
#cpdp-{{ section.id }} .cpdp-acc-hd::-webkit-details-marker { display: none; }
#cpdp-{{ section.id }} .cpdp-acc-icon { transition: transform 0.22s ease; flex-shrink: 0; }
#cpdp-{{ section.id }} .cpdp-accordion[open] .cpdp-acc-icon { transform: rotate(180deg); }
#cpdp-{{ section.id }} .cpdp-acc-body {
  font-size: 0.82rem;
  line-height: 1.85;
  color: #3D352E;
  padding-bottom: 16px;
}
#cpdp-{{ section.id }} .cpdp-acc-body p { margin: 0 0 12px; }
#cpdp-{{ section.id }} .cpdp-acc-body p:last-child { margin-bottom: 0; }
#cpdp-{{ section.id }} .cpdp-acc-body ul, #cpdp-{{ section.id }} .cpdp-acc-body ol { padding-left: 1.2em; }
#cpdp-{{ section.id }} .cpdp-acc-body li { margin-bottom: 6px; }
#cpdp-{{ section.id }} .cpdp-acc-hd:focus-visible { outline: 2px solid #8B6F47; outline-offset: 2px; }

/* ── Share ── */
#cpdp-{{ section.id }} .cpdp-share {
  display: flex;
  align-items: center;
  gap: 12px;
}
#cpdp-{{ section.id }} .cpdp-share-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7A6E63;
  font-weight: 600;
}
#cpdp-{{ section.id }} .cpdp-share a {
  color: #7A6E63;
  display: flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  transition: color 0.15s;
}
#cpdp-{{ section.id }} .cpdp-share a:hover { color: #3D352E; }
#cpdp-{{ section.id }} .cpdp-share a:focus-visible { outline: 2px solid #8B6F47; border-radius: 0; }

/* ── Mobile sticky CTA ── */
#cpdp-{{ section.id }} .cpdp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(var(--color-background-rgb, 255,255,255), 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid #E5DDD3;
  padding: 12px 16px;
  gap: 10px;
}
#cpdp-{{ section.id }} .cpdp-sticky-atc,
#cpdp-{{ section.id }} .cpdp-sticky-bn { flex: 1; }

/* ── Lightbox ── */
#cpdp-{{ section.id }} ~ .cpdp-lightbox,
#cpdp-{{ section.id }} .cpdp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#cpdp-{{ section.id }} .cpdp-lightbox.is-open { display: flex; }
#cpdp-{{ section.id }} .cpdp-lb-stage {
  position: relative;
  width: min(90vw, 90vh);
  height: min(90vw, 90vh);
}
#cpdp-{{ section.id }} .cpdp-lb-slide {
  display: none;
  position: absolute;
  inset: 0;
}
#cpdp-{{ section.id }} .cpdp-lb-slide.is-active { display: block; }
#cpdp-{{ section.id }} .cpdp-lb-slide img { width: 100%; height: 100%; object-fit: contain; }
#cpdp-{{ section.id }} .cpdp-lb-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cpdp-{{ section.id }} .cpdp-lb-prev,
#cpdp-{{ section.id }} .cpdp-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#cpdp-{{ section.id }} .cpdp-lb-prev { left: 16px; }
#cpdp-{{ section.id }} .cpdp-lb-next { right: 16px; }
#cpdp-{{ section.id }} .cpdp-lb-prev:hover,
#cpdp-{{ section.id }} .cpdp-lb-next:hover { background: rgba(255,255,255,0.22); }

/* ══════════════════════════════════════
   MOBILE — comprehensive overrides
   ══════════════════════════════════════ */
@media (max-width: 639px) {

  /* Page shell */
  #cpdp-{{ section.id }} {
    padding: 0 0 100px;
  }

  /* 2-col becomes 1-col */
  #cpdp-{{ section.id }} .cpdp-two-col {
    padding: 0;
    gap: 0;
  }

  /* Gallery — full width, thumbnails below on mobile */
  #cpdp-{{ section.id }} .cpdp-gallery-col {
    flex-direction: column;
    gap: 0;
  }

  /* Push thumbnails below the main image */
  #cpdp-{{ section.id }} .cpdp-thumb-strip {
    order: 2;
    flex-direction: row;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: visible;
    padding: 10px 12px;
    gap: 8px;
    background: #f5f1eb;
    border-bottom: 1px solid #E5DDD3;
  }

  #cpdp-{{ section.id }} .cpdp-main-wrap {
    order: 1;
  }

  #cpdp-{{ section.id }} .cpdp-thumb {
    width: 60px;
    flex-shrink: 0;
  }

  /* Main image fills full viewport width */
  #cpdp-{{ section.id }} .cpdp-main-wrap {
    flex: none;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  /* Arrows removed */

  /* Right info col — padding */
  #cpdp-{{ section.id }} .cpdp-info-col {
    padding: 20px 16px 0;
  }

  #cpdp-{{ section.id }} .cpdp-info-inner {
    gap: 24px;
  }

  /* Extra breathing room above action sections */
  #cpdp-{{ section.id }} .cpdp-shape-row,
  #cpdp-{{ section.id }} .cpdp-qty-row,
  #cpdp-{{ section.id }} .cpdp-cta-grid,
  #cpdp-{{ section.id }} .cpdp-wa-fallback,
  #cpdp-{{ section.id }} .cpdp-expert-card {
    margin-top: 8px;
  }

  /* Divider lines between major action blocks */
  #cpdp-{{ section.id }} .cpdp-qty-row {
    padding-top: 16px;
    border-top: 1px solid #E5DDD3;
  }

  #cpdp-{{ section.id }} .cpdp-cta-grid {
    padding-top: 4px;
  }

  #cpdp-{{ section.id }} .cpdp-expert-card {
    margin-top: 16px;
  }

  /* More space between the two CTA buttons */
  #cpdp-{{ section.id }} .cpdp-cta-grid {
    gap: 10px;
  }

  /* Shape grid — more space between shape cards */
  #cpdp-{{ section.id }} .cpdp-shape-grid {
    gap: 10px;
    margin-top: 10px;
  }

  #cpdp-{{ section.id }} .cpdp-shape-btn {
    padding: 14px 6px 12px;
    min-height: 80px;
  }

  /* Title smaller on mobile */
  #cpdp-{{ section.id }} .cpdp-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  /* Price */
  #cpdp-{{ section.id }} .cpdp-price {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }

  /* Trust chips — wrap tightly */
  #cpdp-{{ section.id }} .cpdp-trust-row {
    gap: 0 14px;
  }

  #cpdp-{{ section.id }} .cpdp-trust-chip {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  /* Variant pills — full width scroll */
  #cpdp-{{ section.id }} .cpdp-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
    gap: 6px;
  }
  #cpdp-{{ section.id }} .cpdp-pills::-webkit-scrollbar { display: none; }

  #cpdp-{{ section.id }} .cpdp-pill span {
    height: 38px;
    padding: 0 14px;
    white-space: nowrap;
  }

  /* Shape grid 2-col on mobile is already fine */
  #cpdp-{{ section.id }} .cpdp-shape-svg {
    width: 44px;
    height: 30px;
  }

  /* Custom card full width */
  #cpdp-{{ section.id }} .cpdp-custom-card {
    padding: 14px;
  }

  #cpdp-{{ section.id }} .cpdp-field-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* Qty row — stack qty and label */
  #cpdp-{{ section.id }} .cpdp-qty-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* CTA buttons — full width stack */
  #cpdp-{{ section.id }} .cpdp-cta-grid { gap: 16px; }

  /* Expert card — tighter */
  #cpdp-{{ section.id }} .cpdp-expert-card {
    padding: 16px;
    gap: 12px;
  }

  #cpdp-{{ section.id }} .cpdp-expert-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Spec strip — horizontal scroll */
  #cpdp-{{ section.id }} .cpdp-spec-strip {
    overflow-x: auto;
    scrollbar-width: none;
  }
  #cpdp-{{ section.id }} .cpdp-spec-strip::-webkit-scrollbar { display: none; }

  /* Add-ons — stack */
  #cpdp-{{ section.id }} .cpdp-addon-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Accordion */
  #cpdp-{{ section.id }} .cpdp-acc-btn {
    padding: 14px 0;
    font-size: 0.72rem;
  }

  /* Share row */
  #cpdp-{{ section.id }} .cpdp-share {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Breadcrumb — mobile */
  #cpdp-{{ section.id }} .cpdp-breadcrumb {
    font-size: 0.65rem;
    padding: 0 16px;
    margin-bottom: 12px;
  }
  #cpdp-{{ section.id }} .cpdp-bc-sep { margin: 0 8px; }

  /* Offer chip */
  #cpdp-{{ section.id }} .cpdp-offer-chip {
    font-size: 0.6rem;
    padding: 4px 8px;
  }

  /* WA fallback */
  #cpdp-{{ section.id }} .cpdp-wa-fallback {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  #cpdp-{{ section.id }} .cpdp-wa-btn {
    width: 100%;
    justify-content: center;
  }

  /* Sticky CTA bottom padding accounts for safe area */
  #cpdp-{{ section.id }} .cpdp-sticky-cta {
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  }
}

/* Tablet (640–1023px) tweaks */
@media (min-width: 640px) and (max-width: 1023px) {

  #cpdp-{{ section.id }} {
    padding: 16px 0 80px;
  }

  #cpdp-{{ section.id }} .cpdp-two-col {
    padding: 0 20px;
    gap: 28px;
  }

  #cpdp-{{ section.id }} .cpdp-info-inner {
    gap: 24px;
  }

  #cpdp-{{ section.id }} .cpdp-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }

  #cpdp-{{ section.id }} .cpdp-cta-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Gallery side-by-side — thumbs left, image right */
  #cpdp-{{ section.id }} .cpdp-thumb-strip {
    width: 72px;
    max-height: 480px;
  }

  #cpdp-{{ section.id }} .cpdp-thumb {
    width: 72px;
  }
}

/* ── Full-width WhatsApp CTA ── */
#cpdp-{{ section.id }} .cpdp-whatsapp-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  margin-top: 12px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body--family, inherit);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
#cpdp-{{ section.id }} .cpdp-whatsapp-full:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
#cpdp-{{ section.id }} .cpdp-whatsapp-full:active {
  transform: translateY(0);
}
#cpdp-{{ section.id }} .cpdp-whatsapp-full__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
#cpdp-{{ section.id }} .cpdp-whatsapp-full__text {
  line-height: 1;
}
#cpdp-{{ section.id }} .cpdp-whatsapp-full__arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}
@media (max-width: 639px) {
  #cpdp-{{ section.id }} .cpdp-whatsapp-full {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
}
