/** Shopify CDN: Minification failed

Line 18:12 Unexpected "{"
Line 18:21 Expected ":"
Line 18:27 Unexpected ","
Line 19:12 Unexpected "{"
Line 19:21 Expected ":"
Line 22:12 Unexpected "{"
Line 22:21 Expected ":"
Line 22:28 Unexpected "{"
Line 30:12 Unexpected "{"
Line 30:21 Expected ":"
... and 146 more hidden warnings

**/
/* START_SECTION:promo-banner (INDEX:100) */
/* ── reset ── */
#cn-bundle-{{ section.id }},
#cn-bundle-{{ section.id }} * { box-sizing: border-box; margin: 0; padding: 0; }

/* ── section wrapper ── */
#cn-bundle-{{ section.id }} {
  width: 100%;
  background: var(--cn-bg);
  border-radius: var(--cn-radius);
  overflow: hidden;
  position: relative;
}

#cn-bundle-{{ section.id }}::before,
#cn-bundle-{{ section.id }}::after {
  display: none !important;
  content: none !important;
}

/* ── inner 3-col grid ── */
#cn-bundle-{{ section.id }} .cn-inner {
  width: min(100%, var(--cn-mw));
  margin: 0 auto;
  min-height: 480px;
  padding: var(--cn-pt) var(--cn-px) var(--cn-pb);
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(320px, 1.6fr) minmax(220px, 0.88fr);
  align-items: center;
  gap: 0 var(--cn-gap);
}

/* ════════════════════════════
   LEFT — hero image
════════════════════════════ */
#cn-bundle-{{ section.id }} .cn-left { min-width: 0; }

#cn-bundle-{{ section.id }} .cn-hero-wrap {
  position: relative;
  display: block;
  width: 100%;
}

#cn-bundle-{{ section.id }} .cn-hero-link {
  display: block;
  text-decoration: none;
  outline: none;
}

#cn-bundle-{{ section.id }} .cn-hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: var(--cn-imgh);
  min-height: 280px;
  object-fit: contain;
  object-position: center bottom;
  border: none;
  outline: none;
  transition: transform .35s cubic-bezier(.34,1.4,.64,1);
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.14));
}

#cn-bundle-{{ section.id }} .cn-hero-link:hover .cn-hero-img {
  transform: scale(1.04) translateY(-6px);
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.18));
}

/* badge on hero */
#cn-bundle-{{ section.id }} .cn-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  pointer-events: none;
  border: 2px solid rgba(199,53,99,0.18);
}
#cn-bundle-{{ section.id }} .cn-badge-main {
  display: block;
  color: var(--cn-heading);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
}
#cn-bundle-{{ section.id }} .cn-badge-sub {
  display: block;
  color: var(--cn-accent);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-top: 2px;
  line-height: 1.2;
}

/* per-product fallback grid */
#cn-bundle-{{ section.id }} .cn-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 10px 8px;
}
#cn-bundle-{{ section.id }} .cn-product { text-align: center; min-width: 0; }
#cn-bundle-{{ section.id }} .cn-product-link { display: block; text-decoration: none; }
#cn-bundle-{{ section.id }} .cn-product-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: var(--cn-imgh);
  object-fit: contain;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.10));
}
#cn-bundle-{{ section.id }} .cn-product-link:hover .cn-product-img {
  transform: translateY(-6px) scale(1.05);
}
#cn-bundle-{{ section.id }} .cn-product-ph {
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--cn-heading);
  opacity: .2;
}
#cn-bundle-{{ section.id }} .cn-product-ph svg { width: 55%; max-width: 55px; }
#cn-bundle-{{ section.id }} .cn-product-name {
  margin-top: 6px;
  color: var(--cn-heading);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ════════════════════════════
   CENTER — offer content
════════════════════════════ */
#cn-bundle-{{ section.id }} .cn-content { min-width: 0; }

#cn-bundle-{{ section.id }} .cn-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cn-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
#cn-bundle-{{ section.id }} .cn-eline {
  flex: 1;
  max-width: 28px;
  height: 1.5px;
  background: currentColor;
  opacity: .38;
  border-radius: 2px;
}
#cn-bundle-{{ section.id }} .cn-heading {
  color: var(--cn-heading);
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
#cn-bundle-{{ section.id }} .cn-desc {
  color: var(--cn-text);
  font-size: 15px;
  line-height: 1.65;
  max-width: 490px;
}

/* ── TRUST BADGES ─────────────────────────────
   FIX: CSS grid 2x2 — always 2 per row, guaranteed
   No flex-wrap, no overflow, clean alignment
─────────────────────────────────────────────── */
#cn-bundle-{{ section.id }} .cn-trust {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px 20px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1.5px dashed rgba(0,0,0,0.10);
}

#cn-bundle-{{ section.id }} .cn-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cn-text);
  font-size: 12px;
  font-weight: 700;
  min-width: 0;
}

/* ── ICON: SVG fallback ── */
#cn-bundle-{{ section.id }} .cn-ticon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--cn-accent);
}

/* ── ICON: Custom image ──
   FIX: inline style on span sets exact px size
   The <img> inside also has inline style — double-guaranteed
   No CSS class needed to size the img, inline wins ── */
#cn-bundle-{{ section.id }} .cn-ticon--img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* size set via inline style in Liquid */
  overflow: visible; /* don't clip the image */
}

/* Safety net: ensure img inside ticon is never overridden by theme globals */
#cn-bundle-{{ section.id }} .cn-ticon--img img {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  /* width/height set via inline style — this is a backup rule */
  max-width: none;
  max-height: none;
}

