/*  ########### Compiled CSS ###########
    Generated on: Feb 27 2026 | 10:14:35 
    ####################################  */

@charset "UTF-8";
.bogo_math {
  --bogo-accent:        #1a6b3c;
  --bogo-accent-light:  #e6f4ec;
  --bogo-accent-mid:    #2e9e5b;
  --bogo-text-primary:  #0f2419;
  --bogo-text-secondary:#4a6654;
  --bogo-text-fine:     #7a9985;
  --bogo-border:        #b8ddc8;
  --bogo-radius:        14px;
  --bogo-badge-radius:  8px;
  display: block;
  max-width: 420px;
  width: 100%;
  margin: 10px;
  padding: 18px 20px 16px;
  border-radius: var(--bogo-radius);
  border: 1.5px solid var(--bogo-border);
  /* MD3-style surface tint — no harsh fill */
  background: linear-gradient(135deg, #fff 0%, var(--bogo-accent-light) 100%);
  box-shadow: 0 1px 2px rgba(26, 107, 60, 0.06), 0 4px 16px rgba(26, 107, 60, 0.1), 0 0 0 0px rgba(46, 158, 91, 0);
  /* Elevation-style shadow: ambient + key */
  position: relative;
  overflow: hidden;
  /* Shimmer on load */
  animation: bogo-rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
/* Decorative left accent bar */
.bogo_math::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: var(--bogo-radius) 0 0 var(--bogo-radius);
  background: linear-gradient(180deg, var(--bogo-accent-mid) 0%, var(--bogo-accent) 100%);
}
/* Subtle top-right corner glow */
.bogo_math::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 158, 91, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
/* ── Deal badge / figcaption ──────────────────────────── */
.bogo_math__deal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--bogo-accent);
  background: rgba(26, 107, 60, 0.09);
  border: 1px solid rgba(26, 107, 60, 0.18);
  border-radius: var(--bogo-badge-radius);
  padding: 4px 10px 4px 8px;
  margin-bottom: 11px;
  line-height: 1;
}
/* Icon dot before badge text */
.bogo_math__deal::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bogo-accent-mid);
  flex-shrink: 0;
  animation: bogo-pulse 2.4s ease-in-out infinite;
}
/* ── Main breakdown copy ─────────────────────────────── */
.bogo_math__breakdown {
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--bogo-text-primary);
  line-height: 1.55;
  padding-left: 2px;
}
/* Price values inside — mono for crisp digit rendering */
.bogo_math__breakdown .price {
  font-family: "DM Mono", monospace;
  font-weight: 500;
}
/* The "ONLY x EACH" payoff — slightly elevated */
.bogo_math__breakdown strong {
  color: var(--bogo-accent);
  font-weight: 600;
}
/* ── Fine print ──────────────────────────────────────── */
.bogo_math__disclaimer {
  display: block;
  margin-top: 10px;
  font-size: 0.73rem;
  font-weight: 400;
  color: var(--bogo-text-fine);
  line-height: 1.45;
  padding-left: 2px;
  border-top: 1px solid var(--bogo-border);
  padding-top: 9px;
}
/* ── Animations ──────────────────────────────────────── */
@keyframes bogo-rise {
  from {
    opacity: 0;
    transform: translateY(6px);
    box-shadow: none;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bogo-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}
/* ── Hover state — subtle lift ───────────────────────── */
.bogo_math:hover {
  box-shadow: 0 2px 4px rgba(26, 107, 60, 0.08), 0 8px 24px rgba(26, 107, 60, 0.14);
  transform: translateY(-1px);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