#cn-bundle-{{ section.id }} .cn-trust-label {
  display: block;
  white-space: normal;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ════════════════════════════
   RIGHT — price + CTA
════════════════════════════ */
#cn-bundle-{{ section.id }} .cn-offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  background: rgba(255,255,255,0.60);
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

#cn-bundle-{{ section.id }} .cn-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--cn-sale);
  color: #ffffff;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

#cn-bundle-{{ section.id }} .cn-pricing {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#cn-bundle-{{ section.id }} .cn-sale-price {
  color: var(--cn-sale);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}

#cn-bundle-{{ section.id }} .cn-rrp {
  color: var(--cn-text);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
}
#cn-bundle-{{ section.id }} .cn-rrp s { text-decoration-color: var(--cn-sale); }

/* ── BUTTON ── */
#cn-bundle-{{ section.id }} .cn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  min-height: 52px;
  width: 100%;
  background-color: var(--cn-btn-bg);
  color: var(--cn-btn-txt) !important;
  fill: var(--cn-btn-txt);
  border-radius: 8px;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 2px solid transparent;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: background-color .22s ease, color .22s ease, transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s ease, border-color .22s ease;
  -webkit-font-smoothing: antialiased;
}
#cn-bundle-{{ section.id }} .cn-btn:hover {
  background-color: transparent;
  color: var(--cn-btn-bg) !important;
  border-color: var(--cn-btn-bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}
#cn-bundle-{{ section.id }} .cn-btn:hover svg { stroke: var(--cn-btn-bg); }
#cn-bundle-{{ section.id }} .cn-btn:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(0,0,0,.12); }

/* shipping */
#cn-bundle-{{ section.id }} .cn-ship {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  max-width: 220px;
  color: var(--cn-text);
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}
#cn-bundle-{{ section.id }} .cn-ship svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--cn-accent);
}

/* ════════════════════════════
   TABLET  ≤ 1100px
════════════════════════════ */
@media screen and (max-width: 1100px) {
  #cn-bundle-{{ section.id }} .cn-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "left    left"
      "content offer";
    row-gap: 26px;
    min-height: 420px;
  }
  #cn-bundle-{{ section.id }} .cn-left    { grid-area: left; }
  #cn-bundle-{{ section.id }} .cn-content { grid-area: content; }
  #cn-bundle-{{ section.id }} .cn-offer   { grid-area: offer; justify-self: end; align-items: flex-end; }
  #cn-bundle-{{ section.id }} .cn-products { grid-template-columns: repeat(6, 1fr); }
  /* Tablet: trust badges 2x2 */
  #cn-bundle-{{ section.id }} .cn-trust { display: grid !important; grid-template-columns: 1fr 1fr !important; }
}

/* ════════════════════════════
   MOBILE  ≤ 749px
════════════════════════════ */
@media screen and (max-width: 749px) {
  #cn-bundle-{{ section.id }} .cn-inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: unset;
    padding:
      {{ section.settings.mobile_padding_top }}px
      {{ section.settings.mobile_padding_horizontal }}px
      {{ section.settings.mobile_padding_bottom }}px;
  }
  #cn-bundle-{{ section.id }} .cn-left    { order: 1; }
  #cn-bundle-{{ section.id }} .cn-content { order: 2; text-align: center; }
  #cn-bundle-{{ section.id }} .cn-offer   { order: 3; width: 100%; align-items: center; }

  #cn-bundle-{{ section.id }} .cn-hero-img { max-height: 280px; min-height: 200px; }
  #cn-bundle-{{ section.id }} .cn-badge { width: 62px; height: 62px; top: 6px; left: 6px; }
  #cn-bundle-{{ section.id }} .cn-badge-main { font-size: 9px; }

  #cn-bundle-{{ section.id }} .cn-products { grid-template-columns: repeat(3, 1fr); gap: 10px 8px; }
  #cn-bundle-{{ section.id }} .cn-product-img { max-height: 100px; }

  #cn-bundle-{{ section.id }} .cn-eyebrow  { justify-content: center; }
  #cn-bundle-{{ section.id }} .cn-heading  { font-size: 26px; }
  #cn-bundle-{{ section.id }} .cn-desc     { max-width: 100%; font-size: 13px; }
  /* Mobile: trust badges — always 2 per row, no exceptions */
  #cn-bundle-{{ section.id }} .cn-trust    { display: grid !important; grid-template-columns: 1fr 1fr !important; justify-items: start; }
  #cn-bundle-{{ section.id }} .cn-pricing  { align-items: center; }
  #cn-bundle-{{ section.id }} .cn-btn      { width: 100%; max-width: 360px; min-height: 54px; }
  #cn-bundle-{{ section.id }} .cn-ship     { justify-content: center; max-width: 100%; text-align: center; }
}

/* ════════════════════════════
   SMALL MOBILE  ≤ 400px
════════════════════════════ */
@media screen and (max-width: 400px) {
  #cn-bundle-{{ section.id }} .cn-heading  { font-size: 22px; }
  #cn-bundle-{{ section.id }} .cn-hero-img { max-height: 220px; }
  #cn-bundle-{{ section.id }} .cn-product-img,
  #cn-bundle-{{ section.id }} .cn-product-ph { max-height: 80px; }
  #cn-bundle-{{ section.id }} .cn-product-name { font-size: 9.5px; }
  /* Small mobile: keep 2x2 grid, reduce gap slightly */
  #cn-bundle-{{ section.id }} .cn-trust { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 10px 12px !important; }
}
/* END_SECTION:promo-banner */
