:root {
  color-scheme: light;
  --ay-bg-page: #171b1f;

  --ay-ink: #111;
  --ay-ink-soft: #1b1b1b;
  --ay-ink-strong: #0b1d28;
  --ay-ink-strong-2: #07151e;
  --ay-text: #0a0a0a;
  --ay-white: #ffffff;

  --ay-navy: #12202b;

  --ay-cream: #efe7d6;
  --ay-cream-2: #f3ecdc;
  --ay-offwhite: #fbf9f1;

  --ay-orange: #f06a2a;
  --ay-green: #8ec63f;

  --ay-cta-link: #b17a2c;

  --ay-avatar-bg: #dfe8ef;
  --ay-avatar-placeholder: #cfe0ea;

  --ay-tile-bg: #eee6d6;

  --ay-muted: rgba(255, 255, 255, 0.82);

  --ay-shadow-strong: 0 18px 30px rgba(0, 0, 0, 0.22);

  /* Social */
  --ay-social-fb: #1877f2;
  --ay-social-wa: #25d366;
  --ay-ig-1: #feda75;
  --ay-ig-2: #fa7e1e;
  --ay-ig-3: #d62976;
  --ay-ig-4: #962fbf;
  --ay-ig-5: #4f5bd5;

  /* Inline SVG palette */
  --ay-svg-cream: #ece4d4;
  --ay-svg-ink: #231f20;
  --ay-svg-sand: #e7dccb;
  --ay-svg-stroke: #e8e2d6;
  --ay-svg-ring: #e4e3dd;
}

  /* For browsers that force dark mode */

html,
body{
  color-scheme: light only;
  forced-color-adjust: none;
  background-color: #efeadd;
}

.theme-popcorn {
  --ay-primary: #f8b600;
  --ay-secondary: #d6a960;
  --ay-terciary: #f15a24;
  /* Popcorn flavor accents */
  --ay-flavor-buttery: #af5a1a;
  --ay-flavor-cheddar: #d27d15;
  --ay-flavor-kettle: #a68045;
  --ay-flavor-fruity: #c14d59;
  --ay-flavor-chicago: #dd7504;
  --ay-flavor-chocolate: #784d3f;
}

.theme-cookie {
  --ay-primary: #c18943;
  --ay-secondary: #c18943;
  --ay-terciary: #f15a24;
  /* Cookie flavor accents */
  --ay-flavor-choc-chip: #6b3e2e;
  --ay-flavor-white-mac: #a3997f;
  --ay-flavor-snickerdoodle: #c47a3a;
  --ay-flavor-peanut-butter: #d19a2a;
  --ay-flavor-toffee-crunch: #9a4f2f;
}

.hero_one_product {
  --ay-primary: #c18943;
  --ay-secondary: #ae7c3f;
  --ay-terciary: #f15a24;
  /* One-product/CARDS color accents */
}

.theme-crowdfunding {
  --ay-primary: #ecaf00;
  --ay-secondary: #ecaf00;
  --ay-terciary: #f15a24;
  --ay-bg-cf: #efeadd;
  --ay-cf-dark: #242c34;
}

body {
  padding: 0;
  margin: 0;
}

.ff-fundraiser,
.ff-fundraiser * {
  box-sizing: border-box;
}

.ff-fundraiser {
  margin: 0;
  background: var(--ay-bg-page);
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

/* HERO (desktop sticky cover effect) */
.ff-fundraiser .hero {
  z-index: 1;
  background: var(--ay-cream);
  display: grid;
  grid-template-rows: auto auto;
  /* hero_top + products */
  height: 100vh;
}

/* Wrapper for the top hero visuals only */
.ff-fundraiser .hero_blue {
  position: relative;
  overflow: clip;
  min-height: 0;
}

/* Top layout */
.ff-fundraiser .hero_top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  height: 100%;
  min-height: 0;
}

/* SVG block on top with student name */
.ff-fundraiser .hero_svg {
  position: relative;
  min-height: 0;
}

.ff-fundraiser .hero_svg svg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

/* Visuals */
.ff-fundraiser .hero_visual {
  min-height: 0;
  position: relative;
  display: grid;
  align-items: center;
}

/* SVG RING ROTATION  */
.ff-fundraiser .hero_svg svg #school-ring {
  transform-box: view-box;
  transform-origin: 247.23px 158.06px;
  animation: schoolSpin 20s linear infinite;
}

@keyframes schoolSpin {
  to {
    transform: rotate(360deg);
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ff-fundraiser .hero_svg #school-ring {
    animation: none !important;
  }
}

/* POPCORN "CAROUSEL" */
/* Popcorn stage */
.ff-fundraiser .popcorn-carousel {
  position: relative;
  width: 100%;
}

/* Base popcorn */
.ff-fundraiser .popcorn-carousel .popcorn {
  position: absolute;
  left: 50%;
  top: 50%;
  height: auto;
  object-fit: contain;
  will-change: transform, opacity;
  opacity: 0;
  pointer-events: none;
}

/* Shared “slide in from top-left”  */
@keyframes ffPopInTL {
  0% {
    opacity: 0;
    transform: translate(-160%, -140%) scale(0.85) rotate(-12deg);
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: var(--end);
  }
}

/* Float AFTER they land */
@keyframes ffFloaty {
  0%,
  100% {
    transform: var(--end) translateY(0);
  }

  50% {
    transform: var(--end) translateY(-8px);
  }
}

/* ===== FINAL POSITIONS ===== */

/* BIG front popcorn (sharp) */
.ff-fundraiser .popcorn-carousel .popcorn.p1 {
  width: 80%;
  z-index: 3;

  --end: translate(-75%, -40%) scale(1) rotate(20deg);

  animation:
    ffPopInTL 2.4s cubic-bezier(0.2, 0.85, 0.2, 1) forwards,
    ffFloaty 5s ease-in-out 2.6s infinite;
}

/* Middle popcorn */
.ff-fundraiser .popcorn-carousel .popcorn.p2 {
  width: 60%;
  z-index: 2;

  --end: translate(0%, -40%) scale(1) rotate(-40deg);

  animation:
    ffPopInTL 2.6s cubic-bezier(0.2, 0.85, 0.2, 1) 400ms forwards,
    ffFloaty 5.4s ease-in-out 3s infinite;
}

/* Small far popcorn */
.ff-fundraiser .popcorn-carousel .popcorn.p3 {
  width: 40%;
  z-index: 1;

  --end: translate(-45%, -95%) scale(0.82) rotate(0deg);

  animation:
    ffPopInTL 2.8s cubic-bezier(0.2, 0.85, 0.2, 1) 800ms forwards,
    ffFloaty 5.8s ease-in-out 3.4s infinite;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ff-fundraiser .popcorn-carousel .popcorn {
    opacity: 1 !important;
    transform: var(--end) !important;
    animation: none !important;
  }
}

.ff-fundraiser .popcorn-carousel .popcorn.p2 {
  filter: blur(2px) !important;
}

.ff-fundraiser .popcorn-carousel .popcorn.p3 {
  filter: blur(6px) !important;
}

/* PRODUCTS GRID */

.ff-fundraiser [hidden] {
  display: none !important;
}

.ff-fundraiser .products {
  padding: 0 18px 18px;
  overflow: visible;
  min-height: 0;
  z-index: 3;
}

.products_grid {
  align-items: stretch;
}

/* Clamp descriptions so tiles stay uniform */
.pbox_desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile first grid (2 cols) */
.ff-fundraiser .products_grid {
  display: grid;
  gap: 0px;
  row-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

/* tablets */
@media (min-width: 768px) {
  .ff-fundraiser .products_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* desktop */
@media (min-width: 1200px) {
  .ff-fundraiser .products_grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    row-gap: 10px;
  }
}

/* PRODUCT TILE */
.ff-fundraiser .pbox {
  --ink: var(--ay-ink-soft);
  text-align: center;
}

/* per-flavor colors */
.ff-fundraiser article[data-id="buttery-caramel"] {
  --title: var(--ay-flavor-buttery);
  --pill: var(--ay-flavor-buttery);
}

.ff-fundraiser article[data-id="cheddar-jalapeno"] {
  --title: var(--ay-flavor-cheddar);
  --pill: var(--ay-flavor-cheddar);
}

.ff-fundraiser article[data-id="kettle-corn"] {
  --title: var(--ay-flavor-kettle);
  --pill: var(--ay-flavor-kettle);
}

.ff-fundraiser article[data-id="fruity-rainbow"] {
  --title: var(--ay-flavor-fruity);
  --pill: var(--ay-flavor-fruity);
}

.ff-fundraiser article[data-id="chicago-style"] {
  --title: var(--ay-flavor-chicago);
  --pill: var(--ay-flavor-chicago);
}

.ff-fundraiser article[data-id="chocolate-delight"] {
  --title: var(--ay-flavor-chocolate);
  --pill: var(--ay-flavor-chocolate);
}

/* Cookie colors */

.ff-fundraiser article[data-id="chocolate-chip"] {
  --title: var(--ay-flavor-choc-chip);
  --pill: var(--ay-flavor-choc-chip);
}

.ff-fundraiser article[data-id="white-chocolate-macadamia"] {
  --title: var(--ay-flavor-white-mac);
  --pill: var(--ay-flavor-white-mac);
}

.ff-fundraiser article[data-id="snickerdoodle"] {
  --title: var(--ay-flavor-snickerdoodle);
  --pill: var(--ay-flavor-snickerdoodle);
}

.ff-fundraiser article[data-id="peanut-butter"] {
  --title: var(--ay-flavor-peanut-butter);
  --pill: var(--ay-flavor-peanut-butter);
}

.ff-fundraiser article[data-id="chocolate-chip-toffee"] {
  --title: var(--ay-flavor-toffee-crunch);
  --pill: var(--ay-flavor-toffee-crunch);
}

/* Card colors */

.ff-fundraiser article[data-id="one-product"] {
  --title: var(--ay-secondary);
  --pill: var(--ay-secondary);
}

.ff-fundraiser .pbox_head {
  padding: 10px 10px 4px;
}

.ff-fundraiser .pbox_title {
  margin: 0;
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 0.95;
  color: var(--title);
  text-transform: uppercase;
}

.ff-fundraiser .pbox_desc {
  margin: 6px auto -25px;
  font-family: "Saira", system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.15;
  color: var(--title);
  max-width: 320px;
}

.ff-fundraiser .pbox_stage {
  position: relative;
  height: clamp(180px, 20vh, 260px);
  display: grid;
  place-items: center;
  padding: 0 8px 12px;
}

.ff-fundraiser .pbox_stage svg {
  position: absolute;
  width: 100%;
  height: 58%;
  top: 30%;
}

.ff-fundraiser .pbox_imgwrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.ff-fundraiser .pbox_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.ff-fundraiser .pbox_img--alt {
  opacity: 0;
}

.ff-fundraiser .pbox:hover .pbox_img--main {
  opacity: 0;
}

.ff-fundraiser .pbox:hover .pbox_img--alt {
  opacity: 1;
}

.ff-fundraiser .pbox_price {
  position: absolute;
  top: 10%;
  left: 10%;
  z-index: 3;

  background: var(--pill);
  color: var(--ay-white);
  border-radius: 999px;
  padding: 10px 18px;

  font-family: "Lobster", cursive;
  font-size: 23px;
  line-height: 1;

  transform: rotate(-5deg);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.ff-fundraiser .pbox_controls {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.ff-fundraiser .pbox_addBtn {
  height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  border: 2px solid var(--ay-navy);

  background: rgba(255, 255, 255, 0.6);
  color: var(--ay-navy);

  display: inline-flex;
  align-items: center;
  gap: 14px;

  font-family: "Saira Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 22px;

  cursor: pointer;

  transition:
    transform 0.15s ease,
    background 0.15s ease,
    opacity 0.15s ease;
}

.ff-fundraiser .pbox_addBtn .pbox_icon {
  font-size: 24px;
  line-height: 1;
  color: var(--ay-navy);
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.ff-fundraiser .pbox_qty {
  height: 56px;
  border-radius: 999px;
  border: 2px solid var(--ay-navy);
  background: var(--ay-white);

  display: flex;
  align-items: center;
  padding: 0 18px;
  gap: 22px;
}

.ff-fundraiser .pbox_qty button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;

  display: grid;
  place-items: center;
  line-height: 1;
}

.ff-fundraiser .pbox_qty button i {
  font-size: 24px;
  color: var(--ay-navy);
  transition:
    transform 0.12s ease,
    opacity 0.12s ease;
}

.ff-fundraiser .pbox_qty button:hover i {
  transform: scale(1.1);
  opacity: 0.85;
}

.ff-fundraiser .pbox_qty button:active i {
  transform: scale(0.98);
}

.ff-fundraiser .pbox_qtyVal {
  font-family: "Saira Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--ay-navy);
}

.ff-fundraiser .pbox_addBtn:hover {
  transform: scale(1.06);
  background: var(--ay-white);
  opacity: 1;
}

.ff-fundraiser .products_grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.ff-fundraiser .pbox {
  height: 100%;
  display: grid;
  grid-template-rows: var(--pbox-head-h, 90px) 1fr;
}

.ff-fundraiser .pbox_head {
  height: var(--pbox-head-h, 90px);
  overflow: hidden;
  padding: 10px 10px 4px;
  display: grid;
  align-content: start;
}

.ff-fundraiser .pbox_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* allow up to 2 lines */
  overflow: hidden;
}

.ff-fundraiser .pbox_desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 560px) {
  .ff-fundraiser .pbox {
    --pbox-head-h: 85px;
  }

  .ff-fundraiser .pbox_imgwrap {
    top: 0%;
  }
}

@media (min-width: 768px) {
  .ff-fundraiser .pbox {
    --pbox-head-h: 70px;
  }
}

@media (min-width: 1200px) {
  .ff-fundraiser .pbox {
    --pbox-head-h: 90px;
  }
}

/* CTA CLOUD */
/* hide CTA entirely */
[data-cta].is-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transform: translateY(12px) !important;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0.18s;
}

.ff-fundraiser .cta {
  position: absolute;
  right: 0px;
  bottom: 18px;
  z-index: 99999;
  pointer-events: none;
}

.ff-fundraiser .cta_cloud {
  pointer-events: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: -100px;
  padding-left: 40px;
  
}

.ff-fundraiser .cta_link {
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Saira Condensed";
  font-size: 20px;
  color: var(--ay-cta-link);
  text-decoration: underline;
  line-height: 1.2em;
  
}

.ff-fundraiser .cta_cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-family: "Lobster", cursive;
  
}

.ff-fundraiser .cta_label {
  font-weight: 900;
  font-size: 18px;
  color: var(--ay-ink-soft);
  transform: rotate(-3deg);
  margin-bottom: -8px;
  text-wrap: nowrap ;
}

.ff-fundraiser .cta_total {
  font-weight: 900;
  font-size: 50px;
  color: var(--ay-ink);
  letter-spacing: -0.5px;
  transform: rotate(-3deg);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.ff-fundraiser .cta_total sup {
  font-size: 0.35em;
  position: relative;
  top: -0.55em;
  font-weight: 900;
}

.ff-fundraiser .cta_total .currency {
  font-size: 0.7em;
  font-weight: 900;
  transform: rotate(-5deg);
  margin-bottom: 5px;
}

/* ===== Checkout Button ===== */
.ff-fundraiser .cta_btn {
  text-decoration: none;
  background: var(--ay-green);
  color: var(--ay-white);
  padding: 14px 28px;
  border-radius: 25px 0px 0px 25px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.18s cubic-bezier(0.2, 0.85, 0.2, 1),
    box-shadow 0.18s ease;
  will-change: transform;
  
}

.cta_btn.is-cart-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.cta_btn.is-cart-disabled:hover {
  transform: none !important;
}

.ff-fundraiser .cta_btn:hover {
  transform: scale(1.06);
}

.cta_btn span {
  font-family: "Saira Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 26px;
}

.cta.is-fixed {
  position: fixed;
  right: 0;
  left: auto;
  transform: none;
  bottom: 18px;
  z-index: 2147483647;
}

/*Scroll-to-top button - hidden in hero (default) - shows only when CTA is fixed (docked) */

.ff-fundraiser .cta_toTop {
  pointer-events: auto;
  position: absolute;
  right: 18px;
  bottom: calc(100% - 40px);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: var(--ay-ink);
  color: var(--ay-white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.18s cubic-bezier(0.2, 0.85, 0.2, 1),
    opacity 0.18s ease,
    visibility 0s linear 0.18s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
}

.ff-fundraiser .cta_toTop i {
  font-size: 18px;
  line-height: 1;
}

/* show only when CTA is docked AND allowed by JS */
.ff-fundraiser .cta.is-fixed .cta_toTop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    transform 0.18s cubic-bezier(0.2, 0.85, 0.2, 1),
    opacity 0.18s ease,
    visibility 0s;
}

.ff-fundraiser .cta.is-fixed .cta_toTop:hover {
  transform: translateY(-2px) scale(1.06);
}

/*CTA STACK (social + top) Appears only once past hero (wrapper animates in, button hovers independently) */

.ff-fundraiser .cta_stack {
  pointer-events: none;
  position: absolute;
  right: 8px;
  bottom: calc(100% + 14px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.ff-fundraiser .cta_stack.is-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* WRAPPER owns the pop animation transform (so hover doesn't fight it) */
.ff-fundraiser .cta_stackItem {
  opacity: 0;
  transform: translateY(10px) scale(0.6);
  will-change: transform, opacity;
}

/* BUTTON owns hover transform */
.ff-fundraiser .cta_stackBtn {
  border-radius: 999px;
  border: none;
  display: grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;

  background: var(--ay-ink);
  color: var(--ay-white);

  transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.2, 1);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.ff-fundraiser .cta_stackBtn i {
  font-size: 24px;
  line-height: 1;
}

/* Sizes */
.ff-fundraiser .cta_stackBtn.is-fb,
.ff-fundraiser .cta_stackBtn.is-x,
.ff-fundraiser .cta_stackBtn.is-ig,
.ff-fundraiser .cta_stackBtn.is-wa {
  width: 40px;
  height: 40px;
}

.ff-fundraiser .cta_stackBtn.is-top {
  width: 54px;
  height: 54px;
  margin-top: 10px;
}

/* Brand backgrounds (match screenshot vibe) */
.ff-fundraiser .cta_stackBtn.is-fb {
  background: var(--ay-social-fb);
}

.ff-fundraiser .cta_stackBtn.is-x {
  background: var(--ay-ink);
}

.ff-fundraiser .cta_stackBtn.is-ig {
  background: radial-gradient(
    circle at 30% 30%,
    var(--ay-ig-1) 0%,
    var(--ay-ig-2) 25%,
    var(--ay-ig-3) 55%,
    var(--ay-ig-4) 75%,
    var(--ay-ig-5) 100%
  );
}

.ff-fundraiser .cta_stackBtn.is-wa {
  background: var(--ay-social-wa);
}

.ff-fundraiser .cta_stackBtn.is-top {
  background: var(--ay-ink);
}

/* Pop animation (on WRAPPER) */
@keyframes ffCtaPop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.6);
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* When stack becomes visible, pop each wrapper with stagger */
.ff-fundraiser .cta_stack.is-visible .cta_stackItem {
  animation: ffCtaPop 0.38s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

/* Order: top buttons appear first, scroll-to-top last (like your screenshot) */
.ff-fundraiser .cta_stack.is-visible .cta_stackItem:nth-child(1) {
  animation-delay: 800ms;
}

.ff-fundraiser .cta_stack.is-visible .cta_stackItem:nth-child(2) {
  animation-delay: 700ms;
}

.ff-fundraiser .cta_stack.is-visible .cta_stackItem:nth-child(3) {
  animation-delay: 600ms;
}

.ff-fundraiser .cta_stack.is-visible .cta_stackItem:nth-child(4) {
  animation-delay: 500ms;
}

.ff-fundraiser .cta_stack.is-visible .cta_stackItem:nth-child(5) {
  animation-delay: 0ms;
}

/* Hover (works because it transforms the INNER button, not the animated wrapper) */
.ff-fundraiser .cta_stackBtn:hover {
  transform: translateY(-2px) scale(1.1);
}

/* Keyboard focus */
.ff-fundraiser .cta_stackBtn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
}

/* If CTA itself is hidden (footer), stack must be hidden too */
.ff-fundraiser [data-cta].is-hidden .cta_stack {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* SECTION 2 */

.ff-fundraiser .section2 {
  position: relative;
  z-index: 2;
  background-color: var(--ay-cream);
}

.ff-fundraiser .section2_cloud {
  width: 100%;
  height: auto;
  display: block;
}

.ff-fundraiser .section2_inner {
  position: relative;
  overflow: clip;
  background: var(--ay-offwhite);
  margin-top: -2px;
}

.ff-fundraiser .section2_wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 24px 90px;
  min-height: auto;
  display: grid;
  align-content: center;
}

.ff-fundraiser .section2_title {
  text-align: center;
  font-family: "Lobster", cursive;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 40px);
  color: var(--ay-navy);
  margin: 10px 0 26px;
}

.ff-fundraiser .section2_grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  position: relative;
  z-index: 2;
}

.ff-fundraiser .cause_svg {
  text-align: right;
}

.ff-fundraiser .cause_svg > img:first-child {
  width: 60%;
}

.ff-fundraiser .cause_svg > img:last-child {
  width: 100%;
}

.ff-fundraiser .section2_right {
  max-width: 420px;
}

.ff-fundraiser .cause_p {
  margin: 0 0 20px;
  font-family: "Saira", system-ui, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ay-navy);
}

.ff-fundraiser .cause_p strong {
  font-weight: 900;
}

/* ===== faint linked background ===== */
.ff-fundraiser .section2_bgpop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ff-fundraiser .section2_bgpop img {
  opacity: 0.1;
}

.ff-fundraiser .section2_bgpop .bgpop {
  position: absolute;
  width: 92px;
  aspect-ratio: 1;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
  animation: causeFloat 7s ease-in-out infinite;
}

.ff-fundraiser .section2_bgpop .bgpop svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ff-fundraiser .section2_bgpop .bgpop:hover {
  opacity: 0.26;
  transform: translateY(-6px) scale(1.05);
}

/* positions (tune later) */
.ff-fundraiser .section2_bgpop .p1 {
  left: 6%;
  top: 12%;
  animation-delay: 0.1s;
}

.ff-fundraiser .section2_bgpop .p2 {
  right: 10%;
  top: 18%;
  animation-delay: 1.1s;
  width: 70px;
}

.ff-fundraiser .section2_bgpop .p3 {
  left: 12%;
  bottom: 10%;
  animation-delay: 2.1s;
  width: 78px;
}

.ff-fundraiser .section2_bgpop .p4 {
  right: 18%;
  bottom: 16%;
  animation-delay: 3.2s;
  width: 64px;
}

.ff-fundraiser .section2_bgpop .p5 {
  left: 48%;
  top: 8%;
  animation-delay: 2.6s;
  width: 58px;
}

/* ===== floating kids ===== */
.ff-fundraiser .section2_kids {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.ff-fundraiser .kid_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ff-fundraiser .thanks-kid {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 10px;
  pointer-events: auto;
  animation: causeFloat 6.2s ease-in-out infinite;
  will-change: transform;

  /* per-kid sizing vars (defaults) */
  --size: 96px;
  --border: 4px;
  --bubble: 18px;
}

.ff-fundraiser .kid_avatar {
  width: var(--size);
  aspect-ratio: 1;
  border-radius: 999px;
  border: var(--border) solid var(--ay-secondary);
  overflow: hidden;
  background: var(--ay-avatar-bg);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.18s ease;
}

.ff-fundraiser .kid_avatar svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ff-fundraiser .kid_avatar circle {
  fill: var(--ay-avatar-placeholder);
}

.ff-fundraiser .kid_avatar text {
  fill: var(--ay-navy);
  font-family: "Saira", system-ui, sans-serif;
  font-weight: 900;
}

.ff-fundraiser .kid_bubble {
  background: var(--ay-secondary);
  color: var(--ay-white);
  font-family: "Lobster", cursive;
  font-weight: 400;
  font-size: var(--bubble);
  padding: 7px 14px;
  border-radius: 999px;
  transform: rotate(-8deg);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  position: relative;
  white-space: nowrap;
}

.ff-fundraiser .kid_bubble::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: var(--ay-secondary);
  transform: rotate(45deg);
  border-radius: 3px;
}

/* kid positions (desktop) */
.ff-fundraiser .k1 {
  left: 10%;
  top: 28%;
  animation-delay: 1.3s;
  --size: 108px;
  --bubble: 19px;
}

.ff-fundraiser .k2 {
  right: 8%;
  top: 4%;
  animation-delay: 1.1s;
  --size: 84px;
  --bubble: 16px;
}

.ff-fundraiser .k3 {
  left: 1%;
  top: 2%;
  animation-delay: 0.6s;
  --size: 98px;
  --bubble: 18px;
}

.ff-fundraiser .k4 {
  left: 6%;
  top: 78%;
  animation-delay: 1.7s;
  --size: 76px;
  --bubble: 15px;
}

.ff-fundraiser .k5 {
  right: 10%;
  top: 72%;
  animation-delay: 0.1s;
  --size: 92px;
  --bubble: 17px;
}

.ff-fundraiser .k6 {
  left: 40%;
  bottom: 10%;
  animation-delay: 1s;
  --size: 112px;
  --bubble: 19px;
}

.ff-fundraiser .k7 {
  right: 32%;
  bottom: 2%;
  animation-delay: 2.7s;
  --size: 80px;
  --bubble: 16px;
}

.ff-fundraiser .desktop-only {
  display: grid;
}

/* shared float */
@keyframes causeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ff-fundraiser .thanks-kid,
  .ff-fundraiser .section2_bgpop .bgpop {
    animation: none !important;
  }
}

/* ===== mobile layout to match screenshot ===== */
@media (max-width: 700px) {
  .ff-fundraiser .section2_wrap {
    padding: 26px 18px 34px;
    min-height: auto;
  }

  .ff-fundraiser .cause_svg {
    text-align: center;
  }

  .ff-fundraiser .section2_grid {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .ff-fundraiser .section2_right {
    max-width: 520px;
    margin: 0 auto;
  }

  .ff-fundraiser .cause_p {
    font-size: 17px;
  }

  /* kids become a bottom row like the screenshot */
  .ff-fundraiser .section2_kids {
    position: relative;
    inset: auto;
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    pointer-events: auto;
  }

  .ff-fundraiser .thanks-kid {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    animation-duration: 5.8s;

    /* clamp sizes on mobile */
    --size: clamp(70px, 18vw, 92px);
    --bubble: clamp(14px, 3.8vw, 16px);
  }

  /* vary slightly on mobile */
  .ff-fundraiser .k1 {
    --size: clamp(78px, 20vw, 94px);
  }

  .ff-fundraiser .k2 {
    --size: clamp(70px, 17vw, 86px);
  }

  .ff-fundraiser .k3 {
    --size: clamp(74px, 18vw, 90px);
  }

  .ff-fundraiser .k4 {
    --size: clamp(68px, 16vw, 84px);
  }

  .ff-fundraiser .desktop-only {
    display: none;
  }

  .ff-fundraiser .section2_bgpop .bgpop {
    width: 70px;
  }
}





/* =========================================================
   SECTION 2 — STORY CAUSE VARIANT
   Original SVG + original text styles
   Desktop: kids float around SVG on left
   Mobile: SVG → text → kids row
   ========================================================= */

.ff-fundraiser .section2_inner--storyCause {
  background: var(--ay-offwhite);
}

.ff-fundraiser .section2_wrap--storyCause {
  max-width: 1200px;
  padding: 34px 24px 90px;
}

.ff-fundraiser .section2_grid--storyCause {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  grid-template-areas: "visual text";
  align-items: center;
  gap: clamp(38px, 5vw, 72px);
  position: relative;
  z-index: 2;
}

.ff-fundraiser .section2_left--storyCause {
  grid-area: visual;
  position: relative;
  min-height: clamp(520px, 48vw, 650px);
}

.ff-fundraiser .section2_right--storyCause {
  grid-area: text;
  max-width: 560px;
}

.ff-fundraiser .section2_right--storyCause .cause_p {
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 500;
}

.ff-fundraiser .section2_right--storyCause .cause_p strong {
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 800;
}

/* SVG stays in left column */
.ff-fundraiser .cause_svg--storyCause {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, 620px);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.ff-fundraiser .cause_svg--storyCause > img:first-child {
  width: 60%;
}

.ff-fundraiser .cause_svg--storyCause > img:last-child {
  width: 100%;
}

/* Kids layer is now grid-level but visually locked to left column */
.ff-fundraiser .section2_kids--storyCause {
  grid-area: visual;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 48vw, 650px);
  z-index: 3;
  pointer-events: none;
}

/* Reset old absolute behavior safely inside this variant */
.ff-fundraiser .section2_kids--storyCause .thanks-kid {
  position: absolute;
  display: grid;
  justify-items: center;
  align-items: start;
  gap: 10px;
  width: max-content;
  max-width: max-content;
  pointer-events: auto;
  animation: causeFloat 6.2s ease-in-out infinite;
  will-change: transform;

  --size: 90px;
  --border: 4px;
  --bubble: 16px;
}

.ff-fundraiser .section2_kids--storyCause .kid_avatar {
  width: var(--size);
  height: var(--size);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: var(--border) solid var(--ay-secondary);
  overflow: hidden;
  background: var(--ay-avatar-bg);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  flex: 0 0 auto;
}

.ff-fundraiser .section2_kids--storyCause .kid_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Keep original bubble style, but prevent stretching */
.ff-fundraiser .section2_kids--storyCause .kid_bubble {
  width: auto;
  max-width: max-content;
  min-width: 0;
  height: auto;
  display: inline-block;
  background: var(--ay-secondary);
  color: var(--ay-white);
  font-family: "Lobster", cursive;
  font-weight: 400;
  font-size: var(--bubble);
  line-height: 1;
  padding: 7px 14px;
  border-radius: 999px;
  transform: rotate(-8deg);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  position: relative;
  white-space: nowrap;
}

.ff-fundraiser .section2_kids--storyCause .kid_bubble::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: var(--ay-secondary);
  transform: rotate(45deg);
  border-radius: 3px;
}

/* Desktop positions around the SVG */
.ff-fundraiser .section2_kids--storyCause .k1 {
  left: 8%;
  top: 2%;
  --size: 108px;
  --bubble: 19px;
}

.ff-fundraiser .section2_kids--storyCause .k2 {
  right: 5%;
  top: 20%;
  --size: 84px;
  --bubble: 16px;
}

.ff-fundraiser .section2_kids--storyCause .k3 {
  left: 10%;
  top: auto;
  bottom: 5%;
  --size: 98px;
  --bubble: 18px;
}

.ff-fundraiser .section2_kids--storyCause .k4 {
  left: auto;
  top: auto;
  right: 12%;
  bottom: 9%;
  --size: 76px;
  --bubble: 15px;
}

/* =========================================================
   MOBILE
   Original mobile idea: SVG first, text second, kids under text
   ========================================================= */

@media (max-width: 700px) {
  .ff-fundraiser .section2_wrap--storyCause {
    padding: 26px 18px 34px;
  }

  .ff-fundraiser .section2_grid--storyCause {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "text"
      "kids";
    gap: 18px;
    text-align: center;
  }

  .ff-fundraiser .section2_left--storyCause {
    grid-area: visual;
    min-height: auto;
  }

  .ff-fundraiser .cause_svg--storyCause {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    transform: none;
    text-align: center;
  }

  .ff-fundraiser .section2_right--storyCause {
    grid-area: text;
    max-width: 520px;
    margin: 0 auto;
  }

  .ff-fundraiser .section2_kids--storyCause {
    grid-area: kids;
    position: relative;
    width: 100%;
    min-height: auto;
    height: auto;
    inset: auto;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    pointer-events: auto;
  }

  .ff-fundraiser .section2_kids--storyCause .thanks-kid {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    animation-duration: 5.8s;

    --size: clamp(70px, 18vw, 92px);
    --bubble: clamp(14px, 3.8vw, 16px);
  }

  .ff-fundraiser .section2_kids--storyCause .k1 {
    --size: clamp(78px, 20vw, 94px);
  }

  .ff-fundraiser .section2_kids--storyCause .k2 {
    --size: clamp(70px, 17vw, 86px);
  }

  .ff-fundraiser .section2_kids--storyCause .k3 {
    --size: clamp(74px, 18vw, 90px);
  }

  .ff-fundraiser .section2_kids--storyCause .k4 {
    --size: clamp(68px, 16vw, 84px);
  }
}







/* SECTION 2.1 — MORE PRODUCTS (draggable/swipe + no scrollbar) */

.ff-fundraiser .section2_more {
  padding-top: 10%;
  text-align: center;
  background: var(--ay-offwhite);
}

.ff-fundraiser .section2_more_title {
  font-family: "Lobster", cursive;
  font-size: clamp(34px, 4vw, 64px);
  color: var(--ay-primary);
  margin: 0 0 10px;
  transform: rotate(-2deg);
  line-height: 25px;
}

.ff-fundraiser .section2_more_sub {
  font-family: "Saira Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--ay-navy);
  margin-bottom: 60px;
  transform: rotate(-2deg);
}

/* Desktop grid */
.ff-fundraiser .section2_more_track {
  display: flex;
  gap: 40px;
  justify-content: center;
}

/* Product card */
.ff-fundraiser .s2_card {
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 18px;
}

/* === Image box: fixed consistent size, crop image to fit === */
.ff-fundraiser .s2_media {
  height: 260px;
  /* same dimensions across cards */
  border-radius: 28px;
  overflow: hidden;
  /* crops the image */
  display: block;
}

.ff-fundraiser .s2_media--tile {
  padding: 0;
  /* no extra padding; box is the crop area */
}

.ff-fundraiser .s2_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* crop to fit */
  object-position: center;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.22));
}

/* Meta */
.ff-fundraiser .s2_meta {
  text-align: center;
  display: grid;
  gap: 12px;
}

.ff-fundraiser .s2_name {
  font-family: "Saira Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2vw, 30px);
  color: var(--ay-navy);
}

.ff-fundraiser .s2_row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.ff-fundraiser .s2_price {
  font-family: "Lobster", cursive;
  font-size: clamp(42px, 5vw, 70px);
  color: var(--ay-navy);
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;
}

.ff-fundraiser .s2_currency {
  font-size: 0.55em;
  /* smaller $ */
  margin-right: 4px;
  position: relative;
  top: 0.18em;
}

.ff-fundraiser .s2_dollars {
  font-size: 1em;
}

.ff-fundraiser .s2_cents {
  font-size: 0.35em;
  /* smaller cents */
  position: relative;
  top: 0.3em;
  margin-left: 0.3em;
}

.ff-fundraiser .s2_btn {
  background: var(--ay-navy);
  color: var(--ay-white);
  font-family: "Saira Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 1.4em;
  padding: 13px 38px;
  border-radius: 999px;
  transition: transform 0.15s ease;
}

.ff-fundraiser .s2_card:hover .s2_btn {
  transform: scale(1.05);
}

/* Mobile: true swipe/drag feel + hide scrollbar + 1.5 cards visible */
@media (max-width: 820px) {
  .ff-fundraiser .section2_more {
    padding-top: 70px;
  }

  .ff-fundraiser .section2_more_track {
    gap: 18px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    padding: 0 18px 6px;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: initial;
  }

  .ff-fundraiser .section2_more_track::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .ff-fundraiser .section2_more_track:active {
    cursor: grabbing;
  }

  .ff-fundraiser .s2_card {
    scroll-snap-align: start;
    width: 220px;
    min-width: 220px;
  }

  .ff-fundraiser .s2_media {
    border-radius: 22px;
    height: 220px;
  }

  .ff-fundraiser .s2_row {
    gap: 18px;
  }

  .ff-fundraiser .s2_btn {
    padding: 12px 28px;
  }
}

/* MOBILE / SMALL SCREENS: Disable sticky cover effect so hero never disappears */
@media (min-width: 481px) and (max-width: 960px) {
  .hero_svg {
    height: 80vw;
  }
}

@media (max-width: 960px) {
  .ff-fundraiser .popcorn-carousel {
    height: 80vw;
    margin-top: -30vw;
    z-index: 0;
  }

  .hero_svg {
    z-index: 2;
  }

  .ff-fundraiser .hero {
    height: min-content;
  }

  .ff-fundraiser .hero_top {
    grid-template-columns: 1fr;
  }

  .ff-fundraiser .hero_visual {
    padding: 0 24px 24px;
  }

  /* 3) Make CTA fixed + full width on mobile */
  .ff-fundraiser .cta {
    position: fixed !important;
    right: 0px !important;
    z-index: 9999;
  }

  .ff-fundraiser .cta_cloud{
    padding: 20px;
    padding-bottom: 0px;
    padding-left: 40px;
    gap: 20px;
  }

  .ff-fundraiser .cta_cloud .cta_btn {
    gap: 15px;
    overflow: hidden;
    margin-right: -20px;
  }

  .ff-fundraiser .cta_total {
    font-size: 28px;
  }

  .ff-fundraiser .cta_label {
    font-size: 14px;
    margin-bottom: -4px;
  }

  .ff-fundraiser .cta_total {
    font-size: 36px;
  }

  .ff-fundraiser .cta_btn {
    padding: 14px 18px;
  }
.ff-fundraiser .cta_btn  i {
    display: none;
  }
  .cta_btn span {
    font-size: 20px;
  }
}

/* SUPPORT TRANSITION */

.ff-fundraiser .support-transition {
  position: relative;
  z-index: 2;
  background: var(--ay-offwhite);
  overflow: clip;

  --washTopPx: 99999px;
  --washInTitleTopPx: 99999px;

  min-height: clamp(980px, 140vh, 1400px);
}

.ff-fundraiser .support-transition .support-stage {
  position: relative;
  min-height: 100%;
}

.ff-fundraiser .support-transition .support-inner {
  position: relative;
  z-index: 3;

  width: min(92%, 750px);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 46px) 0;

  min-height: clamp(640px, 100vh, 920px);
  display: grid;
  align-items: center;
}

.ff-fundraiser .support-transition .support-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: clamp(18px, 4vw, 60px);
  align-items: center;
}

.ff-fundraiser .support-transition .support-left {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.ff-fundraiser .support-transition .support-right {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.ff-fundraiser .support-transition .support-bowlWrap {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

/* Title layers */
.ff-fundraiser .support-transition .support-title {
  margin: 0;
  position: relative;
  line-height: 0.88;
  letter-spacing: -0.02em;
  font-family: "Saira Extra Condensed", "Saira Condensed", "Saira", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(56px, 7.2vw, 118px);
  isolation: isolate;
}

.ff-fundraiser .support-transition .support-title-base {
  display: block;
  color: var(--ay-primary);
}

.ff-fundraiser .support-transition .support-title-washLayer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.ff-fundraiser .support-transition .support-title-washSlab {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--washInTitleTopPx, 99999px);
  height: calc(100% + 1200px);
  overflow: hidden;
}

.ff-fundraiser .support-transition .support-title-wash {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-1 * var(--washInTitleTopPx, 0px));
  color: var(--ay-white);
}

/* Ring */
.ff-fundraiser .support-transition .support-right {
  display: grid;
  justify-items: end;
}

.ff-fundraiser .support-transition .support-ring {
  width: clamp(300px, 30vw, 480px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-decoration: none;
  overflow: hidden;
}

.ff-fundraiser .support-transition .support-ring > svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ff-fundraiser .support-transition .support-ring > svg #school-ring {
  transform-box: view-box;
  transform-origin: 247.23px 158.06px;
  animation: schoolSpin 20s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ff-fundraiser .support-transition .support-ring > svg #school-ring {
    animation: none !important;
  }
}

/* Product Secondary Image*/
.ff-fundraiser .support-transition .support-bowlWrap {
  display: grid;
  justify-items: end;
}

.ff-fundraiser .support-transition .support-bowl {
  width: clamp(200px, 26vw, 360px);
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.18));
}

/* Wash */
.ff-fundraiser .support-transition .support-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ff-fundraiser .support-transition .support-wash-fill {
  position: absolute;
  left: 0;
  right: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  top: var(--washTopPx, 99999px);
  bottom: -30%;
  background: var(--ay-primary);
  will-change: top;
}

.ff-fundraiser .support-transition .support-bgpop {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.ff-fundraiser .support-transition .support-pop {
  position: absolute;
  width: 92px;
  aspect-ratio: 1;
  pointer-events: auto;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
  animation: causeFloat 7s ease-in-out infinite;
}

.ff-fundraiser .support-transition .support-pop-white {
  opacity: 0.35;
}

.ff-fundraiser .support-transition .support-pop-black {
  opacity: 0.1;
}

.ff-fundraiser .support-transition .support-pop img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Coordinates */
.support-bgpop .sp1 {
  top: 10%;
  left: 6%;
  transform: rotate(-10deg);
}

.support-bgpop .sp2 {
  top: 22%;
  right: 8%;
  transform: rotate(12deg);
}

.support-bgpop .sp3 {
  bottom: 48%;
  left: 10%;
  transform: rotate(8deg);
}

.support-bgpop .sp4 {
  bottom: 38%;
  right: 14%;
  transform: rotate(-14deg);
}

@media (max-width: 900px) {
  .ff-fundraiser .support-transition {
    min-height: clamp(880px, 160vh, 1400px);
  }

  .ff-fundraiser .support-transition .support-inner {
    min-height: clamp(620px, 100vh, 900px);
    width: min(100%, 650px);
    padding: 30px 0;
  }

  .ff-fundraiser .support-transition .support-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 26px;
    text-align: center;
    align-items: start;
  }

  .ff-fundraiser .support-transition .support-right {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    justify-items: center;
  }

  .ff-fundraiser .support-transition .support-left {
    grid-column: 1;
    grid-row: 2;
  }

  .ff-fundraiser .support-transition .support-bowlWrap {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .ff-fundraiser .support-transition .support-ring {
    width: min(86vw, 420px);
  }

  .ff-fundraiser .support-transition .support-bowl {
    width: min(84vw, 320px);
  }

  .ff-fundraiser .support-transition .support-title {
    width: 100%;
    line-height: 0.9;
    font-size: 100px;
  }

  /* Coordinates */
  .support-bgpop .sp1 {
    top: 3%;
    left: 6%;
    max-width: 15vw;
  }

  .support-bgpop .sp2 {
    top: 22%;
    right: 8%;
    max-width: 15vw;
  }

  .support-bgpop .sp3 {
    bottom: 48%;
    left: 3%;
    max-width: 15vw;
  }

  .support-bgpop .sp4 {
    bottom: 38%;
    right: 4%;
    max-width: 15vw;
  }
}

/*FAQ Section--------------*/

.ff-faq {
  position: relative;
  z-index: 3;
  background: var(--ay-primary);
  padding: clamp(34px, 6vw, 70px) 18px;
}

.ff-faq__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ff-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ff-faq__item {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  transition: border-radius 0.25s ease;
  background: transparent;
}

/* Background fade layer to prevent flash */
.ff-faq__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--ay-ink-strong) 0%,
    var(--ay-ink-strong-2) 100%
  );
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: 0;
}

.ff-faq__item > * {
  position: relative;
  z-index: 1;
}

/* Button row */
.ff-faq__btn {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  text-align: left;
  color: var(--ay-text);
  font-family: "Saira Condensed";
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.ff-faq__q {
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  transition: font-size 0.2s ease;
}

/* Closed hover effect */
.ff-faq__item:not(.is-open) .ff-faq__btn {
  border-radius: 18px;
}

.ff-faq__item:not(.is-open) .ff-faq__btn:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Icon container */
.ff-faq__icons {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.ff-faq__icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  font-size: 26px;
  line-height: 1;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  transform-origin: 50% 50%;
}

/* Default icon state */
.ff-faq__icon--chev {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.ff-faq__icon--close {
  opacity: 0;
  transform: scale(0.9);
}

/* Panel animation */
.ff-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.2, 0.85, 0.2, 1);
  background: transparent;
  color: var(--ay-white);
  box-shadow: var(--ay-shadow-strong);
}

.ff-faq__panel > * {
  overflow: hidden;
}

.ff-faq__panel p {
  margin: 10px 0 0;
  padding: 18px 22px 24px;
  max-width: 78ch;
  color: var(--ay-muted);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.55;

  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

/* Open state */
.ff-faq__item.is-open {
  border-radius: clamp(18px, 2vw, 36px);
}

.ff-faq__item.is-open::before {
  opacity: 1;
}

.ff-faq__item.is-open .ff-faq__btn {
  padding: 22px 22px 0;
  color: var(--ay-white);
  cursor: default;
}

.ff-faq__item.is-open .ff-faq__q {
  font-size: clamp(22px, 2.2vw, 28px);
}

.ff-faq__item.is-open .ff-faq__panel {
  grid-template-rows: 1fr;
}

.ff-faq__item.is-open .ff-faq__panel p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

/* Icon crossfade in open state */
.ff-faq__item.is-open .ff-faq__icon--chev {
  opacity: 0;
  transform: rotate(180deg) scale(0.95);
}

.ff-faq__item.is-open .ff-faq__icon--close {
  opacity: 1;
  transform: scale(1);
}

/* Decorative popcorn */
.ff-faq__pop {
  position: absolute;
  color: rgba(255, 255, 255, 0.45);
  z-index: 1;
  pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 560px) {
  .ff-faq {
    padding: 28px 14px;
  }

  .ff-faq__btn {
    padding: 18px 18px;
  }

  .ff-faq__item.is-open .ff-faq__btn {
    padding: 18px 18px 0;
  }

  .ff-faq__panel p {
    padding: 16px 18px 20px;
  }

  .ff-faq__icons {
    width: 40px;
    height: 40px;
  }

  .ff-faq__icon {
    font-size: 24px;
  }

  .ff-faq__pop svg {
    width: 84px;
    height: 84px;
  }
}

/* PATCHES THE unexpected GAP FROM YELLOW WASH SECTION'S LETTER COVER */
@media (min-width: 901px) {
  .ff-faq {
    margin-top: -50vh;
    position: relative;
    z-index: 5;
  }

  .support-stage {
    padding-bottom: 45vh;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .ff-faq__panel,
  .ff-faq__panel p,
  .ff-faq__icon {
    transition: none !important;
  }
}

/* =========================
   THANK YOU TRANSITION
   ========================= */

.ff-thanks {
  --ff-scroll: 220vh;
  position: relative;
  background: var(--ay-primary);
  height: var(--ff-scroll);
  overflow: clip;
  z-index: 9;
}

.ff-thanks__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: clip;
}

.ff-thanks__stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Yellow stage */
.ff-thanks__stage--yellow {
  background: var(--ay-primary);
  z-index: 3;
}

.ff-thanks__words {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5vh;
  padding: 10vh 4vw 20vh 4vw;
  pointer-events: none;
  will-change: opacity;
}

.ff-thanks__words img {
  height: 16vh;
}

/* Photo stage */
.ff-thanks__stage--photo {
  z-index: 2;
  background: var(--ay-primary);
}

.ff-thanks__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  opacity: 1 !important;
  will-change: transform;
}

/* Each campaign image is a stacked layer; only the active one is visible and
   they crossfade in a loop (see data-loader.js slideshow logic). */
.ff-thanks__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  will-change: opacity;
}

.ff-thanks__slide.is-active {
  opacity: 1;
}

.ff-thanks__curtain {
  --ff-cloudH: clamp(220px, 40vh, 520px);

  position: absolute;
  left: 0;
  top: 0;
  width: 100%;

  height: calc(100vh + var(--ff-cloudH));

  z-index: 4;
  pointer-events: none;
  transform: translate3d(0, 0%, 0);
  will-change: transform;
  backface-visibility: hidden;
}

.ff-thanks__curtainFill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--ay-primary);
}

/* Contain SVG properly */
.ff-thanks__curtainEdge {
  position: absolute;
  left: 0;
  top: 100vh;
  width: 100%;
  height: auto;
  max-height: var(--ff-cloudH);
  object-fit: contain;
  display: block;
  margin-top: -5px;
}

.ff-thanks__thankyou {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(18px, 4.2vh, 44px);
  display: grid;
  place-items: center;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.92);
  will-change: transform, opacity;
  padding: 0 20px 0 20px;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .ff-thanks {
    --ff-scroll: 180vh;
  }

  .ff-fundraiser .products {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: -15vw;
  }

  /* smaller edge texture on mobile */
  .ff-thanks__curtain {
    --ff-cloudH: min(62vh, 420px);
  }

  .ff-thanks__words img {
    height: 11vh;
  }

  .ff-thanks__words {
    gap: 2vh;
    padding: 10vh 10vw 20vh 10vw;
  }
}

/* Default: show desktop */
.ff-thanks__curtainEdge--mobile {
  display: none;
}

@media (max-width: 640px) {
  .ff-thanks__curtainEdge--desktop {
    display: none;
  }

  .ff-thanks__curtainEdge--mobile {
    display: block;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ff-thanks {
    height: auto;
  }

  .ff-thanks__sticky {
    position: relative;
    height: auto;
  }

  .ff-thanks__stage {
    position: relative;
    height: auto;
  }

  .ff-thanks__curtain {
    position: relative;
    transform: none !important;
    height: auto;
  }

  .ff-thanks__curtainFill {
    height: 60vh;
  }

  .ff-thanks__curtainEdge {
    position: relative;
    top: 0;
    height: auto;
  }

  .ff-thanks__thankyou {
    opacity: 1;
    transform: none;
  }

  .ff-thanks__words {
    display: none;
  }

  .ff-thanks__photo {
    position: relative;
    height: 70vh;
  }
}

.ff-thanks__svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop by default */
.ff-thanks__svg--mobile {
  display: none;
}

@media (max-width: 768px) {
  .ff-thanks__svg--desktop {
    display: none;
  }

  .ff-thanks__svg--mobile {
    display: block;
  }
}

.ay-footer {
  background-color: var(--ay-bg-page);
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  padding: 40px 38px 40px;
  z-index: 999;
}

.ay-footer__rule {
  height: 1px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto 34px;
  background: rgba(255, 255, 255, 0.1);
}

.ay-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ay-footer__left,
.ay-footer__center,
.ay-footer__right {
  flex: 1 1 0;
  min-width: 0;
}

.ay-footer__left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ay-footer__center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ay-footer__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 44px);
  white-space: nowrap;
}

.ay-footer__copyright {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

.ay-footer__logoLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ay-footer__logo {
  height: 34px;
  width: auto;
  opacity: 0.3;
  display: block;
}

.ay-footer__link {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  transition:
    opacity 0.15s ease,
    color 0.15s ease,
    text-decoration-color 0.15s ease;
}

.ay-footer__link:hover {
  color: rgba(255, 255, 255, 0.45);
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.ay-footer__mobileCopyright {
  display: none;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.2px;
}

@media (max-width: 900px) {
  .ay-footer {
    padding: 34px 16px 36px;
  }

  .ay-footer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
  }

  .ay-footer__left {
    display: none;
  }

  .ay-footer__center {
    order: 1;
  }

  .ay-footer__right {
    order: 2;
    justify-content: center;
    gap: 34px;
  }

  .ay-footer__mobileCopyright {
    display: inline;
    order: 3;
    font-size: 16px;
    font-weight: 500;
  }

  .ay-footer__logo {
    height: 62px;
    opacity: 0.7;
  }
}

@media (max-width: 520px) {
  /* prevent overflow on very small screens */
  .ay-footer__right {
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 28px;
  }
}

/* ============ Flavor Focus Mode ============ */

.ff-fundraiser .hero [hidden] {
  display: none !important;
}

/* default: focus stage off (JS toggles [hidden], but keep this as a hard fallback) */
.ff-fundraiser .ff-flavorStage {
  display: none;
}

/* active mode */
.ff-fundraiser.is-flavor-mode .products,
.ff-fundraiser.is-flavor-mode .popcorn-carousel {
  display: none !important;
}

.ff-fundraiser.is-flavor-mode .ff-flavorStage {
  display: block !important;
}

.ff-fundraiser.is-flavor-mode .hero_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

/* ============ Stage Base ============ */

.ff-flavorStage {
  position: relative;
  touch-action: pan-y;
}

.ff-flavorStage__close {
  position: absolute;
  top: 0;
  right: 30px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: var(--ff-pill, #b86b1d);
  font-weight: 900;
  cursor: pointer;
}

/* ============ Meta ============ */

.ff-flavorStage__meta {
  padding: 6px 8vw 0px 8vw;
  color: var(--ay-ink);

  height: 140px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  overflow: hidden;
}

.ff-flavorStage__title {
  margin: 0;
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.1vw, 46px);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}

.ff-flavorStage__desc {
  margin: 0;
  font-family: "Saira", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  text-align: center;

  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* ============ Viewer / Swipe Area ============ */

.ff-flavorStage__viewer,
.ff-flavorStage__imgwrap {
  touch-action: pan-y;
}

.ff-flavorStage__viewer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  top: -30px;
}

.ff-flavorStage__nav {
  border: none;
  display: grid;
  place-items: center;
  background: var(--ay-cream);
  cursor: pointer;
  padding: 0px 30px;
  border-radius: 999px;
}

.ff-flavorStage__nav--prev {
  color: var(--ff-prev, #6d5a4a);
}

.ff-flavorStage__nav--next {
  color: var(--ff-next, #b86b1d);
}

.ff-flavorStage__nav i,
.ff-flavorStage__close i {
  font-size: 52px;
  line-height: 1;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    filter 0.14s ease;
}

.ff-flavorStage__nav i:hover,
.ff-flavorStage__close i:hover {
  transform: translateY(0px) scale(1.05);
}

.ff-flavorStage__imgwrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(380px, 55vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ff-flavorStage__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
  z-index: 1;
  will-change: transform, opacity;
}

.ff-flavorStage__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
  z-index: 1;
  will-change: transform, opacity;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.ff-flavorStage__img--main {
  opacity: 1;
}

.ff-flavorStage__img--alt {
  opacity: 0;
  z-index: 2;
}

.hero_one_product .ff-flavorStage__imgwrap,
.hero_one_product .ff-flavorStage__meta {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .hero_one_product .ff-flavorStage__imgwrap:hover .ff-flavorStage__img--main {
    opacity: 0;
  }

  .hero_one_product .ff-flavorStage__imgwrap:hover .ff-flavorStage__img--alt {
    opacity: 1;
  }
}

.hero_one_product .ff-flavorStage__imgwrap:focus-visible,
.hero_one_product .ff-flavorStage__meta:focus-visible {
  outline: 3px solid rgba(17, 32, 43, 0.35);
  outline-offset: 6px;
  border-radius: 18px;
}

/* ============ Price Pill ============ */

.ff-flavorStage__pricePill {
  position: absolute;

  /* responsive position */
  left: clamp(12px, 6vw, 60px);
  top: clamp(12px, 2vw, 28px);

  z-index: 4;

  background: var(--ff-pill, #b86b1d);
  color: var(--ay-white);

  border-radius: 999px;

  /* responsive padding */
  padding: clamp(8px, 1.2vw, 12px) clamp(14px, 2vw, 22px);

  font-family: "Lobster", cursive;
  font-weight: 400;

  /* responsive text */
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;

  /* combine transforms */
  transform: rotate(-7deg);

  transform-origin: left center;

  display: inline-flex;
  align-items: flex-start;
  gap: clamp(2px, 0.5vw, 6px);
}

.ff-flavorStage__pricePill .ff-priceDollar {
  font-size: 0.72em;
  line-height: 1;
  transform: translateY(0.18em);
}

.ff-flavorStage__pricePill .ff-priceMain {
  font-size: 1em;
  line-height: 1;
}

.ff-flavorStage__pricePill .ff-priceCents {
  font-size: 0.58em;
  line-height: 1.6;
  transform: translateY(-0.25em);
}

/* ============ Center Overlay Controls ============ */

.ff-flavorStage__controls {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  z-index: 6;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
}

.ff-flavorStage__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  height: 76px;
  padding: 0 34px;

  border-radius: 999px;
  border: 3px solid var(--ay-navy);

  background: var(--ay-tile-bg);
  color: var(--ay-navy);

  font-family: "Saira Semi Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: 30px;

  cursor: pointer;
  opacity: 0.88;

  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    filter 0.14s ease,
    background-color 0.14s ease,
    opacity 0.14s ease;
}

.ff-flavorStage__add i {
  font-size: 36px;
}

@media (hover: hover) {
  .ff-flavorStage__add:hover {
    transform: translateY(0px) scale(1.02);
    background: var(--ay-offwhite);
    opacity: 1;
  }
}

.ff-flavorStage__add:active {
  transform: translateY(0px) scale(1.02);
  background: var(--ay-offwhite);
}

.ff-flavorStage__qty:not([hidden]) + .ff-flavorStage__add,
.ff-flavorStage__controls:has(.ff-flavorStage__qty:not([hidden]))
  .ff-flavorStage__add {
  opacity: 1;
}

.ff-flavorStage__qty {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  height: 76px;
  padding: 0 22px;

  border-radius: 999px;
  border: 3px solid var(--ay-navy);
  background: var(--ay-offwhite);

  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    filter 0.14s ease;
}

@media (hover: hover) {
  .ff-flavorStage__qty:hover {
    transform: translateY(0px) scale(1.02);
    background: var(--ay-offwhite);
  }
}

.ff-flavorStage__qtyVal {
  min-width: 34px;
  text-align: center;
  font-family: "Saira Semi Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--ay-navy);
}

.ff-flavorStage__minus,
.ff-flavorStage__plus {
  border: none;
  background: transparent;
  color: var(--ay-navy);
  cursor: pointer;
}

.ff-flavorStage__minus i,
.ff-flavorStage__plus i {
  font-size: 36px;
}

/* ==============LIGHBOX=============== */

.ff-lightbox[hidden] {
  display: none !important;
}

.ff-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
}

.ff-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 24, 0.82);
  backdrop-filter: blur(4px);
}

.ff-lightbox__dialog {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 36px);
}

.ff-lightbox__img {
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: var(--ay-white);
}

.ff-lightbox__close {
  position: absolute;
  top: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ay-ink-strong);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.16s ease,
    opacity 0.16s ease;
}

.ff-lightbox__close i {
  font-size: 24px;
  line-height: 1;
}

.ff-lightbox__close:hover {
  transform: scale(1.06);
}

body.ff-lightbox-open {
  overflow: hidden;
}

.ff-lightbox__dialog {
  overflow: hidden;
  touch-action: none;
}

.ff-lightbox__img {
  cursor: zoom-in;
  transform-origin: center center;
  transition: transform 220ms ease;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}

.ff-lightbox__img.is-zoomed {
  cursor: grab;
}

.ff-lightbox__img.is-panning {
  cursor: grabbing;
}

/* ============ Mobile ============ */

@media (max-width: 960px) {
  .ff-fundraiser.is-flavor-mode .hero_top {
    display: block;
  }

  .ff-flavorStage {
    padding-top: 10%;
  }

  .ff-flavorStage__viewer {
    position: relative;
    display: block;
    margin-top: 0px;
    padding: 0px;
  }

  .ff-flavorStage__imgwrap {
    width: 100%;
    height: clamp(360px, 52vh, 560px);
    min-height: 0;
    padding: 0;
    top: -50px;
    margin-bottom: -40%;
  }

  .ff-flavorStage__pricePill {
    left: 18px;
    top: 88px;
    z-index: 4;
  }

  .ff-flavorStage__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    z-index: 6;
    padding: 0;
  }

  .ff-flavorStage__meta {
    height: 140px;
    padding: 0;
    margin-right: 70px;
  }

  .ff-flavorStage__title,
  .ff-flavorStage__desc {
    text-align: left;
  }

  .ff-flavorStage__close {
    right: 0px;
    top: 10%;
  }

  .ff-flavorStage__nav--prev {
    left: 6px;
  }

  .ff-flavorStage__nav--next {
    right: 6px;
  }

  .ff-flavorStage__controls {
    top: 72%;
  }
}

@media (max-width: 960px) {
  .hero_one_product .ff-flavorStage__title {
    display: none;
  }

  .hero_one_product .ff-flavorStage__desc {
    overflow: visible;
    position: absolute;
    top: 10px;
    width: 80vw;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    color: var(--ay-svg-ink) !important;
  }

  .hero_one_product .ff-flavorStage__imgwrap {
    top: -120px;
    margin-bottom: -40%;
  }

  .hero_one_product .ff-flavorStage__controls {
    top: 250px;
  }
}

.hero_one_product .ff-flavorStage__meta {
  width: 100%;
}

/* Disable flavor navigation + close controls in cards theme */
.hero_one_product .ff-flavorStage__close,
.hero_one_product .ff-flavorStage__nav--next > i,
.hero_one_product .ff-flavorStage__nav--prev > i {
  display: none;
}

.hero_one_product .ff-flavorStage__nav--next {
  border: none;
  width: 0px;
  height: 0px;
}

.hero_one_product .ff-flavorStage__nav--prev {
  border: none;
  width: 0px;
  height: 0px;
}

/* =========================
   DONATION MODAL
========================= */

.ff-donateModal[hidden] {
  display: none !important;
}

.ff-donateModal {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
}

.ff-donateModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 24, 0.06);
}

.ff-donateModal__dialog {
  position: absolute;
  inset: 0;
  background: var(--ay-cream);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ff-donateModal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 20;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ay-primary);
  cursor: pointer;
}

.ff-donateModal__close i {
  font-size: 52px;
  line-height: 1;
  transition: transform 0.14s ease;
  -webkit-text-stroke: 8px var(--ay-ink);
  paint-order: stroke fill;
}

.ff-donateModal__close i:hover {
  transform: scale(1.05);
}

.ff-donateModal__body {
  min-height: 100%;
  display: grid;
  place-items: start center;
  padding: 32px 40px 240px;
}

.ff-donateModal__content {
  width: min(1400px, 100%);
  display: grid;
  gap: 48px;
}

.ff-donateModal__heading {
  padding: 6px 8vw 0 8vw;
  height: 140px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  overflow: hidden;
  text-align: center;
}

.ff-donateModal__title {
  margin: 0;
  margin-left: 3px;
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 3.1vw, 56px);
  line-height: 1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ay-primary);
  -webkit-text-stroke: 8px var(--ay-ink);
  paint-order: stroke fill;
}

.ff-donateModal__desc {
  margin: 0;
  max-width: none;
  font-family: "Saira", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ay-ink);
  text-align: center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.ff-donateModal__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 22px;
}

.ff-donateOption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 112px;
  padding: 10px 40px;
  border: 4px solid var(--ay-navy);
  border-radius: 30px;
  background: transparent;
  color: var(--ay-navy);
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.14s ease,
    background-color 0.14s ease,
    box-shadow 0.14s ease;
}

.ff-donateOption:hover {
  transform: translateY(-1px);
}

.ff-donateOption.is-selected {
  background: var(--ay-primary);
}

.ff-donateOption__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.ff-donateOption__label {
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 2.1vw, 42px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ay-ink);
}

.ff-donateOption__sub {
  display: block;
  margin-top: 4px;
  font-family: "Lobster", cursive;
  font-size: clamp(18px, 1.2vw, 28px);
  line-height: 1;
  color: var(--ay-ink);
  transform: rotate(-4deg);
}

.ff-donateOption__right {
  flex: 0 0 auto;
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 3.4vw, 78px);
  line-height: 0.9;
  color: var(--ay-white);
  -webkit-text-stroke: 8px var(--ay-ink);
  paint-order: stroke fill;
  text-shadow: none;
}

.ff-donateModal__custom {
  width: min(480px, 100%);
  margin: 14px auto 0;
  display: grid;
  gap: 18px;
}

.ff-donateModal__customLabel {
  text-align: center;
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 2.2vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--ay-ink);
}

.ff-donateModal__customControls {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 0 22px;
  border: 4px solid var(--ay-navy);
  border-radius: 999px;
  background: transparent;
}

/* Custom amount input active state */

.ff-donateModal__customControls:focus-within {
  background: var(--ay-white);
}

.ff-donateModal__customControls:focus-within {
  border-color: var(--ay-navy);
}

.ff-donateModal__customWrap {
  position: relative;
  min-width: 0;
}

.ff-donateModal__customControls {
  transition: background-color 0.18s ease;
}

.ff-donateModal__step {
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.14s ease,
    opacity 0.14s ease;
}

.ff-donateModal__step:hover {
  transform: scale(1.06);
}

.ff-donateModal__step i {
  font-size: 44px;
  line-height: 1;
  color: var(--ay-navy);
}

.ff-donateModal__input {
  width: 100%;
  height: 82px;
  padding: 0;
  border: none;
  background: transparent;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 3vw, 62px);
  line-height: 1;
  text-align: center;
  color: var(--ay-ink);
}

.ff-donateModal__input::-webkit-outer-spin-button,
.ff-donateModal__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ff-donateModal__footerWrap {
  position: fixed;
  right: 0;
  bottom: -8px;
  z-index: 15;
  width: 440px;
  pointer-events: none;
}

.ff-donateModal__cta {
  position: relative;
  width: 100%;
  pointer-events: auto;
}

.ff-donateModal__ctaSvg {
  display: block;
  width: 100%;
  height: auto;
}

.ff-donateModal__ctaCloud {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 0 0 50px;
  margin-top: 30px;
}

.ff-donateModal__ctaTotal {
  font-family: "Lobster", cursive;
  font-size: 50px;
  line-height: 1;
  color: #0d1b2a;
  white-space: nowrap;
  transform: rotate(-4deg);
}

.ff-donateModal__ctaTotal sup {
  position: relative;
  top: -0.52em;
  font-size: 0.38em;
}

.ff-donateModal__ctaTotal .currency {
  font-size: 0.72em;
}

.ff-donateModal__ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 18px 34px;

  border-radius: 28px 0 0 28px;
  border: none;

  background: #87c12f;
  color: var(--ay-white);

  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;

  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;

  transition:
    transform 0.18s cubic-bezier(0.2, 0.85, 0.2, 1),
    box-shadow 0.18s ease,
    opacity 0.16s ease;

  will-change: transform;
}

.ff-donateModal__ctaBtn:hover {
  transform: scale(1.05);
}

.ff-donateModal__ctaBtn:active {
  transform: scale(0.98);
}

.ff-donateModal__ctaBtn span {
  line-height: 1;
}

.ff-donateModal__ctaBtn i {
  font-size: 0.6em;
  line-height: 1;
}

body.ff-donate-open {
  overflow: hidden;
}

/* Hide original fundraiser CTA while donation modal is open */
body.ff-donate-open .ff-fundraiser [data-cta] {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(12px) !important;
}

/* Also hide its floating stack/buttons */
body.ff-donate-open .ff-fundraiser [data-cta] .cta_stack {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 960px) {
  .ff-donateModal__heading {
    height: 140px;
    padding: 0;
    margin-right: 70px;
    text-align: left;
  }

  .ff-donateModal__title,
  .ff-donateModal__desc {
    text-align: left;
  }
}

@media (max-width: 1100px) {
  .ff-donateModal__body {
    padding: 28px 20px 220px;
  }

  .ff-donateModal__options {
    grid-template-columns: 1fr 1fr;
  }

  .ff-donateModal__footerWrap {
    width: min(480px, 52vw);
  }

  .ff-donateModal__ctaCloud {
    gap: 24px;
    padding: 0 20px 0 66px;
  }

  .ff-donateModal__ctaBtn {
    padding: 16px 28px;
  }
}

@media (max-width: 960px) {
  .ff-donateModal__close {
    top: 30px;
    right: 0;
  }
}

@media (max-width: 700px) {
  .ff-donateModal__close i {
    font-size: 42px;
  }

  .ff-donateModal__body {
    padding: 40px 12px 195px;
  }

  .ff-donateModal__content {
    gap: 28px;
  }

  .ff-donateModal__options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ff-donateOption {
    min-height: 92px;
    padding: 14px 18px;
    gap: 16px;
    border-width: 3px;
    border-radius: 24px;
  }

  .ff-donateModal__ctaTotal {
    font-size: 42px;
  }

  .ff-donateModal__custom {
    width: min(360px, 100%);
    gap: 12px;
  }

  .ff-donateModal__customControls {
    min-height: 90px;
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    gap: 12px;
    padding: 0 14px;
    border-width: 3px;
  }

  .ff-donateModal__step {
    width: 38px;
    height: 38px;
  }

  .ff-donateModal__step i {
    font-size: 36px;
  }

  .ff-donateModal__input {
    height: 64px;
  }

  .ff-donateModal__footerWrap {
    right: 0;
    bottom: -2px;
    width: calc(100vw - 4px);
    max-width: 430px;
  }

  .ff-donateModal__ctaCloud {
    gap: 14px;
    padding: 0 10px 0 30px;
  }

  .ff-donateModal__ctaBtn {
    gap: 10px;
    padding: 14px 20px;
  }

  .ff-donateModal__ctaBtn span {
    font-size: 26px;
  }

  .ff-donateModal__ctaBtn i {
    font-size: 18px;
  }
}

/* =========================================
   CROWDFUNDING SPECIFIC STYLES
   ========================================= */

.cf-hero {
  background-color: var(--ay-bg-cf);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.cf-hero__bubbles {
  position: relative;
  z-index: 10;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-3deg);
}

.cf-hero__bubble-main {
  background: var(--ay-white);
  border: 5px solid var(--ay-cf-dark);
  color: var(--ay-cf-dark);
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(35px, 6vw, 60px);
  line-height: 1;
  padding: 10px 20px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  box-shadow: 6px 6px 0px rgba(0,0,0,0.1);
}

.cf-hero__bubble-main::after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: 20%;
  border-width: 25px 25px 0 0;
  border-style: solid;
  border-color: var(--ay-cf-dark) transparent transparent transparent;
}
.cf-hero__bubble-main::before {
  content: "";
  position: absolute;
  bottom: -16px;
  right: calc(20% + 4px);
  border-width: 17px 17px 0 0;
  border-style: solid;
  border-color: var(--ay-white) transparent transparent transparent;
  z-index: 1;
}

.cf-hero__bubble-sub {
  background: var(--ay-terciary);
  color: var(--ay-white);
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 4vw, 35px);
  padding: 5px 15px;
  text-transform: uppercase;
  position: absolute;
  bottom: -40px;
  left: -20px;
  transform: rotate(5deg);
  border: 3px solid var(--ay-cf-dark);
}

.cf-hero__bubble-sub::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 15px;
  border-width: 15px 15px 0 0;
  border-style: solid;
  border-color: var(--ay-cf-dark) transparent transparent transparent;
}
.cf-hero__bubble-sub::before {
  content: "";
  position: absolute;
  bottom: -9px;
  right: 18px;
  border-width: 10px 10px 0 0;
  border-style: solid;
  border-color: var(--ay-terciary) transparent transparent transparent;
  z-index: 1;
}

.cf-hero__img-wrap {
  margin-top: -30px;
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 1;
}

.cf-hero__img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 15px solid var(--ay-bg-cf);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.05); /* subtle outer ring matching design */
}

.cf-hero__title {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  color: var(--ay-cf-dark);
  text-transform: uppercase;
  text-align: center;
  line-height: 0.85;
  margin-top: -40px;
  z-index: 5;
  position: relative;
  font-size: clamp(60px, 12vw, 120px);
  text-shadow: 2px 2px 0 var(--ay-white), -2px -2px 0 var(--ay-white), 2px -2px 0 var(--ay-white), -2px 2px 0 var(--ay-white);
}

.cf-hero__title span {
  display: block;
  font-size: 0.45em;
  color: var(--ay-white);
  text-shadow: 2px 2px 0 var(--ay-cf-dark), -2px -2px 0 var(--ay-cf-dark), 2px -2px 0 var(--ay-cf-dark), -2px 2px 0 var(--ay-cf-dark);
  letter-spacing: 2px;
}

.cf-progress {
  width: 90%;
  max-width: 600px;
  margin: 30px auto;
  position: relative;
}

.cf-progress__bubble {
  background: var(--ay-primary);
  border: 4px solid var(--ay-cf-dark);
  color: var(--ay-cf-dark);
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  padding: 5px 15px;
  display: inline-block;
  transform: rotate(-3deg);
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 2;
  white-space: nowrap;
}

.cf-progress__bar-wrap {
  background: var(--ay-white);
  border: 4px solid var(--ay-cf-dark);
  border-radius: 999px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px;
  z-index: 1;
}

.cf-progress__fill {
  background: var(--ay-primary);
  height: 100%;
  border-radius: 999px;
  width: 80%; /* e.g. 640/800 */
}

.cf-progress__current {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 45px;
  color: var(--ay-cf-dark);
  text-shadow: 1px 1px 0 var(--ay-white), -1px -1px 0 var(--ay-white), 1px -1px 0 var(--ay-white), -1px 1px 0 var(--ay-white);
}

.cf-progress__goal {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  text-align: right;
  line-height: 0.9;
}
.cf-progress__goal span {
  display: block;
  font-size: 16px;
  color: var(--ay-cf-dark);
}
.cf-progress__goal strong {
  font-size: 28px;
  color: var(--ay-cf-dark);
}

.cf-levels {
  background: var(--ay-bg-cf);
  padding: 20px 15px 60px;
  text-align: center;
}

.cf-levels__title {
  font-family: "Saira", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ay-cf-dark);
  margin-bottom: 20px;
}

.cf-levels__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.cf-level {
  background: var(--ay-white);
  border-radius: 12px;
  padding: 10px 15px;
  min-width: 90px;
  flex: 1 1 calc(25% - 10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 3px solid transparent;
  transition: transform 0.2s;
}

.cf-level:hover {
  transform: translateY(-3px);
}

.cf-level__name {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ay-secondary);
  text-transform: uppercase;
}

.cf-level__amt {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--ay-cf-dark);
  line-height: 1;
}

.cf-level.is-popular {
  background: var(--ay-primary);
  border: 3px solid var(--ay-cf-dark);
  transform: scale(1.1);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.cf-level.is-popular:hover {
  transform: scale(1.1) translateY(-3px);
}

.cf-level.is-popular .cf-level__name {
  color: var(--ay-cf-dark);
}

.cf-level.is-popular .cf-level__pop {
  font-family: "Lobster", cursive;
  font-size: 14px;
  color: var(--ay-cf-dark);
  margin-top: 5px;
}

.cf-level.is-wide {
  flex: 1 1 calc(50% - 10px);
}

.cf-section {
  padding: 40px 20px;
  background: var(--ay-white);
  position: relative;
}

.cf-team-img {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  border: 4px solid var(--ay-cf-dark);
  display: block;
  margin: 0 auto;
}

.cf-title-ribbon {
  display: inline-block;
  background: var(--ay-white);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--ay-cf-dark);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  border: 3px solid var(--ay-cf-dark);
  white-space: nowrap;
}

.cf-title-ribbon span {
  color: var(--ay-primary);
}

.cf-social {
  text-align: center;
  padding: 30px 20px;
}
.cf-social__title {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 30px;
  background: var(--ay-cf-dark);
  color: var(--ay-white);
  padding: 5px 15px;
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: 20px;
}
.cf-social__icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.cf-social__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ay-white);
  font-size: 24px;
  text-decoration: none;
}
.cf-social__icon.is-link { background: var(--ay-cf-dark); }

.cf-cause {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}
.cf-cause__left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cf-cause__left img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.cf-cause__title {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 60px;
  line-height: 0.8;
  color: var(--ay-cf-dark);
  text-transform: uppercase;
}
.cf-cause__title span {
  display: block;
  font-family: "Lobster", cursive;
  font-size: 40px;
  font-weight: 400;
  color: var(--ay-white);
  -webkit-text-stroke: 1px var(--ay-cf-dark);
  transform: rotate(-10deg) translateY(-10px);
}
.cf-cause__text {
  font-family: system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ay-ink);
}

.cf-donors {
  background: #f8f8f8;
  text-align: center;
  padding: 50px 20px;
  position: relative;
}
.cf-donors__bg-text {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 120px;
  color: rgba(0,0,0,0.03);
  text-transform: uppercase;
  line-height: 0.8;
  pointer-events: none;
}
.cf-donors__title {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 50px;
  color: var(--ay-primary);
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cf-donors__title span {
  color: var(--ay-cf-dark);
  font-size: 0.6em;
  display: block;
}

.cf-donors__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cf-donor {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cf-donor__amt {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--ay-cf-dark);
  line-height: 1;
}
.cf-donor__badge {
  font-family: "Lobster", cursive;
  color: var(--ay-primary);
  font-size: 20px;
  transform: rotate(-10deg);
  margin-top: -10px;
}

.cf-footer-msg {
  background: var(--ay-primary);
  padding: 60px 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.cf-footer-msg__text {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 8vw, 80px);
  line-height: 0.85;
  color: var(--ay-white);
  text-transform: uppercase;
  flex: 1;
}
.cf-footer-msg__text span {
  color: var(--ay-cf-dark);
}
.cf-footer-msg__img {
  width: 150px;
  margin-left: 20px;
}

.cf-thankyou {
  background: var(--ay-cf-dark) url('POPCORN_PIC/team_photo_bottom.png') center/cover no-repeat;
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
}
.cf-thankyou::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.cf-thankyou__title1 {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(50px, 10vw, 100px);
  color: transparent;
  -webkit-text-stroke: 2px var(--ay-cf-dark);
  text-transform: uppercase;
  line-height: 0.85;
  position: relative;
  z-index: 1;
}
.cf-thankyou__title2 {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 12vw, 120px);
  color: var(--ay-white);
  text-transform: uppercase;
  line-height: 0.85;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

















/* ==============================================================================================
   CROWDFUNDING PAGE
   ============================================================================================== */


/* =========================================================
   SHARE PANEL / QR
   ========================================================= */

.cf-sharePanel {
  position: absolute;
  top: clamp(22px, 4vh, 56px);
  right: max(
    clamp(24px, 4vw, 72px),
    calc((100vw - 1280px) / 2 + clamp(10px, 1.5vw, 24px))
  );
  z-index: 30;
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.4vw, 24px);
}

.cf-sharePanel__social {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cf-sharePanel__title {
  background: #ffffff;
  border: 3px solid #263140;
  padding: 7px 16px 6px;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.1vw, 44px);
  line-height: 0.9;
  text-transform: uppercase;
  color: #263140;
  white-space: nowrap;
  transform: rotate(2deg);
}

.cf-sharePanel__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 0.8vw, 14px);
  margin-top: -2px;
}

.cf-sharePanel__icon {
  --cf-share-y: 0px;
  --cf-share-scale: 1;
  --cf-share-rotate: 0deg;

  width: clamp(42px, 3.8vw, 68px);
  height: clamp(42px, 3.8vw, 68px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 4px solid #ffffff;
  background: #263140;
  color: #263140;
  text-decoration: none;
  font-size: clamp(20px, 1.8vw, 34px);
  box-shadow: 0 0 0 2.5px #263140;
  opacity: 0;
  transform:
    translateY(calc(var(--cf-share-y) + 22px))
    scale(calc(var(--cf-share-scale) * 0.82))
    rotate(calc(var(--cf-share-rotate) - 6deg));
  animation: cfShareIconIn 0.65s cubic-bezier(.2,.9,.2,1) forwards;
  transition: filter 0.18s ease;
}

.cf-sharePanel__icon:hover {
  filter: brightness(1.3);
}

.cf-sharePanel__icon:hover i {
  transform: scale(1.16);
}

.cf-sharePanel__icon i {
  transition: transform 0.18s ease;
}

.cf-sharePanel__icon--sms {
  --cf-share-y: -10px;
  --cf-share-scale: 0.95;
  --cf-share-rotate: -4deg;
  background: #32b7e8;
  color: #ffffff;
  animation-delay: 0.08s;
}

.cf-sharePanel__icon--email {
  --cf-share-y: 5px;
  --cf-share-scale: 1.1;
  --cf-share-rotate: 4deg;
  background: #f35a1f;
  color: #ffffff;
  animation-delay: 0.16s;
}

.cf-sharePanel__icon--facebook {
  --cf-share-y: -5px;
  --cf-share-scale: 1.2;
  --cf-share-rotate: -4deg;
  background: #416fe0;
  color: #ffffff;
  animation-delay: 0.24s;
}

.cf-sharePanel__icon--x {
  --cf-share-y: 0px;
  --cf-share-scale: 0.9;
  --cf-share-rotate: 4deg;
  background: #000000;
  color: #ffffff;
  animation-delay: 0.32s;
}

@keyframes cfShareIconIn {
  0% {
    opacity: 0;
    transform:
      translateY(calc(var(--cf-share-y) + 22px))
      scale(calc(var(--cf-share-scale) * 0.82))
      rotate(calc(var(--cf-share-rotate) - 6deg));
  }

  55% {
    opacity: 1;
    transform:
      translateY(calc(var(--cf-share-y) - 7px))
      scale(calc(var(--cf-share-scale) * 1.06))
      rotate(calc(var(--cf-share-rotate) + 3deg));
  }

  78% {
    opacity: 1;
    transform:
      translateY(calc(var(--cf-share-y) + 3px))
      scale(calc(var(--cf-share-scale) * 0.98))
      rotate(calc(var(--cf-share-rotate) - 1deg));
  }

  100% {
    opacity: 1;
    transform:
      translateY(var(--cf-share-y))
      scale(var(--cf-share-scale))
      rotate(var(--cf-share-rotate));
  }
}

.cf-sharePanel__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: clamp(92px, 7vw, 132px);
  overflow: visible;
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.cf-sharePanel__qr:hover {
  transform: scale(1.07) rotate(1deg);
  filter: brightness(1.03);
}

.cf-sharePanel__qrTop {
  width: 100%;
  background: #ffffff;
  border: 3px solid #263140;
  border-radius: 18px 18px 0 0;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 2;
}

.cf-sharePanel__qrImage {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

.cf-sharePanel__qrBottom {
  width: calc(100% + 24px);
  margin-top: -6px;
  background: var(--cf-hero-yellow, #f2b600);
  border: 3px solid #263140;
  padding: 8px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transform: rotate(3deg);
  z-index: 3;
}

.cf-sharePanel__qrLabel {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 0.85;
  text-transform: uppercase;
  color: #263140;
  text-align: center;
  white-space: nowrap;
}

/* Hidden on mobile, but the component still works elsewhere if reused */
@media (max-width: 767px) {
  .cf-hero > .cf-sharePanel {
    display: none;
  }
}


/* =========================================================
   INLINE SHARE PANEL — TEAM FEATURE SUBSECTION
   Reuses base .cf-sharePanel styles, but behaves as full-width content
   ========================================================= */

.cf-teamFeature__shareWrap {
  width: 100%;
  background: var(--ay-offwhite);
  padding: clamp(38px, 30vh, 58px) clamp(14px, 4vw, 32px);
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  z-index: 4;
}

.cf-sharePanel--inline {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  width: min(100%, 1024px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cf-sharePanel--inline .cf-sharePanel__social {
  align-items: flex-start;
}

.cf-sharePanel--inline .cf-sharePanel__icons {
  justify-content: flex-start;
}

.cf-sharePanel--inline .cf-sharePanel__qrBottom {
  background: var(--cf-hero-yellow, #f2b600);
}

@media (max-width: 767px) {
  .cf-teamFeature__shareWrap {
    padding: 22px 14px;
  }

  

  .cf-sharePanel--inline .cf-sharePanel__social {
    align-items: center;
  }

  .cf-sharePanel--inline .cf-sharePanel__icons {
    justify-content: center;
  }
}



/* =========================================================
   QR LIGHTBOX (SIMPLIFIED / NO OUTER SHELL)
   ========================================================= */

.cf-qrLightbox[hidden] {
  display: none;
}

.cf-qrLightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
}

.cf-qrLightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(23, 28, 36, 0.72);
  cursor: pointer;
}

/* REMOVE CARD LOOK */
.cf-qrLightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: calc(100svh - 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  padding: clamp(12px, 2vw, 20px);
  box-sizing: border-box;
}

/* FLOATING CLOSE BUTTON */
.cf-qrLightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -40%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ffffff;
  color: #263140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease;
}

.cf-qrLightbox__close:hover {
  transform: translate(40%, -40%) scale(1.08);
}

/* QR WRAPPER */
.cf-qrLightbox__imageWrap {
  width: min(100%, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* QR IS NOW THE CARD */
.cf-qrLightbox__image {
  width: 100%;
  height: auto;
  max-height: min(420px, 60svh);
  object-fit: contain;
  display: block;

  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  box-sizing: border-box;

  /* subtle elevation instead of border */
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* CTA BUTTON */
.cf-qrLightbox__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 10px 22px;
  border-radius: 20px;

  background: var(--cf-hero-yellow);
  color: #263140;
  text-decoration: none;

  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 0.9;
  text-transform: uppercase;

  transition: transform 0.18s ease;
}

.cf-qrLightbox__download:hover {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 767px) {
  .cf-qrLightbox {
    padding: 12px;
  }

  .cf-qrLightbox__dialog {
    width: 100%;
    padding: 12px;
    gap: 12px;
  }

  .cf-qrLightbox__image {
    max-height: 58svh;
  }
}










/* =========================================================
   CROWDFUNDING HERO
   ========================================================= */


   .cf-hero {
  --cf-design-width: 1920;
  --cf-hero-scale: clamp(1, calc(100vw / 1920), 1.35);
}

.cf-hero {
  --cf-hero-ink: #263140;
  --cf-hero-yellow: #f2b600;
  --cf-hero-cream: #ececec;
  --cf-hero-gold: #b89449;
  --ay-cream: #d9d2bd;
  --cf-hero-radius-xl: clamp(20px, 2vw, 32px);
  --cf-hero-radius-lg: clamp(16px, 1.6vw, 26px);
  --cf-hero-radius-md: clamp(14px, 1.3vw, 22px);
  --cf-hero-radius-sm: clamp(12px, 1vw, 18px);
  --cf-dock-height: 180px;
  --cf-hero-main-height: 420px;

  background:
    url("CROWDFUNDING_PIC/equipment.webp") center / cover repeat,
    var(--ay-tile-bg);

  padding: clamp(8px, 1.5vh, 24px) clamp(10px, 1.5vw, 24px);

  height: calc(100svh - var(--cf-dock-height));
  min-height: calc(100svh - var(--cf-dock-height));

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  overflow: hidden;
}

.cf-hero-progress-wrap {
  width: 100%;
  flex: 0 0 auto;
  margin-bottom: 0;
  position: relative;
  z-index: 20;
}


/* =========================================================
   HERO MAIN CONTENT
   ========================================================= */

.cf-hero-main {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  margin-bottom: clamp(6px, 1vh, 14px);
  flex: 1 1 auto;
  min-height: 0;
  height: var(--cf-hero-main-height);
  max-height: var(--cf-hero-main-height);
  display: flex;
  overflow: hidden;
}

.cf-hero-main__layout {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  align-items: end;
  gap: clamp(10px, 2vw, 34px);
  overflow: hidden;
}

.cf-hero-figureBlock {
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: start;
  width: min(28vw, calc(var(--cf-hero-main-height) * 0.75), 390px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.cf-hero-bubble {
  width: min(100%, 500px);
  z-index: 99;
  margin-bottom: clamp(-30px, -2.5vh, -12px);
  margin-left: 0;
  flex: 0 0 auto;
}

.cf-hero-bubble__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cf-hero-kidMedia {
  width: min(85%, 340px);
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.cf-hero-kidImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.cf-hero-titleBlock {
  position: relative;
  z-index: 4;
  min-width: 0;
  align-self: end;
  margin-left: clamp(-70px, -25vw, -30px);
  margin-bottom: clamp(0px, 0.8vh, 8px);
}

.cf-hero-titleSupport,
.cf-hero-titleName {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #263140;
  letter-spacing: 0.01em;
  text-shadow:
    0.045em 0 0 #ffffff,
    -0.045em 0 0 #ffffff,
    0 0.045em 0 #ffffff,
    0 -0.045em 0 #ffffff,
    0.035em 0.035em 0 #ffffff,
    -0.035em -0.035em 0 #ffffff,
    0.035em -0.035em 0 #ffffff,
    -0.035em 0.035em 0 #ffffff;
}

.cf-hero-titleSupport {
  font-size: clamp(67px, min(8.4vw, 13.2vh), 142px);
  line-height: 0.84;
  white-space: nowrap;
}

.cf-hero-titleName {
  font-size: clamp(86px, min(10.6vw, 18.2vh), 220px);
  line-height: 0.84;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
}

/* =========================================================
   PROGRESS BAR WRAPPER
   ========================================================= */

.cf-donation-bar {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.cf-bar-wrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;

  --cf-bar-border: clamp(3px, 0.22vw, 3.2px);

  /* base (mobile / tablet) */
  --cf-bar-height: clamp(64px, 6.2vw, 92.8px);

  --cf-bar-inner-pad: clamp(6px, 0.55vw, 8px);
  --cf-goal-offset-right: clamp(12px, 1.4vw, 20.8px);
  --cf-bar-top-pad: calc(var(--cf-bar-height) * 0.5);

  position: relative;
  width: 100%;
  padding-top: var(--cf-bar-top-pad);
  box-sizing: border-box;
}

/* desktop boost (+20%) */
@media (min-width: 1025px) {
  .cf-bar-wrapper {
    --cf-bar-height: clamp(75px, 8vw, 115px);
  }
}

.cf-bar-bg {
  width: 100%;
  height: var(--cf-bar-height);
  background: white;
  border: clamp(3px, 0.3vw, 4px) solid #263140;
  border-radius: var(--cf-hero-radius-xl);
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  padding: var(--cf-bar-inner-pad);
}

.cf-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--cf-hero-yellow);
  border-radius: clamp(12px, 1.2vw, 17.6px);
  transition: width 0.6s ease;
}



/* =========================================================
   PROGRESS BAR BADGES
   ========================================================= */

.cf-bar-badgeGroup {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: block;
  transition: none;
  pointer-events: none;
  max-width: 100%;
}

.cf-bar-badge {
  position: absolute;
  top: 0;
  left: clamp(10px, 1.4vw, 22px);
  z-index: 1;
  pointer-events: none;
  flex: 0 0 auto;
}

.cf-bar-badge__text {
  display: inline-block;
  border: var(--cf-bar-border) solid #2b2730;
  padding: calc(var(--cf-bar-height) * 0.08) calc(var(--cf-bar-height) * 0.15);
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: calc(var(--cf-bar-height) * 0.38);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  box-sizing: border-box;
}

.cf-bar-badge--ends-soon .cf-bar-badge__text {
  background: #f35a1f;
  color: #ffffff;
  transform: rotate(-6deg);
}

.cf-bar-label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: left 0.6s ease;
  pointer-events: none;
  flex: 0 0 auto;
}

.cf-bar-label::before {
  content: none;
}

.cf-bar-label span {
  display: inline-block;
  background: var(--cf-hero-yellow);
  border: var(--cf-bar-border) solid #2b2730;
  padding: calc(var(--cf-bar-height) * 0.08) calc(var(--cf-bar-height) * 0.15);
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: calc(var(--cf-bar-height) * 0.38);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #18365a;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(3deg);
  box-sizing: border-box;
}



/* =========================================================
   PROGRESS BAR AMOUNTS
   ========================================================= */

.cf-amount-current {
  position: absolute;
  top: calc(var(--cf-bar-top-pad) + (var(--cf-bar-height) / 2));
  left: 0;
  transform: translate(-50%, -50%);
  margin-left: 20px;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: calc(var(--cf-bar-height) * 0.65);
  line-height: 0.85;
  color: #ffffff;
  text-shadow:
    calc(var(--cf-bar-height) * 0.03) 0 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.03) 0 0 #2f3a49,
    0 calc(var(--cf-bar-height) * 0.03) 0 #2f3a49,
    0 calc(var(--cf-bar-height) * -0.03) 0 #2f3a49,
    calc(var(--cf-bar-height) * 0.025) calc(var(--cf-bar-height) * 0.025) 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.025) calc(var(--cf-bar-height) * -0.025) 0 #2f3a49,
    calc(var(--cf-bar-height) * 0.025) calc(var(--cf-bar-height) * -0.025) 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.025) calc(var(--cf-bar-height) * 0.025) 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.06) calc(var(--cf-bar-height) * 0.06) 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.04) calc(var(--cf-bar-height) * 0.04) 0 #2f3a49;
}

.cf-bar-info {
  position: absolute;
  top: calc(var(--cf-bar-top-pad) + (var(--cf-bar-height) / 2));
  right: var(--cf-goal-offset-right);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cf-amount-goal {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.cf-amount-goal__label,
.cf-amount-goal__value {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  color: #ffffff;
}

.cf-amount-goal__label {
  font-size: calc(var(--cf-bar-height) * 0.3);
  text-shadow:
    calc(var(--cf-bar-height) * 0.02) 0 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.02) 0 0 #2f3a49,
    0 calc(var(--cf-bar-height) * 0.02) 0 #2f3a49,
    0 calc(var(--cf-bar-height) * -0.02) 0 #2f3a49,
    calc(var(--cf-bar-height) * 0.015) calc(var(--cf-bar-height) * 0.015) 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.015) calc(var(--cf-bar-height) * -0.015) 0 #2f3a49,
    calc(var(--cf-bar-height) * 0.015) calc(var(--cf-bar-height) * -0.015) 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.015) calc(var(--cf-bar-height) * 0.015) 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.035) calc(var(--cf-bar-height) * 0.035) 0 #2f3a49;
}

.cf-amount-goal__value {
  font-size: calc(var(--cf-bar-height) * 0.45);
  text-shadow:
    calc(var(--cf-bar-height) * 0.03) 0 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.03) 0 0 #2f3a49,
    0 calc(var(--cf-bar-height) * 0.03) 0 #2f3a49,
    0 calc(var(--cf-bar-height) * -0.03) 0 #2f3a49,
    calc(var(--cf-bar-height) * 0.025) calc(var(--cf-bar-height) * 0.025) 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.025) calc(var(--cf-bar-height) * -0.025) 0 #2f3a49,
    calc(var(--cf-bar-height) * 0.025) calc(var(--cf-bar-height) * -0.025) 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.025) calc(var(--cf-bar-height) * 0.025) 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.05) calc(var(--cf-bar-height) * 0.05) 0 #2f3a49,
    calc(var(--cf-bar-height) * -0.03) calc(var(--cf-bar-height) * 0.03) 0 #2f3a49;
}



/* =========================================================
   SUPPORT DOCK WRAPPER
   ========================================================= */

.cf-support-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 0.6vw 1vw 1vw;
  background-color: var(--ay-tile-bg);
  border-radius: 20px 20px 0 0;
}

.cf-support-dock__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.cf-support-dock__heading {
  margin: 0 0 clamp(8px, 1vw, 14px);
  font-family: "Saira Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 1.2vw, 26px);
  line-height: 1.1;
  color: #171c24;
}

.cf-support-dock__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(8px, 1vw, 14px);
  width: 100%;
}

@media (min-width: 1025px) {
  .cf-support-dock__grid {
    flex-wrap: nowrap;
  }
}

.cf-support-dock.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(18px) !important;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0.18s;
}



/* =========================================================
   SUPPORT CARDS
   ========================================================= */

.cf-support-card {
  flex: 1 1 clamp(80px, 8vw, 200px);
  border: 0;
  background: white;
  border-radius: var(--cf-hero-radius-lg);
  height: auto;
  padding: 5px 5px 10px 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  opacity: 0;
  transform: translateY(46px) scale(0.94) rotate(-2deg);
  animation: cfSupportCardIn 0.75s cubic-bezier(.2,.9,.2,1) forwards;
  will-change: transform, opacity, box-shadow, filter;
  box-shadow:
    0 0 0 0 rgba(38, 49, 64, 0),
    0 8px 18px rgba(38, 49, 64, 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.cf-support-card:nth-child(1) { animation-delay: 0.04s; }
.cf-support-card:nth-child(2) { animation-delay: 0.11s; }
.cf-support-card:nth-child(3) { animation-delay: 0.18s; }
.cf-support-card:nth-child(4) { animation-delay: 0.25s; }
.cf-support-card:nth-child(5) { animation-delay: 0.32s; }
.cf-support-card:nth-child(6) { animation-delay: 0.39s; }
.cf-support-card:nth-child(7) { animation-delay: 0.46s; }

.cf-support-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 0 0 2px rgba(38, 49, 64, 0.08),
    0 14px 28px rgba(38, 49, 64, 0.18);
  filter: brightness(1.01);
}

.cf-support-card:active {
  transform: translateY(0) scale(0.96);
  box-shadow:
    0 0 0 1px rgba(38, 49, 64, 0.06),
    0 6px 12px rgba(38, 49, 64, 0.12);
  filter: brightness(0.99);
}

.cf-support-card__title {
  width: 100%;
  text-align: center;
  color: var(--cf-hero-gold);
  text-transform: uppercase;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 1.75vw, 38px);
  line-height: 0.95;
  margin-bottom: clamp(6px, 0.8vw, 10px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cf-support-card__amount {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  line-height: 0.85;
  font-size: clamp(36px, 4vw, 70px);
  text-shadow:
    0.05em 0 0 #2f3a49,
    -0.05em 0 0 #2f3a49,
    0 0.05em 0 #2f3a49,
    0 -0.05em 0 #2f3a49,
    0.04em 0.04em 0 #2f3a49,
    -0.04em -0.04em 0 #2f3a49,
    0.04em -0.04em 0 #2f3a49,
    -0.04em 0.04em 0 #2f3a49,
    -0.09em 0.09em 0 #2f3a49,
    -0.06em 0.06em 0 #2f3a49;
  transition: text-shadow 0.18s ease;
}

.cf-support-card:hover .cf-support-card__amount {
  text-shadow:
    0.05em 0 0 #2f3a49,
    -0.05em 0 0 #2f3a49,
    0 0.05em 0 #2f3a49,
    0 -0.05em 0 #2f3a49,
    0.04em 0.04em 0 #2f3a49,
    -0.04em -0.04em 0 #2f3a49,
    0.04em -0.04em 0 #2f3a49,
    -0.04em 0.04em 0 #2f3a49,
    -0.12em 0.12em 0 #2f3a49,
    -0.08em 0.08em 0 #2f3a49;
}



/* =========================================================
   FEATURED SUPPORT CARD
   ========================================================= */

.cf-support-card--featured {
  flex-grow: 1.18;
  background: var(--cf-hero-yellow);
  border: clamp(1px, 0.3vw, 2px) solid #263140;
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow:
    0 0 0 2px #2f3a49,
    0 6px 0 #2f3a49,
    0 10px 18px rgba(47, 58, 73, 0.25);
  animation:
    cfSupportCardIn 0.75s cubic-bezier(.2,.9,.2,1) 0.18s forwards,
    cfFeaturedNudge 2.3s ease-in-out 1.4s infinite;
}

.cf-support-card--featured:hover {
  animation-play-state: paused, paused;
  transform: rotate(-4deg) translateY(-4px) scale(1.02);
  box-shadow:
    0 0 0 2px #2f3a49,
    0 10px 0 #2f3a49,
    0 18px 30px rgba(47, 58, 73, 0.3);
  filter: brightness(1.01);
}

.cf-support-card--featured:active {
  animation-play-state: paused, paused;
  transform: rotate(-4deg) translateY(0) scale(0.96);
  box-shadow:
    0 0 0 2px #2f3a49,
    0 4px 0 #2f3a49,
    0 8px 14px rgba(47, 58, 73, 0.2);
  filter: brightness(0.99);
}

.cf-support-card--featured .cf-support-card__title {
  color: #111821;
}

.cf-support-card__pill {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -70%) rotate(0deg);
  padding: 6px 14px 5px;
  border-radius: 999px;
  border: 3px solid #263140;
  background: #ffffff;
  color: #111821;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 22px);
  line-height: 0.9;
  white-space: nowrap;
  z-index: 2;
  animation: cfFeaturedPillPop 2.3s ease-in-out 1.4s infinite;
}

.cf-support-card--featured:hover .cf-support-card__pill,
.cf-support-card--featured:active .cf-support-card__pill {
  animation-play-state: paused;
}

.cf-support-card__note {
  display: none;
}



/* =========================================================
   CUSTOM SUPPORT CARD - AMOUNT
   ========================================================= */

.cf-support-card--custom {
  flex-grow: 1.72;
  min-width: clamp(190px, 18vw, 300px);
}

.cf-support-card--custom .cf-support-card__amount {
  font-size: clamp(36px, 4vw, 70px);
}



/* =========================================================
   SUPPORT CARD ANIMATIONS
   ========================================================= */

@keyframes cfSupportCardIn {
  0% {
    opacity: 0;
    transform: translateY(46px) scale(0.94) rotate(-2deg);
  }
  55% {
    opacity: 1;
    transform: translateY(-8px) scale(1.01) rotate(1deg);
  }
  75% {
    opacity: 1;
    transform: translateY(4px) scale(0.995) rotate(-0.5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes cfFeaturedNudge {
  0%, 100% {
    transform: rotate(-4deg) translateY(0) scale(1);
  }
  20% {
    transform: rotate(-2.8deg) translateY(-4px) scale(1.02);
  }
  40% {
    transform: rotate(-4.8deg) translateY(0) scale(1);
  }
  60% {
    transform: rotate(-3deg) translateY(-2px) scale(1.015);
  }
}

@keyframes cfFeaturedPillPop {
  0%, 100% {
    transform: translate(-50%, -70%) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(-50%, -76%) rotate(2deg) scale(1.05);
  }
  40% {
    transform: translate(-50%, -70%) rotate(-1deg) scale(1);
  }
  60% {
    transform: translate(-50%, -74%) rotate(1deg) scale(1.03);
  }
}


body.is-support-active .cf-support-dock {
  background: var(--ay-primary);
}


/* =========================================================
   TABLET AND DOWN
   ========================================================= */

@media (max-width: 1024px) {
  .cf-support-dock__heading {
    text-align: center;
  }

  .cf-bar-badgeGroup {
    gap: 8px;
  }

  .cf-support-card,
  .cf-support-card--featured,
  .cf-support-card--custom {
    flex: 1 1 clamp(150px, 24vw, 220px);
    min-width: clamp(150px, 24vw, 220px);
  }

  .cf-support-card--featured:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .cf-support-card--featured:active {
    transform: translateY(0) scale(0.96);
  }

  .cf-support-card__pill {
    transform: translate(-50%, -50%) rotate(2deg);
  }

  @keyframes cfFeaturedNudge {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    20% {
      transform: translateY(-4px) scale(1.02);
    }
    40% {
      transform: translateY(0) scale(1);
    }
    60% {
      transform: translateY(-2px) scale(1.015);
    }
  }

  @keyframes cfFeaturedPillPop {
    0%, 100% {
      transform: translate(-50%, -50%) rotate(2deg) scale(1);
    }
    20% {
      transform: translate(-50%, -56%) rotate(3deg) scale(1.05);
    }
    40% {
      transform: translate(-50%, -50%) rotate(1deg) scale(1);
    }
    60% {
      transform: translate(-50%, -54%) rotate(2deg) scale(1.03);
    }
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .cf-hero {
    padding: 8px;
  }

  .cf-hero-main {
    margin-bottom: 6px;
    overflow: hidden;
  }

  .cf-hero-main__layout {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    gap: 0;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .cf-hero-figureBlock {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: end;
    justify-items: end;
    overflow: visible;
    padding-top: 0;
  }

.cf-hero-bubble {
  grid-row: 1;

  width: min(88vw, 500px, calc(var(--cf-hero-main-height) * 0.95));
  height: auto;

  /* height-aware scaling (fixes cutoff issue) */
  max-height: min(30vh, calc(var(--cf-hero-main-height) * 0.38));

  aspect-ratio: 440.36 / 233.94;

  margin: 3vh auto clamp(-18px, -3vw, -8px) 0;

  align-self: start;
  justify-self: start;

  transform: rotate(-6deg);
  z-index: 5;
}

  .cf-hero-bubble__svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .cf-hero-kidMedia {
    grid-row: 2;
    width: min(100vw, 420px, calc(var(--cf-hero-main-height) * 0.5));
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: clamp(-62px, -12vw, -34px);
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
  }

  .cf-hero-kidImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

   .cf-hero-titleBlock {
    width: 100%;
    margin-left: 0;
    margin-top: clamp(-48px, -7vw, -22px);
    margin-bottom: 0;
    z-index: 6;
  }

  .cf-hero-titleSupport {
    font-size: clamp(48px, 12vw, 78px);
    line-height: 1;
    white-space: nowrap;
  }

  .cf-hero-titleName {
    font-size: clamp(75px, 18vw, 130px);
    line-height: 0.84;
    white-space: normal;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .cf-support-dock {
    padding: 8px;
  }

  .cf-bar-badgeGroup {
    width: 100%;
    left: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    padding-inline: 0;
  }

  .cf-bar-badge--ends-soon {
    position: relative;
    left: 0;
  }

  .cf-bar-label {
    position: relative;
    left: 0 !important;
    margin-left: auto;
  }

  .cf-support-dock__heading {
    font-size: clamp(14px, 4vw, 20px);
    margin-bottom: 6px;
    text-align: center;
  }

  .cf-support-dock__grid {
    gap: 6px;
  }

  .cf-support-card,
  .cf-support-card--featured,
  .cf-support-card--custom {
    flex: 1 1 calc((100% - 18px) / 4);
    min-width: calc((100% - 18px) / 4);
    padding: 4px 4px 8px;
  }

  .cf-support-card--featured {
    animation:
      cfSupportCardIn 0.75s cubic-bezier(.2,.9,.2,1) 0.18s forwards,
      cfFeaturedNudgeMobile 2.3s ease-in-out 1.4s infinite;
  }

  .cf-support-card--featured:hover {
    animation-play-state: paused, paused;
    transform: rotate(-2deg) translateY(-3px) scale(1.02);
  }

  .cf-support-card--featured:active {
    animation-play-state: paused, paused;
    transform: rotate(-2deg) translateY(0) scale(0.96);
  }

  .cf-support-card__title {
    font-size: clamp(16px, 3.2vw, 26px);
    margin-bottom: 3px;
    line-height: 0.9;
  }

  .cf-support-card__amount,
  .cf-support-card--custom .cf-support-card__amount {
    font-size: clamp(36px, 8.2vw, 54px);
    line-height: 0.82;
  }

  .cf-support-card__pill {
    font-size: clamp(11px, 2.8vw, 16px);
    padding: 4px 10px 3px;
    border-width: 2px;
  }

  @keyframes cfFeaturedNudgeMobile {
    0%, 100% {
      transform: rotate(-2deg) translateY(0) scale(1);
    }

    20% {
      transform: rotate(-1deg) translateY(-3px) scale(1.02);
    }

    40% {
      transform: rotate(-2.6deg) translateY(0) scale(1);
    }

    60% {
      transform: rotate(-1.5deg) translateY(-2px) scale(1.015);
    }
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .cf-support-card,
  .cf-support-card--featured,
  .cf-support-card__pill {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  

  .cf-support-card:hover,
  .cf-support-card:active,
  .cf-support-card--featured:hover,
  .cf-support-card--featured:active {
    transform: none !important;
    box-shadow: none !important;
    filter: none !important;
  }

  .cf-support-card:hover .cf-support-card__amount {
    text-shadow:
      0.05em 0 0 #2f3a49,
      -0.05em 0 0 #2f3a49,
      0 0.05em 0 #2f3a49,
      0 -0.05em 0 #2f3a49,
      0.04em 0.04em 0 #2f3a49,
      -0.04em -0.04em 0 #2f3a49,
      0.04em -0.04em 0 #2f3a49,
      -0.04em 0.04em 0 #2f3a49,
      -0.09em 0.09em 0 #2f3a49,
      -0.06em 0.06em 0 #2f3a49;
  }
}


/* =========================================================
   TEAM FEATURE / IMAGE OR VIDEO
   FINAL BASE VERSION
   ========================================================= */

.cf-teamFeature {
  width: 100%;
  padding: clamp(34px, 5vw, 70px) clamp(14px, 4vw, 32px) clamp(28px, 4vw, 56px);
  box-sizing: border-box;
  background: var(--ay-offwhite);
  position: relative;
  z-index: 3;
}

.cf-teamFeature__inner {
  width: min(100%, 1024px);
  margin: 0 auto;
  position: relative;
}

.cf-teamFeature__top {
  position: relative;
  z-index: 3;
  min-height: clamp(86px, 12vw, 132px);
  margin-bottom: clamp(-46px, -4.2vw, -30px);
  pointer-events: none;
}

.cf-teamFeature__brand {
  position: absolute;
  left: clamp(-42px, -3vw, -12px);
  top: clamp(2px, 1vw, 12px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 16px);
  max-width: calc(100% - 330px);
  min-width: 0;
  pointer-events: auto;
}

.cf-teamFeature__logo {
  width: clamp(82px, 10vw, 116px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
  border: 4px solid #ffffff;
  border-radius: clamp(20px, 2vw, 28px);
  box-sizing: border-box;
  flex: 0 0 auto;
  transform: rotate(-6deg);
  box-shadow:
    4px 0 0 #263140,
    -4px 0 0 #263140,
    0 4px 0 #263140,
    0 -4px 0 #263140,
    3px 3px 0 #263140,
    -3px 3px 0 #263140,
    3px -3px 0 #263140,
    -3px -3px 0 #263140,
    -6px 6px 0 #263140;
}

.cf-teamFeature__title {
  margin: 0;
  color: #263140;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(43px, 6.3vw, 76px);
  line-height: 0.8;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  hyphens: auto;
  text-shadow:
    5px 0 0 #ffffff,
    -5px 0 0 #ffffff,
    0 5px 0 #ffffff,
    0 -5px 0 #ffffff,
    4px 4px 0 #ffffff,
    -4px 4px 0 #ffffff,
    4px -4px 0 #ffffff,
    -4px -4px 0 #ffffff;
}

.cf-teamFeature__counter {
  position: absolute;
  right: clamp(-32px, -2vw, -10px);
  top: 0;
  width: clamp(250px, 29vw, 340px);
  transform: rotate(-5deg);
  transform-origin: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  pointer-events: auto;
}

.cf-teamFeature[data-show-counter="false"] .cf-teamFeature__counter {
  /* !important so the entire counter group (We Raised + mini bar + OUR GOAL)
     stays hidden even against the later, equal-specificity mobile rules that
     re-declare display on .cf-teamFeature__counter. */
  display: none !important;
}

.cf-teamFeature__raisedText {
  color: #263140;
  font-family: "Lobster", cursive;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 0.8;
  text-align: center;
  white-space: nowrap;
  text-shadow:
    4px 0 0 #ffffff,
    -4px 0 0 #ffffff,
    0 4px 0 #ffffff,
    0 -4px 0 #ffffff,
    3px 3px 0 #ffffff,
    -3px 3px 0 #ffffff,
    3px -3px 0 #ffffff,
    -3px -3px 0 #ffffff;
}

.cf-teamFeature__miniBar {
  --cf-team-mini-height: clamp(42px, 5vw, 60px);
  --cf-team-mini-pad: clamp(6px, 0.8vw, 8px);
  position: relative;
  width: 100%;
  height: var(--cf-team-mini-height);
  background: #ffffff;
  border: clamp(3px, 0.3vw, 4px) solid #263140;
  border-radius: clamp(18px, 2vw, 26px);
  padding: var(--cf-team-mini-pad);
  box-sizing: border-box;
  overflow: hidden;
}

.cf-teamFeature__miniFill {
  width: 0%;
  height: 100%;
  background: var(--cf-hero-yellow, #f2b600);
  border-radius: clamp(12px, 1.4vw, 18px);
  transition: width 0.6s ease;
}

.cf-teamFeature__miniAmount {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 2;
  white-space: nowrap;
  pointer-events: none;
  color: #ffffff;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: calc(var(--cf-team-mini-height) * 0.72);
  text-shadow:
    3px 0 0 #263140,
    -3px 0 0 #263140,
    0 3px 0 #263140,
    0 -3px 0 #263140,
    2px 2px 0 #263140,
    -2px 2px 0 #263140,
    2px -2px 0 #263140,
    -2px -2px 0 #263140,
    -4px 4px 0 #263140;
}

.cf-teamFeature__goalText {
  color: #263140;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3.1vw, 38px);
  text-align: center;
  text-transform: uppercase;
  line-height: 0.9;
  white-space: nowrap;
  text-shadow:
    3px 0 0 #ffffff,
    -3px 0 0 #ffffff,
    0 3px 0 #ffffff,
    0 -3px 0 #ffffff;
}

.cf-teamFeature__mediaBox {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ffffff;
  border: 6px solid #ffffff;
  box-shadow: 0 0 0 3px #263140;
  border-radius: clamp(30px, 4vw, 52px);
}

.cf-teamFeature__image,
.cf-teamFeature__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cf-teamFeature__video {
  background: #000000;
  pointer-events: none;
}

.cf-teamFeature__play,
.cf-teamFeature__mute {
  position: absolute;
  z-index: 4;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  text-shadow:
    5px 0 0 #263140,
    -5px 0 0 #263140,
    0 5px 0 #263140,
    0 -5px 0 #263140,
    4px 4px 0 #263140,
    -4px 4px 0 #263140,
    4px -4px 0 #263140,
    -4px -4px 0 #263140;
}

.cf-teamFeature__mute {
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(22px, 3vw, 38px);
  font-size: clamp(44px, 5vw, 66px);
}

.cf-teamFeature__play {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(70px, 11vw, 116px);
}

/* Transparent click target over the video that toggles pause/play. Sits
   below the play/mute buttons (z-index) and is only active while playing. */
.cf-teamFeature__pauseHit {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cf-teamFeature.has-video.is-playing .cf-teamFeature__pauseHit {
  display: block;
}

/* Show the play button until the user starts the video; then reveal the
   mute toggle. Applies on desktop; the mobile block below mirrors this. */
.cf-teamFeature.has-video .cf-teamFeature__play {
  display: inline-flex;
}

.cf-teamFeature.has-video.is-playing .cf-teamFeature__play {
  display: none;
}

.cf-teamFeature.has-video.is-playing .cf-teamFeature__mute {
  display: inline-flex;
}

/* =========================================================
   TEAM FEATURE — SCROLL ANIMATION
   Desktop: sticky cinematic
   Mobile: natural row layout, fly-in only
   ========================================================= */

.cf-teamFeature[data-team-feature-scroll] {
  --team-media-scale: 0.52;
  --team-brand-x: -220px;
  --team-counter-x: 220px;
  --team-top-opacity: 0;
  --team-sticky-top: 80px;

  min-height: clamp(1600px, 280vh, 2400px);
  overflow-x: clip;
}

.cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__inner {
  position: sticky;
  top: var(--team-sticky-top);
  z-index: 2;
}

.cf-teamFeature[data-team-feature-scroll].is-scroll-ready .cf-teamFeature__mediaBox {
  transform: scale(var(--team-media-scale));
  transform-origin: center center;
  will-change: transform;
}

.cf-teamFeature[data-team-feature-scroll].is-scroll-ready .cf-teamFeature__brand {
  transform: translateX(var(--team-brand-x));
  opacity: var(--team-top-opacity);
  will-change: transform, opacity;
}

.cf-teamFeature[data-team-feature-scroll].is-scroll-ready .cf-teamFeature__counter {
  transform: translateX(var(--team-counter-x)) rotate(-5deg);
  opacity: var(--team-top-opacity);
  will-change: transform, opacity;
}

/* =========================================================
   MOBILE
   Logo | centered 2-line title | We Raised + progress
   ========================================================= */

@media (max-width: 767px) {
  .cf-teamFeature {
    padding: 28px 10px 38px;
  }

  .cf-teamFeature__top,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) clamp(96px, 28vw, 122px);
    align-items: center;
    column-gap: 8px;

    min-height: auto;
    margin-bottom: 12px;
    pointer-events: none;
  }

  .cf-teamFeature__brand,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__brand {
    display: contents;
    position: static;
    left: auto;
    top: auto;
    max-width: none;
    margin: 0;
    pointer-events: auto;
  }

  .cf-teamFeature__logo,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__logo {
    width: clamp(48px, 13vw, 58px);
    border-width: 2px;
    border-radius: 14px;
    transform: rotate(-6deg);
  }

  .cf-teamFeature__title,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__title {
    min-width: 0;
    margin: 0;

    font-size: clamp(21px, 6.2vw, 30px);
    line-height: 0.82;
    letter-spacing: -0.04em;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
    word-break: normal;
    hyphens: auto;

    text-align: left;
    padding: 0px 6px;

    text-shadow:
      2px 0 0 #ffffff,
      -2px 0 0 #ffffff,
      0 2px 0 #ffffff,
      0 -2px 0 #ffffff,
      1.5px 1.5px 0 #ffffff,
      -1.5px 1.5px 0 #ffffff,
      1.5px -1.5px 0 #ffffff,
      -1.5px -1.5px 0 #ffffff;
  }

  .cf-teamFeature__counter,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__counter {
    position: static;
    right: auto;
    top: auto;

    width: 100%;
    margin: 0;

    transform: rotate(-4deg);
    transform-origin: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;

    pointer-events: auto;
  }

  .cf-teamFeature__raisedText,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__raisedText {
    display: block;
    font-size: clamp(18px, 5.2vw, 24px);
    line-height: 0.85;
    white-space: nowrap;

    text-shadow:
      2px 0 0 #ffffff,
      -2px 0 0 #ffffff,
      0 2px 0 #ffffff,
      0 -2px 0 #ffffff;
  }

  .cf-teamFeature__miniBar,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__miniBar {
    --cf-team-mini-height: clamp(25px, 7vw, 32px);
    --cf-team-mini-pad: 2px;

    width: 100%;
    border-width: 2px;
    border-radius: 12px;
    padding: var(--cf-team-mini-pad);
  }

  .cf-teamFeature__miniFill,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__miniFill {
    border-radius: 9px;
  }

  .cf-teamFeature__miniAmount,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__miniAmount {
    font-size: calc(var(--cf-team-mini-height) * 0.68);

    text-shadow:
      2px 0 0 #263140,
      -2px 0 0 #263140,
      0 2px 0 #263140,
      0 -2px 0 #263140,
      1px 1px 0 #263140,
      -1px 1px 0 #263140,
      1px -1px 0 #263140,
      -1px -1px 0 #263140;
  }

  .cf-teamFeature__goalText,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__goalText {
    font-size: clamp(11px, 3.4vw, 15px);
    line-height: 0.9;
    margin-top: -3px;
    white-space: nowrap;

    text-shadow:
      1.5px 0 0 #ffffff,
      -1.5px 0 0 #ffffff,
      0 1.5px 0 #ffffff,
      0 -1.5px 0 #ffffff;
  }

  .cf-teamFeature__mediaBox,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__mediaBox {
    margin-top: 0;
    border-width: 3px;
    border-radius: 26px;
    box-shadow: 0 0 0 2px #263140;
  }

  .cf-teamFeature[data-team-feature-scroll] {
    --team-media-scale: 0.84;
    --team-brand-x: -70px;
    --team-counter-x: 70px;
    --team-top-opacity: 0;

    min-height: auto;
    overflow-x: clip;
  }

  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__inner {
    position: relative;
    top: auto;
  }

  .cf-teamFeature[data-team-feature-scroll].is-scroll-ready .cf-teamFeature__brand {
    transform: translateX(var(--team-brand-x));
    opacity: var(--team-top-opacity);
  }

  .cf-teamFeature[data-team-feature-scroll].is-scroll-ready .cf-teamFeature__counter {
    transform: translateX(var(--team-counter-x)) rotate(-4deg);
    opacity: var(--team-top-opacity);
  }

  .cf-teamFeature.has-video .cf-teamFeature__mute {
    display: none;
  }

  .cf-teamFeature.has-video .cf-teamFeature__play {
    display: inline-flex;
  }

  .cf-teamFeature.has-video.is-playing .cf-teamFeature__play {
    display: none;
  }

  .cf-teamFeature.has-video.is-playing .cf-teamFeature__mute {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cf-teamFeature[data-team-feature-scroll] {
    min-height: auto;
  }

  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__inner {
    position: relative;
    top: auto;
  }

  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__mediaBox,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__brand,
  .cf-teamFeature[data-team-feature-scroll] .cf-teamFeature__counter {
    transform: none !important;
    opacity: 1 !important;
  }
}



/* =========================================================
   SUPPORT TRANSITION — T-SHIRT SVG OBJECT
   Makes external SVG behave like old PNG bowl
   ========================================================= */

.ff-fundraiser .support-transition .support-shirtWrap {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;

  width: clamp(200px, 26vw, 360px);
  aspect-ratio: 669.5 / 794.48;
  display: block;
  
}

.ff-fundraiser .support-transition object.support-shirtSvg,
.ff-fundraiser .support-transition .support-shirtSvg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.18));
}

/* Match original support-transition mobile/tablet breakpoint */
@media (max-width: 900px) {
  .ff-fundraiser .support-transition .support-shirtWrap {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
    align-self: center;

    width: min(84vw, 320px);
    aspect-ratio: 669.5 / 794.48;
  }

  .ff-fundraiser .support-transition object.support-shirtSvg,
  .ff-fundraiser .support-transition .support-shirtSvg {
    width: 100%;
    height: 100%;
  }
}



/* =========================================================
   DONOR COMPONENT CARD
   ========================================================= */

.cf-donorCard {
  --cf-donor-scale: 0.3;
  --cf-donor-ink: #263140;
  --cf-donor-yellow: #f2b600;
  /* 1st-place medal gold. Kept separate from --cf-donor-yellow (which the
     campaign theme recolors to the brand primary) so the rank-1 medal stays
     gold — a semantic pair with the fixed silver/bronze medals below. */
  --cf-donor-gold: #f2b600;
  --cf-donor-silver: #c8ced0;
  --cf-donor-bronze: #e9a18f;
  --cf-donor-name-fill: #f2f2f2;
  --cf-donor-rank-color: transparent;

  container-type: inline-size;
  isolation: isolate;
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  width: 100%;
  min-width: 0;
  padding: calc(1cqw * var(--cf-donor-scale));
  color: var(--cf-donor-ink);
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(24px) scale(0.88) rotate(-1deg);
}

.cf-donorCard.is-rank-1 {
  --cf-donor-name-fill: var(--cf-donor-gold);
  --cf-donor-rank-color: var(--cf-donor-gold);
}

.cf-donorCard.is-rank-2 {
  --cf-donor-name-fill: var(--cf-donor-silver);
  --cf-donor-rank-color: var(--cf-donor-silver);
}

.cf-donorCard.is-rank-3 {
  --cf-donor-name-fill: var(--cf-donor-bronze);
  --cf-donor-rank-color: var(--cf-donor-bronze);
}

.cf-donorCard__top {
  position: relative;
  z-index: auto;
  height: calc(62cqw * var(--cf-donor-scale));
  display: grid;
  place-items: end center;
  margin-bottom: calc(10cqw * var(--cf-donor-scale));
  overflow: visible;
}

.cf-donorCard__pill {
  position: relative;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: max-content;
  justify-self: center;
  gap: calc(9cqw * var(--cf-donor-scale));
  row-gap: calc(3cqw * var(--cf-donor-scale));
  padding:
    calc(3cqw * var(--cf-donor-scale))
    calc(6cqw * var(--cf-donor-scale));
  border-radius: 999px;
  background: var(--cf-donor-yellow);
  border: calc(2.5cqw * var(--cf-donor-scale)) solid #ffffff;
  color: #111;
  transform: rotate(-3deg);
  box-shadow:
    calc(-1cqw * var(--cf-donor-scale))
    calc(1.2cqw * var(--cf-donor-scale)) 0 rgba(38, 49, 64, 0.14),
    0 calc(0.45cqw * var(--cf-donor-scale)) 0 rgba(38, 49, 64, 0.12);
  overflow: visible;
}

.cf-donorCard__attrGroup {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 66cqw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(4cqw * var(--cf-donor-scale));
}

.cf-donorCard__attr {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 58cqw;
  margin-right: calc(10cqw * var(--cf-donor-scale));
  padding: 0 calc(1.1cqw * var(--cf-donor-scale));
  font-family: "Lobster", cursive;
  font-size: clamp(20px, 8cqw, 36px);
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.cf-donorCard.has-steal .cf-donorCard__attr {
  max-width: 48cqw;
}

.cf-donorCard__steal {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-width: calc(34cqw * var(--cf-donor-scale));
  padding:
    calc(2cqw * var(--cf-donor-scale))
    calc(3.2cqw * var(--cf-donor-scale));
  border-radius: calc(5cqw * var(--cf-donor-scale));
  color: var(--cf-donor-ink);
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.cf-donorCard__stealText {
  display: block;
  font-size: calc(10cqw * var(--cf-donor-scale));
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.cf-donorCard__stealAmount {
  display: block;
  font-family: "Saira Extra Condensed", sans-serif;
  font-size: calc(26cqw * var(--cf-donor-scale));
  line-height: 0.78;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: clamp(0.8px, 0.55cqw, 3px) var(--cf-donor-ink);
  paint-order: stroke fill;
  text-shadow:
    -0.035em 0.055em 0 var(--cf-donor-ink),
    -0.06em 0.085em 0 rgba(38, 49, 64, 0.75);
}

.cf-donorCard__alumni {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding:
    calc(3cqw * var(--cf-donor-scale))
    calc(8cqw * var(--cf-donor-scale));
  border-radius: 999px;
  background: #171717;
  color: var(--ay-primary);
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 7cqw, 30px);
  line-height: 0.85;
  text-transform: uppercase;
}

.cf-donorCard__amountWrap {
  position: relative;
  z-index: auto;
  display: inline-grid;
  place-items: center;
  margin-top: 0;
  overflow: visible;
}

.cf-donorCard__amount {
  position: relative;
  z-index: 10;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(58px, 27cqw, 150px);
  line-height: 0.72;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: clamp(1px, 1.2cqw, 6px) var(--cf-donor-ink);
  paint-order: stroke fill;
  text-shadow:
    -0.03em 0.05em 0 var(--cf-donor-ink),
    -0.06em 0.08em 0 rgba(38, 49, 64, 0.85);
}

.cf-donorCard__rank {
  position: absolute;
  top: -6cqw;
  right: -9cqw;
  z-index: 40;
  width: calc(50cqw * var(--cf-donor-scale));
  height: calc(50cqw * var(--cf-donor-scale));
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--cf-donor-rank-color);
  color: #111;
  border: solid clamp(2px, 0.8cqw, 6px) var(--cf-donor-ink);
  font-family: "Saira", sans-serif;
  font-weight: 800;
  font-size: calc(30cqw * var(--cf-donor-scale));
  line-height: 1;
  box-shadow:
    -0.045em 0.075em 0 var(--cf-donor-ink),
    -0.075em 0.11em 0 rgba(38, 49, 64, 0.92);
  pointer-events: none;
}

.cf-donorCard__rank > span {
  position: relative;
  z-index: 2;
}

.cf-donorCard__crown {
  position: absolute;
  z-index: 50;
  width: calc(55cqw * var(--cf-donor-scale));
  height: calc(55cqw * var(--cf-donor-scale));
  pointer-events: none;
  object-fit: contain;
}

.cf-donorCard__pill > .cf-donorCard__crown {
  right: calc(-30cqw * var(--cf-donor-scale));
  top: calc(-36cqw * var(--cf-donor-scale));
  transform: rotate(10deg);
}

.cf-donorCard__rank > .cf-donorCard__crown {
  right: calc(-24cqw * var(--cf-donor-scale));
  top: calc(-32cqw * var(--cf-donor-scale));
  transform: rotate(10deg);
}

.cf-donorCard__name {
  position: relative;
  z-index: 20;
  max-width: 95cqw;
  margin-top: calc(-22cqw * var(--cf-donor-scale));
  padding:
    calc(10cqw * var(--cf-donor-scale))
    calc(18cqw * var(--cf-donor-scale))
    calc(20cqw * var(--cf-donor-scale))
    calc(18cqw * var(--cf-donor-scale));
  font-family: "Lobster", cursive;
  font-size: clamp(28px, 13cqw, 72px);
  line-height: 0.7;
  transform: rotate(-4deg);
}

.cf-donorCard__nameLayer {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: visible;
}

.cf-donorCard__nameLayer--back {
  position: absolute;
  inset: 0;
  padding: inherit;
  z-index: 1;
  font: inherit;
  line-height: inherit;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: clamp(1.2px, 1.2cqw, 6px) var(--cf-donor-ink);
  text-shadow:
    -0.036em 0.06em 0 var(--cf-donor-ink),
    -0.072em 0.096em 0 rgba(38, 49, 64, 0.92);
  pointer-events: none;
}

.cf-donorCard__nameLayer--front {
  position: relative;
  z-index: 2;
  color: var(--cf-donor-name-fill);
  -webkit-text-fill-color: var(--cf-donor-name-fill);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.cf-donorCard__message {
  position: relative;
  z-index: 1;
  max-width: 95cqw;
  margin-top: calc(4cqw * var(--cf-donor-scale));
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: calc(22cqw * var(--cf-donor-scale));
  line-height: 1.18;
  color: rgba(38, 49, 64, 0.9);
}

.cf-donorCard__message.is-fallback {
  color: rgba(38, 49, 64, 0.48);
}

.cf-donorCard.is-visible {
  animation: cfDonorPopIn 560ms cubic-bezier(0.2, 1.35, 0.32, 1) both;
  animation-delay: var(--cf-pop-delay, 0ms);
}

/* =========================================================
   DONOR BOARD SECTION
   ========================================================= */

.cf-donorBoard {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--ay-offwhite);
  padding: clamp(72px, 8vw, 120px) 24px clamp(64px, 7vw, 100px);
}

.cf-donorBoard__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.cf-donorBoard__tabs,
.cf-donorModal__tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  position: relative;
}

.cf-donorBoard__tabs::before,
.cf-donorModal__tabs::before {
  content: "";
  position: absolute;
  top: calc(-24px - 0.2vw);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(18px, 2.1vw, 34px);
  height: clamp(12px, 1.4vw, 22px);
  background: #263140;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.cf-donorBoard__tab,
.cf-donorModal__tab {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  cursor: pointer;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: clamp(1.2px, 0.32vw, 5px) #263140;
  paint-order: stroke fill;
  text-shadow:
    -0.036em 0.06em 0 #263140,
    -0.072em 0.096em 0 rgba(38, 49, 64, 0.92);
  transition: transform 180ms ease, color 180ms ease;
}

.cf-donorBoard__tab {
  font-size: clamp(42px, 5vw, 86px);
}

.cf-donorModal__tab {
  font-size: clamp(34px, 4vw, 64px);
}

.cf-donorBoard__tab.is-active,
.cf-donorModal__tab.is-active {
  color: var(--cf-hero-yellow, #f2b600);
  -webkit-text-fill-color: var(--cf-hero-yellow, #f2b600);
}

.cf-donorBoard__tab:hover,
.cf-donorModal__tab:hover {
  transform: translateY(-2px);
}

.cf-donorBoard__title {
  margin: 10px 0 clamp(44px, 5vw, 78px);
  color: var(--cf-hero-yellow, #f2b600);
  -webkit-text-fill-color: var(--cf-hero-yellow, #f2b600);
  -webkit-text-stroke: clamp(2px, 0.42vw, 7px) #263140;
  paint-order: stroke fill;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(76px, 10vw, 180px);
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow:
    -0.035em 0.055em 0 #263140,
    -0.065em 0.09em 0 rgba(38, 49, 64, 0.85);
}

.cf-donorBoard__preview {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(18px, 4vw, 70px);
}

.cf-donorBoard__viewAll {
  margin-top: clamp(38px, 5vw, 70px);
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 24px;
  background: #263140;
  color: #f4f0e7;
  padding: 18px 46px 20px;
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 900;
  line-height: 1;
  box-shadow: -0.12em 0.14em 0 rgba(38, 49, 64, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cf-donorBoard__viewAll:hover {
  transform: translateY(-3px);
  box-shadow: -0.16em 0.19em 0 rgba(38, 49, 64, 0.24);
}


.cf-donorBoard__tabs,
.cf-donorModal__tabs {
  --cf-tab-indicator-x: 25%;
}

.cf-donorBoard__tabs::before,
.cf-donorModal__tabs::before {
  left: var(--cf-tab-indicator-x);
  transform: translateX(-50%);
  transition: left 220ms ease;
}

/* =========================================================
   DONOR BOARD BACKGROUND MARQUEE
   ========================================================= */

.cf-donorBoard__marquee {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.32;
}

.cf-donorBoard__strip {
  position: absolute;
  left: 0;
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(38, 49, 64, 0.1);
  line-height: 0.78;
  animation-name: cfDonorMarquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.cf-donorBoard__strip span {
  padding-right: 0.2em;
}

.cf-donorBoard__strip--1 {
  top: 3%;
  font-size: clamp(90px, 12vw, 210px);
  animation-duration: 66s;
}

.cf-donorBoard__strip--2 {
  top: 18%;
  font-size: clamp(130px, 18vw, 320px);
  animation-duration: 82s;
  animation-direction: reverse;
}

.cf-donorBoard__strip--3 {
  top: 42%;
  font-size: clamp(120px, 16vw, 280px);
  animation-duration: 74s;
}

.cf-donorBoard__strip--4 {
  top: 63%;
  font-size: clamp(110px, 15vw, 260px);
  animation-duration: 90s;
  animation-direction: reverse;
}

.cf-donorBoard__strip--5 {
  top: 82%;
  font-size: clamp(80px, 10vw, 190px);
  animation-duration: 62s;
}

/* =========================================================
   DONOR MODAL
   ========================================================= */

.cf-donorModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.cf-donorModal[hidden] {
  display: none;
}

.cf-donorModal__backdrop {
  position: absolute;
  inset: 0;
  background: #efe6d3;
}

.cf-donorModal__dialog {
  position: relative;
  z-index: 2;
  height: 100dvh;
  overflow-y: auto;
  padding:
    clamp(42px, 5vw, 72px)
    clamp(18px, 5vw, 80px)
    clamp(80px, 8vw, 130px);
  box-sizing: border-box;
  background: #efe6d3;
}

/* =========================================================
  MODAL CLOSE BUTTON TEMPLATE
   ========================================================= */

.cf-modalClose {
  position: fixed;
  top: clamp(22px, 3vw, 46px);
  right: clamp(22px, 4vw, 70px);
  z-index: 10;

  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;

  cursor: pointer;
}

/* Circle */
.cf-modalClose__inner {
  width: clamp(48px, 4.5vw, 68px);
  height: clamp(48px, 4.5vw, 68px);

  display: grid;
  place-items: center;

  background: var(--cf-hero-yellow, #f2b600);
  border: clamp(3px, 0.35vw, 5px) solid var(--cf-donor-ink, #263140);

  border-radius: 999px;
  box-sizing: border-box;

  transition: transform 180ms ease;
}

/* Icon */
.cf-modalClose__inner i {
  display: block;
  line-height: 1;

  font-size: clamp(24px, 2vw, 34px);
  color: var(--cf-donor-ink, #263140);
  font-weight: 900;

  text-shadow:
    0.5px 0 currentColor,
    -0.5px 0 currentColor,
    0 0.5px currentColor,
    0 -0.5px currentColor;
}

/* Hover */
.cf-modalClose:hover .cf-modalClose__inner {
  transform: scale(1.06) rotate(4deg);
}

/* Mobile scaling (20% smaller) */
@media (max-width: 560px) {
  .cf-modalClose__inner {
    transform: scale(0.8);
    transform-origin: top right;
  }

  .cf-modalClose:hover .cf-modalClose__inner {
    transform: scale(0.85) rotate(4deg);
  }

  .cf-modalClose {
    top: 14px;
    right: 14px;
  }
}

.cf-donorModal__close:hover {
  transform: scale(1.06) rotate(4deg);
}
.cf-donorModal__close:hover {
  transform: scale(1.06) rotate(4deg);
}

.cf-donorModal__head {
  text-align: center;

  /* ⬇️ add top spacing to clear the new close button */
  margin-top: clamp(40px, 6vw, 80px);

  margin-bottom: clamp(46px, 5vw, 76px);
}

.cf-donorModal__subtitle {
  margin: 18px 0 0;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: clamp(17px, 1.4vw, 24px);
  line-height: 1.35;
  font-weight: 600;
  color: rgba(38, 49, 64, 0.9);
}

.cf-donorModal__grid {
  width: min(1380px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0 0;
}

body.cf-donorModal-open {
  overflow: hidden;
}

/* =========================================================
   DONOR CARD GRID CONSISTENCY
   ========================================================= */

.cf-donorBoard__preview .cf-donorCard,
.cf-donorModal__grid .cf-donorCard {
  height: 100%;
  grid-template-rows:
    auto
    auto
    auto
    1fr;
}

.cf-donorBoard__preview .cf-donorCard__top,
.cf-donorModal__grid .cf-donorCard__top {
  height: calc(72cqw * var(--cf-donor-scale));
}

.cf-donorBoard__preview .cf-donorCard__amountWrap,
.cf-donorModal__grid .cf-donorCard__amountWrap,
.cf-donorBoard__preview .cf-donorCard__message,
.cf-donorModal__grid .cf-donorCard__message {
  align-self: start;
}

/* =========================================================
   LEGACY DONOR GRID PREVIEW
   ========================================================= */

.cf-donorGridPreview {
  background: #efeadd;
  padding: 60px 24px;
}

.cf-donorGridPreview__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes cfDonorMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes cfDonorPopIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.84) rotate(-2deg);
  }

  72% {
    opacity: 1;
    transform: translateY(-5px) scale(1.045) rotate(0.6deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

/* =========================================================
   CONTAINER QUERIES
   ========================================================= */

@container (max-width: 210px) {
  .cf-donorCard.has-stackable-pill .cf-donorCard__pill {
    flex-direction: column;
    flex-wrap: nowrap;
    width: fit-content;
    max-width: 88cqw;
    gap: calc(3cqw * var(--cf-donor-scale));
    border-radius: calc(16cqw * var(--cf-donor-scale));
    transform: rotate(-3deg) translateY(calc(-8cqw * var(--cf-donor-scale)));
  }

  .cf-donorCard.has-stackable-pill .cf-donorCard__attr {
    max-width: 72cqw;
  }

  .cf-donorCard.has-stackable-pill .cf-donorCard__attrGroup {
    max-width: 78cqw;
  }

  .cf-donorCard.has-stackable-pill.has-steal .cf-donorCard__attr {
    max-width: 52cqw;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
  .cf-donorModal__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cf-donorGridPreview__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
    .cf-donorBoard__preview {
    grid-template-columns: 1fr;
    width: 65cqw;
    max-width: 320px;
    margin-inline: auto;
    gap: 44px;
  }

  .cf-donorBoard__preview {
    grid-template-columns: 1fr;
    width: 65cqw;
    max-width: 320px;
    margin-inline: auto;
    gap: 44px;
  }

  .cf-donorBoard__preview .cf-donorCard {
    width: 100%;
    max-width: 320px;
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .cf-donorBoard {
    padding: 64px 10px 60px;
  }

  .cf-donorBoard__title {
    margin-bottom: 44px;
  }

  .cf-donorBoard__viewAll {
    border-radius: 20px;
    padding: 16px 38px 18px;
  }

  .cf-donorBoard__tabs {
    gap: 16px;
  }

  .cf-donorModal__dialog {
    padding: 48px 10px 80px;
  }


  @media (max-width: 560px) {
  .cf-donorBoard__marquee {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    padding-block: 2svh;
  }

  .cf-donorBoard__strip {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 auto;
    line-height: 0.8;
  }

  .cf-donorBoard__strip--1 { font-size: 38svh; }
  .cf-donorBoard__strip--2 { font-size: 60svh; }
  .cf-donorBoard__strip--3 { font-size: 35svh; }
  .cf-donorBoard__strip--4 { font-size: 85svh; }
  .cf-donorBoard__strip--5 { font-size: 44svh; }
}


 

  .cf-donorModal__head {
    padding-right: 0;
    margin-bottom: 38px;
    margin-top: clamp(28px, 8vw, 48px);
  }

  .cf-donorModal__tabs {
    width: 100%;
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(8px, 3vw, 14px);
    margin-inline: auto;
    white-space: nowrap;
  }

  .cf-donorModal__tabs::before {
    top: -18px;
    width: 18px;
    height: 12px;
  }

  .cf-donorModal__tab {
    flex: 0 1 auto;
    min-width: 0;
    font-size: clamp(30px, 9vw, 42px);
    white-space: nowrap;
    -webkit-text-stroke: clamp(1.2px, 0.55vw, 2.4px) #263140;
    text-shadow:
      -0.032em 0.052em 0 #263140,
      -0.06em 0.082em 0 rgba(38, 49, 64, 0.92);
  }

  .cf-donorModal__subtitle {
    max-width: 30ch;
    margin: 14px auto 0;
    padding-inline: 20px;
    text-align: center;
    font-size: 15px;
    line-height: 1.3;
  }

  .cf-donorCard.has-stackable-pill .cf-donorCard__pill {
    transform: rotate(-3deg) translateY(calc(-10cqw * var(--cf-donor-scale)));
  }

  .cf-donorCard__attrGroup {
    max-width: 82cqw;
  }

  .cf-donorCard.has-stackable-pill .cf-donorCard__attrGroup {
    max-width: 86cqw;
  }

  .cf-donorCard.has-steal .cf-donorCard__attr {
    max-width: 56cqw;
  }

  .cf-donorCard__attr {
    max-width: 82cqw;
  }

  .cf-donorCard__message {
    font-size: calc(32cqw * var(--cf-donor-scale));
  }

  .cf-donorGridPreview {
    padding: 42px 10px;
  }

  .cf-donorGridPreview__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cf-donorBoard__strip,
  .cf-donorCard.is-visible {
    animation: none;
  }

  .cf-donorCard {
    opacity: 1;
    transform: none;
  }
}

.cf-donorCard.has-already-animated {
  opacity: 1;
  transform: none;
  animation: none !important;
}

@media (min-width: 1181px) {
  .cf-donorBoard__preview .cf-donorCard__amount {
    -webkit-text-stroke: clamp(1px, 0.9cqw, 5px) var(--cf-donor-ink);
    text-shadow:
      -0.025em 0.045em 0 var(--cf-donor-ink),
      -0.052em 0.072em 0 rgba(38, 49, 64, 0.85);
  }
}













/* =========================================================
   YOUR DONATION MODAL
   ========================================================= */

.cf-yourDonationModal {
  --cf-modal-bg: #efe6d3;
  --cf-modal-ink: var(--cf-donor-ink, #263140);
  --cf-modal-yellow: #f2b600;
  --cf-modal-offwhite: var(--ay-offwhite, #fbf9f1);
  --cf-modal-red: #c7252f;
  --cf-modal-red-bg: #f8837c;

  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 28px);
  overflow: hidden;
  overscroll-behavior: contain;
}

.cf-yourDonationModal[hidden] {
  display: none !important;
}

.cf-yourDonationModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 28, 36, 0.72);
  backdrop-filter: blur(4px);
}

.cf-yourDonationModal__dialog {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100vw - 32px));
  height: min(860px, calc(100dvh - 32px));
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  padding:
    clamp(16px, 2cqw, 24px)
    clamp(18px, 2.6cqw, 30px)
    0;
  box-sizing: border-box;
  background: var(--cf-modal-bg);
  border-radius: clamp(24px, 3cqw, 36px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  container-type: inline-size;
  container-name: your-donation-modal;
}

body.cf-yourDonationModal-open {
  overflow: hidden !important;
  height: 100dvh;
}

body.cf-yourDonationModal-open .ff-fundraiser {
  pointer-events: none;
}

body.cf-yourDonationModal-open .cf-yourDonationModal {
  pointer-events: auto;
}

@media (max-width: 960px) {
  .cf-yourDonationModal {
    display: block;
    padding: 0;
  }

  .cf-yourDonationModal__backdrop {
    background: var(--cf-modal-bg);
    backdrop-filter: none;
  }

  .cf-yourDonationModal__dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 0;
    box-shadow: none;
    padding: 0 clamp(18px, 5vw, 80px) clamp(150px, 12vw, 220px);
    container-type: normal;
    container-name: none;
  }
}

/* =========================================================
   YOUR DONATION MODAL — PROGRESS HEADER
   ========================================================= */

.cf-yourDonationModal__progress {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background: var(--cf-modal-bg);
}

.cf-yourDonationModal__progressTrack {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(12px, 1.8cqw, 22px);
}

.cf-yourDonationModal__progressMain {
  min-width: 0;
}

.cf-yourDonationModal__progressBar {
  width: 100%;
  height: clamp(20px, 2.8cqw, 30px);
  position: relative;
}

.cf-yourDonationModal__progressFill {
  display: block;
  width: var(--cf-donation-progress, 33.333%);
  height: 100%;
  background: var(--cf-modal-yellow);
  border: clamp(3px, 0.45cqw, 5px) solid var(--cf-modal-ink);
  border-radius: 15px;
  box-sizing: border-box;
  box-shadow:
    -4px 5px 0 var(--cf-modal-ink),
    -7px 8px 0 rgba(38, 49, 64, 0.35);
  transition: width 260ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.cf-yourDonationModal[data-step="1"] {
  --cf-donation-progress: 33.333%;
}

.cf-yourDonationModal[data-step="2"] {
  --cf-donation-progress: 66.666%;
}

.cf-yourDonationModal[data-step="3"] {
  --cf-donation-progress: 100%;
}

.cf-yourDonationModal__stepText {
  margin-top: clamp(6px, 0.9cqw, 10px);
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.4cqw, 26px);
  line-height: 1;
  color: var(--cf-modal-ink);
}

/* Close button + Step 4 QR back button */
.cf-yourDonationModal .cf-modalClose,
.cf-yourDonationModal__close,
.cf-shareStep__qrBack {
  position: relative;
  top: auto;
  right: auto;
  flex: 0 0 auto;
  align-self: start;
  z-index: 80;
  pointer-events: auto;
  cursor: pointer;
}

.cf-yourDonationModal .cf-modalClose *,
.cf-yourDonationModal__close *,
.cf-shareStep__qrBack * {
  pointer-events: none;
}

.cf-shareStep__qrBack[hidden] {
  display: none !important;
}

/* Step 4: progress bar disappears, close/back buttons stay clickable */
.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__progress {
  z-index: 50;
  background: transparent;
  pointer-events: none;
}

.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__progressTrack {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(12px, 1.8cqw, 22px);
  pointer-events: none;
}

.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__progressMain {
  display: none !important;
}

.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__close,
.cf-yourDonationModal[data-step="4"] .cf-shareStep__qrBack {
  pointer-events: auto;
}

.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__close {
  margin-left: auto;
}

.cf-shareStep__qrBack .cf-modalClose__inner i {
  transform: translateX(-0.03em);
}

/* Mobile */
@media (max-width: 760px) {
  .cf-yourDonationModal__progress {
    padding-top: 8px;
  }

  .cf-yourDonationModal__progressTrack {
    gap: 10px;
  }

  .cf-yourDonationModal__progressBar {
    height: 14px;
  }

  .cf-yourDonationModal__progressFill {
    border-width: 2px;
    box-shadow:
      -2px 3px 0 var(--cf-modal-ink),
      -4px 5px 0 rgba(38, 49, 64, 0.35);
  }

  .cf-yourDonationModal__stepText {
    margin-top: 6px;
    font-size: 18px;
  }

  .cf-yourDonationModal .cf-modalClose,
  .cf-yourDonationModal__close,
  .cf-shareStep__qrBack {
    width: 38px;
    height: 38px;
  }
}

/* =========================================================
   YOUR DONATION MODAL — HEADER / BODY
   ========================================================= */

.cf-yourDonationModal__head {
  width: 100%;
  margin: 0 auto clamp(10px, 1.6cqw, 18px);
  text-align: center;
  flex: 0 0 auto;
}

.cf-yourDonationModal__title {
  margin: 0 auto;
  display: block;
  position: relative;
  width: min(100%, 720px);
  height: clamp(54px, 7cqw, 76px);
}

.cf-yourDonationModal__titleSvg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.cf-yourDonationModal__titleSvg text {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 84px;
  text-transform: uppercase;
  fill: var(--cf-modal-yellow);
  stroke: #263140;
  stroke-width: 16px;
  stroke-linejoin: round;
  stroke-linecap: round;
  paint-order: stroke fill;
}

.cf-yourDonationModal__titlePrice {
  fill: #ffffff;
  font-size: 1.12em;
}

.cf-yourDonationModal__titleText {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.cf-yourDonationModal__subtitle {
  margin: clamp(2px, 0.3vw, 6px) 0 0;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: clamp(15px, 1.7cqw, 18px);
  line-height: 1.2;
  font-weight: 600;
  color: rgba(38, 49, 64, 0.9);
}

.cf-yourDonationModal__body {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  margin: 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
 .cf-yourDonationModal__body::-webkit-scrollbar {
    display: none;
  }

@media (max-width: 960px) {
  .cf-yourDonationModal__head,
  .cf-yourDonationModal__body {
    width: min(100%, 1280px);
  }

  .cf-yourDonationModal__head {
    margin: 0 auto clamp(22px, 2.8vw, 42px);
  }

  .cf-yourDonationModal__title {
    width: min(100%, 900px);
    height: clamp(56px, 6vw, 96px);
  }

  .cf-yourDonationModal__subtitle {
    margin: clamp(2px, 0.3vw, 6px) 0 0;
    font-size: clamp(16px, 1.2vw, 21px);
    line-height: 1.25;
  }

 
}

@media (max-width: 760px) {
  .cf-yourDonationModal__dialog {
    padding: 8px 16px clamp(100px, 24vw, 118px);
  }

  .cf-yourDonationModal__head {
    margin: 12px auto 20px;
  }

  .cf-yourDonationModal__title {
    width: min(100%, 720px);
    height: clamp(58px, 15vw, 82px);
  }

  .cf-yourDonationModal__titleSvg text {
    font-size: 88px;
    stroke-width: 16px;
  }

  .cf-yourDonationModal__subtitle {
    max-width: 34ch;
    margin: 2px auto 0;
    padding-inline: 14px;
    text-align: center;
    font-size: 14px;
    line-height: 1.22;
  }
}

/* =========================================================
   YOUR DONATION MODAL — STEP CONTENT
   ========================================================= */

.cf-yourDonationModal__stepPanel {
  display: none;
  height: 100%;
  min-height: 0;
}

.cf-yourDonationModal[data-step="1"] [data-your-donation-step="1"],
.cf-yourDonationModal[data-step="2"] [data-your-donation-step="2"],
.cf-yourDonationModal[data-step="3"] [data-your-donation-step="3"] {
  display: block;
}

.cf-yourDonationModal__stepGrid {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 3cqw, 34px);
}

.cf-yourDonationModal__stepCol {
  box-sizing: border-box;
  position: relative;
  min-height: 0;
}

.cf-yourDonationModal__stepCol--left {
  flex: 0 1 38.2%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.3cqw, 14px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.cf-yourDonationModal__stepCol--right {
  flex: 1 1 61.8%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3cqw, 36px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: transparent;
}

.cf-yourDonationModal__stepCol--left:has(.cf-kidSelect[data-mode="expanded"]) {
  overflow: hidden;
}

.cf-yourDonationModal__stepCol--left:has(.cf-kidSelect[data-mode="expanded"]) .cf-donationAmount {
  display: none;
}

@media (max-width: 900px) {
  .cf-yourDonationModal__stepPanel {
    height: auto;
  }

  .cf-yourDonationModal__stepGrid {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .cf-yourDonationModal__stepCol,
  .cf-yourDonationModal__stepCol--left,
  .cf-yourDonationModal__stepCol--right {
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;
    flex: 0 0 auto;
    overflow: visible;
  }

  .cf-yourDonationModal__stepCol--left {
    gap: 14px;
  }
}

@media (max-width: 760px) {
  .cf-yourDonationModal__stepCol--left {
    gap: 10px;
  }
}

.cf-yourDonationModal__stepCol--left,
.cf-yourDonationModal__stepCol--right {
  scrollbar-width: none;
}

.cf-yourDonationModal__stepCol--left::-webkit-scrollbar,
.cf-yourDonationModal__stepCol--right::-webkit-scrollbar {
  display: none;
}


/* =========================================================
   YOUR DONATION MODAL — STEP 1 DESKTOP FOOTER CLEARANCE
   Fixes tip error getting hidden behind fixed bottom bar
   ========================================================= */

@media (min-width: 901px) {
  .cf-yourDonationModal[data-step="1"] .cf-yourDonationModal__stepCol--right {
    padding-bottom: clamp(120px, 11cqw, 150px);
    box-sizing: border-box;
  }

  .cf-yourDonationModal[data-step="1"] .cf-tipBox[data-tip-error="true"] {
    margin-bottom: clamp(16px, 2cqw, 28px);
  }
}





/* =========================================================
   KID SELECT
   ========================================================= */

.cf-kidSelect {
  --cf-kid-expanded-height: min(100%, 420px);
  --cf-kid-radius: clamp(18px, 2.4cqw, 28px);

  position: static;
  width: 100%;
  min-width: min(100%, 280px);
  max-width: 100%;
  min-height: 0;
  height: auto;
  flex: 0 0 auto;
  color: var(--cf-modal-ink);
  font-family: "Work Sans", system-ui, sans-serif;
  box-sizing: border-box;
}

.cf-kidSelect[data-mode="expanded"] {
  height: var(--cf-kid-expanded-height);
  min-height: 260px;
  max-height: var(--cf-kid-expanded-height);
}

.cf-kidSelect[data-mode="collapsed"],
.cf-kidSelect:not([data-mode]),
.cf-kidSelect[data-mode="readonly"] {
  height: auto;
  min-height: 0;
  max-height: none;
}

.cf-kidSelect[data-mode="readonly"] {
  opacity: 0.5;
}

.cf-kidSelect__trigger {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: clamp(68px, 8cqw, 92px);
  padding: clamp(10px, 1.3cqw, 15px) clamp(14px, 2cqw, 20px);
  border: 0;
  border-radius: var(--cf-kid-radius);
  background: var(--cf-modal-offwhite);
  color: var(--cf-modal-ink);
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6cqw, 17px);
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
  overflow: hidden;
}

.cf-kidSelect[data-mode="readonly"] .cf-kidSelect__trigger {
  cursor: default;
}

.cf-kidSelect[data-mode="expanded"] .cf-kidSelect__trigger {
  display: none;
}

.cf-kidSelect__placeholderIcon,
.cf-kidSelect__avatar,
.cf-kidSelect__optionAvatar {
  border-radius: 999px;
  overflow: hidden;
  background: #e8dfcb;
  color: var(--cf-modal-ink);
}

.cf-kidSelect__placeholderIcon,
.cf-kidSelect__avatar {
  width: clamp(46px, 5.7cqw, 64px);
  height: clamp(46px, 5.7cqw, 64px);
  flex: 0 0 clamp(46px, 5.7cqw, 64px);
  display: grid;
  place-items: center;
}

.cf-kidSelect__placeholderIcon[hidden],
.cf-kidSelect__avatar[hidden] {
  display: none !important;
}

.cf-kidSelect__placeholderIcon i,
.cf-kidSelect__avatar i,
.cf-kidSelect__optionAvatar--placeholder i {
  font-size: clamp(16px, 2cqw, 30px);
  line-height: 1;
  color: var(--cf-modal-ink);
  opacity: 0.3;
}

.cf-kidSelect__avatar img,
.cf-kidSelect__optionAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cf-kidSelect__name {
  min-width: 0;
  flex: 1 1 auto;
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(21px, 2.7cqw, 30px);
  line-height: 1.08;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cf-kidSelect__chevron {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-size: clamp(18px, 2cqw, 24px);
  line-height: 1;
  margin-left: auto;
}

.cf-kidSelect[data-mode="readonly"] .cf-kidSelect__chevron {
  opacity: 0;
}

@media (max-width: 760px) {
  .cf-kidSelect {
    --cf-kid-expanded-height: 420px;
  }
}

/* =========================================================
   KID SELECT — EXPANDED PANEL
   ========================================================= */

.cf-kidSelect__panel {
  position: absolute;
  inset: 0;
  z-index: 20;
  width: 100%;
  min-width: min(100%, 340px);
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  padding: clamp(10px, 1.4cqw, 14px);
  border-radius: var(--cf-kid-radius);
  background: var(--cf-modal-offwhite);
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  gap: clamp(8px, 1.1cqw, 12px);
  overflow: hidden;
}

.cf-kidSelect[data-mode="expanded"] .cf-kidSelect__panel {
  display: flex;
}

.cf-kidSelect__searchRow {
  flex: 0 0 auto;
  min-height: clamp(50px, 5.8cqw, 64px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 1.5cqw, 16px);
  padding: 0 clamp(4px, 0.8cqw, 8px);
  border-bottom: 3px dashed rgba(38, 49, 64, 0.12);
  color: var(--cf-modal-ink);
}

.cf-kidSelect__searchRow > i {
  font-size: clamp(22px, 2.8cqw, 30px);
  line-height: 1;
}

.cf-kidSelect__search {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cf-modal-ink);
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 3cqw, 32px);
  line-height: 1;
}

.cf-kidSelect__search::placeholder {
  color: rgba(38, 49, 64, 0.45);
}

.cf-kidSelect__close {
  position: relative;
  z-index: 20;
  width: clamp(30px, 3.6cqw, 40px);
  height: clamp(30px, 3.6cqw, 40px);
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cf-modal-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
}

.cf-kidSelect__close i {
  font-size: clamp(22px, 2.8cqw, 30px);
  line-height: 1;
}

.cf-kidSelect__list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: grid;
  align-content: start;
  padding: 0 clamp(6px, 0.9cqw, 10px) 0 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(38, 49, 64, 0.22) transparent;
}

.cf-kidSelect__list::-webkit-scrollbar {
  width: 10px;
}

.cf-kidSelect__list::-webkit-scrollbar-track {
  background: transparent;
}

.cf-kidSelect__list::-webkit-scrollbar-thumb {
  background: rgba(38, 49, 64, 0.18);
  border-radius: 999px;
}

.cf-kidSelect__option {
  width: 100%;
  min-width: 0;
  min-height: clamp(48px, 5.5cqw, 62px);
  padding: clamp(3px, 0.5cqw, 6px) 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--cf-modal-ink);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4cqw, 16px);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
}

.cf-kidSelect__option:hover,
.cf-kidSelect__option.is-selected {
  background: rgba(239, 230, 211, 0.55);
}

.cf-kidSelect__optionAvatar {
  width: clamp(42px, 4.8cqw, 54px);
  height: clamp(42px, 4.8cqw, 54px);
  flex: 0 0 clamp(42px, 4.8cqw, 54px);
}

.cf-kidSelect__optionAvatar--placeholder {
  display: grid;
  place-items: center;
}

.cf-kidSelect__optionName {
  min-width: 0;
  flex: 1 1 auto;
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.3cqw, 24px);
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cf-kidSelect__empty {
  min-height: clamp(48px, 5.5cqw, 62px);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.3cqw, 24px);
  color: rgba(38, 49, 64, 0.55);
}

/* =========================================================
   KID SELECT — ERROR STATE
   ========================================================= */

.cf-kidSelect[data-error="true"] .cf-kidSelect__trigger,
.cf-kidSelect[data-error="true"] .cf-kidSelect__panel {
  border: 4px solid var(--cf-modal-red);
  background: var(--cf-modal-offwhite);
  box-shadow: none;
}

.cf-kidSelect__error {
  margin-top: clamp(10px, 1.4cqw, 16px);
  width: 100%;
  min-height: clamp(62px, 7.2cqw, 86px);
  padding: clamp(14px, 2cqw, 22px) clamp(20px, 3cqw, 30px);
  box-sizing: border-box;
  border: 2px solid rgba(199, 37, 47, 0.24);
  border-radius: clamp(20px, 2.7cqw, 30px);
  background: var(--cf-modal-red-bg);
  display: flex;
  align-items: center;
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(19px, 2.6cqw, 28px);
  line-height: 1.15;
  color: #651516;
}

.cf-kidSelect__error::before {
  content: none;
}

.cf-kidSelect__error[hidden],
.cf-kidSelect[data-error="false"] .cf-kidSelect__error {
  display: none !important;
}

/* =========================================================
   KID SELECT — MOBILE
   ========================================================= */

@media (max-width: 760px) {
  .cf-kidSelect {
    --cf-kid-radius: 16px;
  }

  .cf-kidSelect__trigger {
    min-height: 52px;
    padding: 7px 12px;
    gap: 10px;
  }

  .cf-kidSelect__panel {
    padding: 12px;
    gap: 10px;
  }

  .cf-kidSelect__placeholderIcon,
  .cf-kidSelect__avatar {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .cf-kidSelect__placeholderIcon i,
  .cf-kidSelect__avatar i {
    font-size: 20px;
  }

  .cf-kidSelect__name {
    font-size: clamp(17px, 4.2vw, 23px);
  }

  .cf-kidSelect__chevron {
    font-size: 17px;
  }

  .cf-kidSelect__searchRow {
    min-height: 54px;
    gap: 10px;
    border-bottom-width: 3px;
  }

  .cf-kidSelect__searchRow > i {
    font-size: 24px;
  }

  .cf-kidSelect__search {
    font-size: clamp(22px, 6vw, 30px);
  }

  .cf-kidSelect__close {
    width: 34px;
    height: 34px;
  }

  .cf-kidSelect__close i {
    font-size: 26px;
  }

  .cf-kidSelect__option {
    min-height: 58px;
    padding: 4px 0;
    gap: 12px;
  }

  .cf-kidSelect__optionAvatar {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .cf-kidSelect__optionAvatar--placeholder i {
    font-size: 22px;
  }

  .cf-kidSelect__optionName {
    font-size: clamp(17px, 4.6vw, 23px);
  }

  .cf-kidSelect[data-error="true"] .cf-kidSelect__trigger {
    border-width: 4px;
  }

  .cf-kidSelect__error {
    min-height: 58px;
    padding: 14px 20px;
    border-radius: 22px;
    font-size: clamp(18px, 5vw, 25px);
  }
}

/* =========================================================
   DONATION AMOUNT
   ========================================================= */

.cf-donationAmount {
  width: 100%;
  margin-top: clamp(8px, 1.1cqw, 14px);
  font-family: "Saira Extra Condensed", sans-serif;
  color: var(--cf-modal-ink);
}

.cf-donationAmount__stepper {
  width: 100%;
  min-height: clamp(78px, 9.5cqw, 106px);
  padding: clamp(12px, 1.7cqw, 18px) clamp(16px, 2.4cqw, 26px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.6cqw, 18px);
  background: var(--cf-modal-offwhite);
  border-radius: clamp(22px, 3cqw, 32px);
}

.cf-donationAmount__stepBtn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cf-donationAmount__stepBtn i {
  font-size: clamp(40px, 5.2cqw, 54px);
  line-height: 1;
  color: var(--cf-modal-ink);
  transition:
    transform 120ms ease,
    opacity 120ms ease;
}

.cf-donationAmount__stepBtn:hover i {
  transform: scale(1.05);
}

.cf-donationAmount__stepBtn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.cf-donationAmount__inputWrap {
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  width: max-content;
  justify-self: center;
}

.cf-donationAmount__currency,
.cf-donationAmount__input {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6.4cqw, 70px);
  line-height: 0.8;
  color: var(--cf-modal-ink);
}

.cf-donationAmount__currency {
  flex: 0 0 auto;
  margin-right: 0.04em;
}

.cf-donationAmount__input {
  width: var(--cf-amount-input-width, auto);
  min-width: 1ch;
  max-width: 6ch;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  text-align: center;
  appearance: textfield;
}

.cf-donationAmount__input::-webkit-outer-spin-button,
.cf-donationAmount__input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.cf-donationAmount__notice {
  margin-top: clamp(10px, 1.2cqw, 14px);
  width: 100%;
  min-height: clamp(46px, 5.2cqw, 62px);
  padding: clamp(12px, 1.5cqw, 16px) clamp(18px, 2.2cqw, 24px);
  box-sizing: border-box;
  border: 2px solid rgba(199, 37, 47, 0.24);
  border-radius: clamp(18px, 2.3cqw, 24px);
  background: var(--cf-modal-red-bg);
  display: flex;
  align-items: center;
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.8cqw, 20px);
  line-height: 1.15;
  color: #651516;
}

.cf-donationAmount__notice[hidden] {
  display: none !important;
}

.cf-donationAmount__grid {
  margin-top: clamp(12px, 1.5cqw, 18px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(7px, 0.9cqw, 10px);
}

.cf-donationAmount__preset {
  min-width: 0;
  min-height: clamp(68px, 8.2cqw, 90px);
  padding: clamp(8px, 1cqw, 12px);
  box-sizing: border-box;
  border: 0;
  border-radius: clamp(16px, 2cqw, 21px);
  background: var(--cf-modal-offwhite);
  color: var(--cf-modal-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cf-donationAmount__preset.is-active {
  background: var(--cf-modal-yellow);
  border: clamp(3px, 0.36cqw, 4px) solid var(--cf-modal-ink);
}

.cf-donationAmount__preset span {
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(13px, 1.5cqw, 17px);
  line-height: 1;
  color: #b9984a;
  text-transform: uppercase;
  white-space: nowrap;
}

.cf-donationAmount__preset.is-active span {
  color: var(--cf-modal-ink);
}

.cf-donationAmount__preset strong {
  margin-top: 3px;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4.4cqw, 46px);
  line-height: 0.8;
  color: #ffffff;
  -webkit-text-stroke: clamp(1.2px, 0.18cqw, 2px) var(--cf-modal-ink);
  paint-order: stroke fill;
  text-shadow:
    -0.035em 0.05em 0 var(--cf-modal-ink),
    -0.06em 0.08em 0 rgba(38, 49, 64, 0.8);
}

/* =========================================================
   DONATION AMOUNT — MOBILE
   ========================================================= */

@media (max-width: 760px) {
  .cf-donationAmount {
    margin-top: 10px;
  }

  .cf-donationAmount__stepper {
    min-height: 78px;
    padding: 10px 14px;
    border-radius: 24px;
    gap: 10px;
  }

  .cf-donationAmount__stepBtn {
    width: 42px;
    height: 42px;
  }

  .cf-donationAmount__stepBtn i {
    font-size: 42px;
  }

  .cf-donationAmount__currency,
  .cf-donationAmount__input {
    font-size: clamp(42px, 11vw, 58px);
  }

  .cf-donationAmount__grid {
    margin-top: 12px;
    gap: 6px;
  }

  .cf-donationAmount__preset {
    min-height: 62px;
    border-radius: 14px;
    padding: 7px;
  }

  .cf-donationAmount__preset span {
    font-size: clamp(12px, 3.2vw, 15px);
  }

  .cf-donationAmount__preset strong {
    font-size: clamp(32px, 10vw, 50px);
  }

  .cf-donationAmount__notice {
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: clamp(14px, 3.8vw, 18px);
  }
}

/* =========================================================
   YOUR DONATION MODAL — RIGHT COLUMN / TIP
   ========================================================= */

.cf-yourDonationModal__stepCol--right {
  flex: 1 1 61.8%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3cqw, 36px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: transparent;
}

.cf-yourDonationModal__divider {
  width: 100%;
  border-top: 4px dashed rgba(38, 49, 64, 0.13);
}

.cf-tipBox {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 2.6cqw, 34px);
  padding: 0 20px;
  color: var(--cf-modal-ink);
}

.cf-tipBox__title {
  flex: 0 0 auto;
  margin: 0;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5cqw, 54px);
  line-height: 0.8;
  color: #ffffff;
  -webkit-text-stroke: clamp(1.5px, 0.23cqw, 3px) var(--cf-modal-ink);
  paint-order: stroke fill;
  text-shadow:
    -0.035em 0.05em 0 var(--cf-modal-ink),
    -0.06em 0.08em 0 rgba(38, 49, 64, 0.8);
}

.cf-tipBox__main {
  flex: 1 1 470px;
  min-width: min(100%, 360px);
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 1.6cqw, 18px);
  position: relative;
  z-index: 1;
}

.cf-tipBox__trigger {
  flex: 1 1 auto;
  min-width: 0;
  min-height: clamp(68px, 8cqw, 90px);
  padding: 0 clamp(20px, 3cqw, 32px);
  border: 0;
  border-radius: clamp(20px, 3cqw, 32px);
  background: var(--cf-modal-offwhite);
  color: var(--cf-modal-ink);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2.2cqw, 24px);
  text-align: left;
  font-family: "Work Sans", system-ui, sans-serif;
  cursor: pointer;
  box-sizing: border-box;
}

.cf-tipBox__selected {
  min-width: 0;
  font-weight: 500;
  font-size: clamp(22px, 3.1cqw, 34px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cf-tipBox__check {
  width: clamp(30px, 3.5cqw, 40px);
  height: clamp(30px, 3.5cqw, 40px);
  display: grid;
  place-items: center;
  font-size: clamp(24px, 3cqw, 34px);
  line-height: 1;
  color: #75c943;
}

.cf-tipBox[data-tip-error="true"] .cf-tipBox__check {
  color: #c7252f;
}

.cf-tipBox__chevron {
  font-size: clamp(20px, 2.2cqw, 28px);
}

.cf-tipBox__custom {
  flex: 0 0 clamp(120px, 15cqw, 170px);
  min-height: clamp(68px, 8cqw, 90px);
  padding: 0 clamp(16px, 2cqw, 24px);
  border: 4px solid #75c943;
  border-radius: clamp(20px, 3cqw, 32px);
  background: var(--cf-modal-offwhite);
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.08em;
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 3.5cqw, 40px);
  line-height: 1;
  color: var(--cf-modal-ink);
}

.cf-tipBox[data-tip-error="true"] .cf-tipBox__custom {
  border-color: #c7252f;
}

.cf-tipBox[data-tip-custom="true"][data-tip-mode="collapsed"] .cf-tipBox__custom {
  display: inline-flex;
}

.cf-tipBox__customInput {
  width: auto;
  min-width: 1ch;
  max-width: 3ch;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  color: var(--cf-modal-ink);
  font: inherit;
  text-align: right;
  appearance: textfield;
}

.cf-tipBox__customInput::-webkit-outer-spin-button,
.cf-tipBox__customInput::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.cf-tipBox__customPercent {
  flex: 0 0 auto;
}

.cf-tipBox__grid {
  display: none;
}

.cf-tipBox[data-tip-mode="grid"] .cf-tipBox__trigger,
.cf-tipBox[data-tip-mode="grid"] .cf-tipBox__custom {
  display: none;
}

.cf-tipBox[data-tip-mode="grid"] .cf-tipBox__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(7px, 0.9cqw, 10px);
}

.cf-tipBox__preset {
  min-width: 0;
  min-height: clamp(56px, 6.7cqw, 72px);
  padding: clamp(6px, 0.85cqw, 10px);
  box-sizing: border-box;
  border: 0;
  border-radius: clamp(13px, 1.6cqw, 17px);
  background: var(--cf-modal-offwhite);
  color: var(--cf-modal-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "Saira Extra Condensed", sans-serif;
  
}

.cf-tipBox__preset.is-active {
  background: var(--cf-modal-yellow);
  border: clamp(3px, 0.36cqw, 5px) solid var(--cf-modal-ink);
}

.cf-tipBox__preset span {
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(11px, 1.25cqw, 14px);
  line-height: 1;
  color: #b9984a;
  text-transform: uppercase;
  white-space: nowrap;
}

.cf-tipBox__preset.is-active span {
  color: var(--cf-modal-ink);
}

.cf-tipBox__preset strong {
  margin-top: 3px;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(25px, 3.5cqw, 36px);
  line-height: 0.8;
  color: #ffffff;
  -webkit-text-stroke: clamp(1px, 0.14cqw, 1.6px) var(--cf-modal-ink);
  paint-order: stroke fill;
  text-shadow:
    -0.035em 0.05em 0 var(--cf-modal-ink),
    -0.06em 0.08em 0 rgba(38, 49, 64, 0.8);
}

.cf-tipBox__preset--other strong {
  color: var(--cf-modal-ink);
  -webkit-text-stroke: 0;
  text-shadow: none;
  font-size: clamp(23px, 3cqw, 32px);
}

.cf-tipBox__preset--other i {
  line-height: 1;
}

.cf-tipBox__support,
.cf-tipBox__message {
  flex: 0 0 100%;
  width: 100%;
  clear: both;
}

.cf-tipBox__support {
  margin: clamp(4px, 0.8cqw, 10px) 0 0;
  position: relative;
  z-index: 0;

  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 1.3vw, 18px);
  line-height: 1.3;
  color: rgba(38, 49, 64, 0.86);
}

.cf-tipBox__message {
  display: none;
  padding: clamp(14px, 2cqw, 22px) clamp(20px, 3cqw, 30px);
  border: 2px solid rgba(199, 37, 47, 0.24);
  border-radius: clamp(20px, 3cqw, 30px);
  background: var(--cf-modal-red-bg);
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 1.3vw, 18px);
  line-height: 1.3;
  color: #651516;
}

.cf-tipBox[data-tip-error="true"] .cf-tipBox__message {
  display: grid;
  gap: 8px;
}

.cf-tipBox[data-tip-error="true"] .cf-tipBox__support {
  display: none;
}

@media (max-width: 1180px) {
  .cf-tipBox {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cf-tipBox__main {
    width: 100%;
    flex: 0 0 auto;
    min-width: 0;
  }

  .cf-tipBox[data-tip-mode="grid"] .cf-tipBox__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .cf-tipBox {
    gap: 12px;
  }

  .cf-tipBox__title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .cf-tipBox__main {
    width: 100%;
    gap: 8px;
  }

  .cf-tipBox__trigger {
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    gap: 12px;
  }

  .cf-tipBox__selected {
    font-size: clamp(20px, 5.6vw, 28px);
  }

  .cf-tipBox__check {
    width: 28px;
    height: 28px;
  }

  .cf-tipBox__custom {
    flex-basis: 96px;
    min-height: 58px;
    padding: 0 12px;
    border-width: 3px;
    border-radius: 18px;
    font-size: 22px;
  }

  .cf-tipBox[data-tip-mode="grid"] .cf-tipBox__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .cf-tipBox__preset {
    min-height: 62px;
    border-radius: 14px;
    padding: 7px;
  }

  .cf-tipBox__preset span {
    font-size: clamp(12px, 3.2vw, 15px);
  }

  .cf-tipBox__preset strong {
    font-size: clamp(28px, 7.5vw, 38px);
  }

  .cf-tipBox__preset--other strong {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .cf-tipBox__support,
  .cf-tipBox__message {
    font-size: clamp(17px, 4.5vw, 22px);
    line-height: 1.4;
  }

  .cf-tipBox__message {
    padding: 18px;
    border-radius: 18px;
  }
}

/* =========================================================
   DONOR PREVIEW — HORIZONTAL SCROLL / HIDE SCROLLBAR
   ========================================================= */

.cf-yourDonationModal__donorPreview {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  padding: clamp(12px, 1.7cqw, 18px) 0 0;
  margin: 0;
}

.cf-yourDonationModal__donorPreview .cf-donorBoard__preview {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 0;
  margin: 0;
  padding: 0;
}

.cf-yourDonationModal__donorPreview .cf-donorCard {
  width: 100%;
  max-width: none;
  min-width: 0;
}

@media (max-width: 760px) {
  .cf-yourDonationModal__donorPreview {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }

  .cf-yourDonationModal__donorPreview::-webkit-scrollbar {
    display: none;
  }

  .cf-yourDonationModal__donorPreview.is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .cf-yourDonationModal__donorPreview .cf-donorBoard__preview {
    width: max-content;
    max-width: none;
    display: flex;
    gap: 0;
    margin: 0;
  }

  .cf-yourDonationModal__donorPreview .cf-donorCard {
    flex: 0 0 62vw;
    width: 62vw;
    max-width: 62vw;
  }
}

/* =========================================================
   YOUR DONATION MODAL — FIXED FOOTER
   ========================================================= */

.cf-yourDonationModal__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  width: 100%;
  margin: 0;
  background: var(--cf-modal-bg);
  transition:
    transform 180ms ease,
    opacity 140ms ease;
}

body.cf-kid-search-active .cf-yourDonationModal__footer {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.cf-yourDonationModal__footer::before {
  content: "";
  display: block;
  width: 100%;
  margin: 0 auto;
  border-top: 4px dashed rgba(38, 49, 64, 0.13);
}

.cf-yourDonationModal__footerInner {
  width: 100%;
  min-height: clamp(92px, 10cqw, 116px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(14px, 3.3cqw, 36px);
  padding: 0;
}

.cf-yourDonationModal__rightGroup {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.6cqw, 28px);
  min-width: 0;
}

.cf-yourDonationModal__back,
.cf-yourDonationModal__next {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--cf-modal-ink);
  cursor: pointer;
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  line-height: 1;
  margin-left: clamp(18px, 2.6cqw, 30px);
}

.cf-yourDonationModal__back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.8cqw, 20px);
  font-size: clamp(30px, 4cqw, 46px);
}

.cf-yourDonationModal__back i {
  font-size: 0.78em;
  line-height: 1;
}

.cf-yourDonationModal__back.is-disabled,
.cf-yourDonationModal__back:disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.cf-yourDonationModal__next {
  flex: 0 0 auto;
  min-width: clamp(210px, 26cqw, 300px);
  min-height: clamp(66px, 8cqw, 92px);
  padding: 0 clamp(26px, 4cqw, 46px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2cqw, 24px);
  border: clamp(3px, 0.4cqw, 5px) solid var(--cf-modal-ink);
  border-radius: clamp(26px, 2vw, 48px) 0 0 clamp(26px, 2vw, 48px);
  background: var(--cf-modal-yellow);
  box-shadow:
    -4px 6px 0 var(--cf-modal-ink),
    -7px 9px 0 rgba(38, 49, 64, 0.26);
  font-size: clamp(32px, 4.4cqw, 50px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.cf-yourDonationModal__next:hover {
  transform: translateY(-2px) scale(1.02);
}

.cf-yourDonationModal__next i {
  font-size: 0.58em;
  line-height: 1;
  transform: translateY(0.03em);
}

.cf-yourDonationModal__next--continue {
  background: var(--cf-modal-yellow);
}

.cf-yourDonationModal__next--confirm {
  background: #75c943;
}

.cf-yourDonationModal__next--skip {
  min-width: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: clamp(16px, 2cqw, 28px);
}

.cf-yourDonationModal__next--skip:hover {
  transform: none;
}

.cf-yourDonationModal__total {
  flex: 0 0 auto;
  min-width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-family: "Lobster", cursive;
  color: var(--ay-ink, #111);
}

.cf-yourDonationModal__totalLabel {
  font-size: clamp(15px, 1.9cqw, 21px);
  line-height: 1;
  color: var(--ay-ink-soft, #1b1b1b);
  transform: rotate(-3deg);
  text-wrap: nowrap;
  margin-bottom: 7px;
}

.cf-yourDonationModal__totalAmount {
  font-size: clamp(38px, 5.4cqw, 62px);
  line-height: 1;
  color: var(--ay-ink, #111);
  letter-spacing: -0.5px;
  transform: rotate(-3deg);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.cf-yourDonationModal__totalAmount sup {
  font-size: 0.35em;
  position: relative;
  top: -0.55em;
}

.cf-yourDonationModal__totalAmount .currency {
  font-size: 0.7em;
  line-height: 1;
  transform: rotate(-5deg);
  margin-bottom: 5px;
}

.cf-yourDonationModal__totalAmount .amount {
  line-height: 1;
}

@media (max-width: 960px) {
  .cf-yourDonationModal__footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
  }

  .cf-yourDonationModal__footer::before {
    width: min(100%, 1280px);
  }

  .cf-yourDonationModal__footerInner {
    width: min(100%, 1280px);
    min-height: clamp(118px, 9vw, 170px);
    gap: clamp(20px, 4vw, 70px);
    padding: 0;
  }

  .cf-yourDonationModal__back {
    margin-left: 16px;
  }

  .cf-yourDonationModal[data-step="2"] .cf-yourDonationModal__next--skip {
    margin-right: 16px;
  }

  .cf-yourDonationModal__next {
    min-width: clamp(250px, 22vw, 370px);
    min-height: clamp(78px, 6vw, 120px);
    padding: 0 clamp(34px, 3.6vw, 68px);
    font-size: clamp(36px, 3.3vw, 64px);
  }

  .cf-yourDonationModal__totalLabel {
    font-size: clamp(18px, 1.4vw, 28px);
    margin-bottom: 10px;
  }

  .cf-yourDonationModal__totalAmount {
    font-size: clamp(46px, 4.3vw, 82px);
  }
}

@media (max-width: 760px) {
  .cf-yourDonationModal__footer::before {
    border-top-width: 3px;
  }

  .cf-yourDonationModal__footerInner {
    min-height: 96px;
    grid-template-columns: auto 1fr;
    gap: 8px;
  }

  .cf-yourDonationModal__rightGroup {
    gap: 8px;
  }

  .cf-yourDonationModal__back {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    gap: 0;
    font-size: 30px;
  }

  .cf-yourDonationModal__back span {
    display: none;
  }

  .cf-yourDonationModal__back i {
    font-size: 1em;
  }

  .cf-yourDonationModal__total {
    min-width: 0;
    flex: 0 1 auto;
  }

  .cf-yourDonationModal__totalLabel {
    font-size: clamp(13px, 3.6vw, 18px);
    margin-bottom: 0;
  }

  .cf-yourDonationModal__totalAmount {
    font-size: clamp(34px, 10vw, 52px);
  }

  .cf-yourDonationModal__next {
    min-width: clamp(118px, 34vw, 160px);
    min-height: 58px;
    padding: 0 18px;
    gap: 10px;
    border-width: 3px;
    box-shadow:
      -3px 4px 0 var(--cf-modal-ink),
      -5px 6px 0 rgba(38, 49, 64, 0.24);
    font-size: clamp(25px, 7vw, 34px);
  }

  .cf-yourDonationModal__next--skip {
    min-width: auto;
    min-height: 42px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    font-size: clamp(26px, 8vw, 38px);
  }
}






/* =========================================================
   YOUR DONATION MODAL — STEP 2 / TAG SELECT
   ========================================================= */

.cf-yourDonationModal__stepGrid--tag {
  align-items: stretch;
}

.cf-yourDonationModal__stepCol--tagOptions,
.cf-yourDonationModal__stepCol--tagPreview {
  flex: 1 1 0;
  min-width: 0;
}

.cf-yourDonationModal__stepCol--tagOptions {
  overflow-y: auto;
  overflow-x: hidden;
}

.cf-yourDonationModal__stepCol--tagPreview {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
}

/* =========================================================
   TAG SELECT
   ========================================================= */

.cf-tagSelect {
  width: 100%;
  padding:
    clamp(10px, 1.4cqw, 18px)
    clamp(8px, 1.2cqw, 18px)
    0;
  box-sizing: border-box;
}

.cf-tagSelect__label {
  margin: 0 0 clamp(14px, 1.8cqw, 24px);
  padding-top: 0.08em;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 4.2cqw, 68px);
  line-height: 0.95;
  color: #ffffff;
  -webkit-text-stroke: clamp(1.5px, 0.16vw, 3px) var(--cf-modal-ink);
  paint-order: stroke fill;
  text-shadow:
    -0.035em 0.05em 0 var(--cf-modal-ink),
    -0.06em 0.08em 0 rgba(38, 49, 64, 0.8);
}

.cf-tagSelect__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 0.8cqw, 16px);
  align-items: flex-start;
}

/* =========================================================
   TAG PILL
   - all pills stay equal height
   ========================================================= */

.cf-tagPill {
  --cf-tag-pill-height: clamp(48px, 4.4cqw, 66px);
  --cf-tag-steal-height: calc(var(--cf-tag-pill-height) - 12px);

  height: var(--cf-tag-pill-height);
  min-height: 0;
  max-height: var(--cf-tag-pill-height);

  padding:
    clamp(7px, 0.7cqw, 10px)
    clamp(14px, 1.4cqw, 22px);

  border: 0;
  border-radius: 999px;
  background: var(--cf-modal-offwhite);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: clamp(8px, 0.9cqw, 12px);

  position: relative;
  overflow: visible;
  cursor: pointer;

  transition:
    transform 140ms ease,
    background-color 140ms ease,
    box-shadow 140ms ease;

  box-sizing: border-box;
}

.cf-tagPill:hover {
  transform: translateY(-1px);
}

.cf-tagPill.is-active {
  background: var(--cf-modal-yellow);
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.95);
}

.cf-tagPill__text {
  flex: 0 0 auto;
  min-width: 0;
  font-family: "Lobster", cursive;
  font-size: clamp(22px, 2cqw, 36px);
  line-height: 1;
  color: var(--cf-modal-ink);
  white-space: nowrap;
}

/* =========================================================
   CLAIMED / STEAL STATE
   - matches donor card look
   - never controls pill height
   ========================================================= */

.cf-tagPill[data-claimed="true"] {
  padding-left: clamp(8px, 0.9cqw, 14px);
}

.cf-tagPill .cf-donorCard__steal {
  flex: 0 0 auto;
  align-self: center;

  height: var(--cf-tag-steal-height);
  min-height: 0;
  max-height: var(--cf-tag-steal-height);
  min-width: calc(var(--cf-tag-steal-height) * 1.15);

  padding: 0 calc(var(--cf-tag-steal-height) * 0.12);
  box-sizing: border-box;

  display: inline-grid;
  grid-template-rows: auto auto;
  place-items: center;
  align-content: center;

  border-radius: calc(var(--cf-tag-steal-height) * 0.25);

  color: var(--cf-donor-ink, #263140);
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;

  transform: rotate(-1deg);
  transform-origin: center;

  overflow: visible;
}

.cf-tagPill .cf-donorCard__stealText {
  display: block;
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900;
  font-size: calc(var(--cf-tag-steal-height) * 0.24);
  line-height: 0.78;
  letter-spacing: -0.03em;
  color: var(--cf-donor-ink, #263140);
}

.cf-tagPill .cf-donorCard__stealAmount {
  display: block;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: calc(var(--cf-tag-steal-height) * 0.72);
  line-height: 0.68;

  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: calc(var(--cf-tag-steal-height) * 0.04) var(--cf-donor-ink, #263140);

  paint-order: stroke fill;
  text-shadow:
    -0.035em 0.055em 0 var(--cf-donor-ink, #263140),
    -0.06em 0.085em 0 rgba(38, 49, 64, 0.75);
}

.cf-tagPill[data-claimed="true"]:not(.is-active) .cf-donorCard__stealAmount {
  color: var(--cf-modal-yellow);
  -webkit-text-fill-color: var(--cf-modal-yellow);
}

.cf-tagPill[data-claimed="true"].is-active .cf-donorCard__stealAmount {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.cf-tagPill__lock {
  flex: 0 0 auto;
  font-size: clamp(16px, 1.3cqw, 22px);
  line-height: 1;
  color: var(--cf-modal-ink);
}

.cf-tagPill.is-active .cf-tagPill__lock::before {
  content: "\f09c";
}

/* =========================================================
   TAG PREVIEW
   - shared preview sizing only
   - does NOT hide message/alumni globally
   ========================================================= */

.cf-tagPreview {
  width: 100%;
  display: grid;
  place-items: start center;
  padding-top: clamp(8px, 1cqw, 18px);
  overflow: visible;
}

.cf-tagPreview .cf-donorCard,
.cf-donorCard--tagPreview {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
  pointer-events: auto;
}

.cf-donorCard--tagPreview {
  position: relative;
  width: min(100%, 500px);
  max-width: 500px;
  z-index: 1;
  --cf-donor-scale: 0.3;
  transform-origin: top center;
}

.cf-tagPreview,
.cf-yourDonationModal__stepCol--tagPreview,
.cf-yourDonationModal__stepCol--finalPreview,
.cf-donorCard--tagPreview,
.cf-donorCard--tagPreview .cf-donorCard__top {
  overflow: visible;
}

.cf-donorCard--tagPreview .cf-donorCard__top {
  width: 100%;
  display: grid;
  place-items: center;
}

.cf-donorCard--tagPreview .cf-donorCard__pill {
  width: max-content;
  max-width: none;
  justify-self: center;
  padding-left: clamp(18px, 3cqw, 34px);
  padding-right: clamp(18px, 3cqw, 34px);
  box-sizing: border-box;
}

.cf-donorCard--tagPreview .cf-donorCard__attrGroup {
  width: max-content;
  max-width: none;
  min-width: 0;
}

.cf-donorCard--tagPreview .cf-donorCard__attr {
  width: max-content;
  max-width: none;
  margin-right: 0;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
  font-size: clamp(18px, 6.6cqw, 36px);
}

.cf-donorCard--tagPreview.has-steal .cf-donorCard__attr {
  max-width: 62cqw;
  font-size: clamp(16px, 5.8cqw, 32px);
}

/* =========================================================
   STEP 2 DONOR PREVIEW — HIDE UNUSED PARTS ONLY HERE
   ========================================================= */

.cf-donorCard--step2Preview .cf-donorCard__message,
.cf-donorCard--step2Preview .cf-donorCard__rank,
.cf-donorCard--step2Preview .cf-donorCard__crown,
.cf-donorCard--step2Preview .cf-donorCard__alumni {
  display: none !important;
}

/* =========================================================
   TAG PREVIEW — TABLET / MOBILE
   ========================================================= */

@media (max-width: 900px) {
  .cf-yourDonationModal__stepCol--tagOptions,
  .cf-yourDonationModal__stepCol--tagPreview {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
  }

  .cf-tagPreview {
    padding-top: 0;
  }

  .cf-donorCard--tagPreview {
    width: min(100%, 420px);
    max-width: 420px;
    --cf-donor-scale: 0.3;
  }
}

@media (max-width: 760px) {
  .cf-donorCard--tagPreview {
    width: min(100%, 360px);
    max-width: 360px;
    --cf-donor-scale: 0.3;
  }

  .cf-donorCard--tagPreview .cf-donorCard__pill {
    max-width: calc(100vw - 32px);
  }

  .cf-donorCard--tagPreview .cf-donorCard__attr {
    font-size: clamp(18px, 6vw, 30px);
  }
}

/* =========================================================
   TAG PILL — MOBILE
   ========================================================= */

@media (max-width: 760px) {
  .cf-tagSelect {
    padding-inline: 0;
  }

  .cf-tagSelect__label {
    margin-bottom: 10px;
    font-size: clamp(30px, 9vw, 44px);
  }

  .cf-tagSelect__grid {
    gap: 6px;
  }

  .cf-tagPill {
    --cf-tag-pill-height: 38px;
    --cf-tag-steal-height: 30px;

    height: var(--cf-tag-pill-height);
    min-height: 0;
    max-height: var(--cf-tag-pill-height);

    padding: 6px 11px;
    gap: 6px;
  }

  .cf-tagPill__text {
    font-size: clamp(18px, 5vw, 27px);
  }

  .cf-tagPill .cf-donorCard__steal {
    height: var(--cf-tag-steal-height);
    max-height: var(--cf-tag-steal-height);
    min-width: calc(var(--cf-tag-steal-height) * 1.15);
    padding: 0 calc(var(--cf-tag-steal-height) * 0.12);
    border-radius: 8px;
    transform: rotate(-1deg);
    margin-right: 0;
  }

  .cf-tagPill .cf-donorCard__stealText {
    font-size: calc(var(--cf-tag-steal-height) * 0.24);
    line-height: 0.78;
  }

  .cf-tagPill .cf-donorCard__stealAmount {
    font-size: calc(var(--cf-tag-steal-height) * 0.72);
    line-height: 0.68;
    -webkit-text-stroke: calc(var(--cf-tag-steal-height) * 0.04) var(--cf-donor-ink, #263140);
  }

  .cf-tagPill__lock {
    font-size: 14px;
  }
}

/* =========================================================
   FOOTER NEXT BUTTON — STEP 2 SKIP STATE
   ========================================================= */

.cf-yourDonationModal[data-step="2"] .cf-yourDonationModal__next--skip {
  min-width: auto;
  min-height: auto;
  padding: 0;

  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8cqw, 20px);

  color: var(--cf-modal-ink);
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4cqw, 46px);
  line-height: 1;
  margin-right: clamp(18px, 2.6cqw, 30px);
}

.cf-yourDonationModal[data-step="2"] .cf-yourDonationModal__next--skip:hover {
  transform: none;
}

.cf-yourDonationModal[data-step="2"] .cf-yourDonationModal__next--skip i {
  font-size: 0.78em;
  line-height: 1;
  transform: translateY(0.02em);
}

@media (max-width: 760px) {
  .cf-yourDonationModal[data-step="2"] .cf-yourDonationModal__next--skip {
    min-width: auto;
    min-height: 42px;
    padding: 0;
    font-size: 30px;
  }
}

/* =========================================================
   YOUR DONATION MODAL — STEP 3 / FINAL TOUCHES
   ========================================================= */

.cf-yourDonationModal [data-your-donation-step="3"] {
  min-height: 0;
}

/* Step 3 scrolls as one content flow on desktop too */
.cf-yourDonationModal[data-step="3"] .cf-yourDonationModal__body {
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: clamp(118px, 13cqw, 155px);
}

.cf-yourDonationModal[data-step="3"] [data-your-donation-step="3"] {
  display: block;
  height: auto;
  min-height: 0;
}

.cf-yourDonationModal__stepGrid--final {
  align-items: stretch;
  height: auto;
  min-height: 0;
  overflow: visible;
}

.cf-yourDonationModal__stepCol--finalForm,
.cf-yourDonationModal__stepCol--finalPreview {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
}

.cf-yourDonationModal__stepCol--finalForm {
  overflow: visible;
  padding:
    clamp(10px, 1.4cqw, 18px)
    clamp(8px, 1.2cqw, 18px)
    0;
}

.cf-yourDonationModal__stepCol--finalPreview {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.cf-finalTouches {
  width: 100%;
  display: grid;
  gap: clamp(22px, 3cqw, 42px);
  color: var(--cf-modal-ink);
  font-family: "Work Sans", system-ui, sans-serif;
}

.cf-finalTouches[data-anonymous="true"] .cf-finalTouches__fields,
.cf-finalTouches[data-anonymous="true"] .cf-finalCheck--alumni {
  display: none;
}

.cf-finalTouches__fields {
  display: grid;
  gap: clamp(14px, 1.8cqw, 24px);
}

/* =========================================================
   STEP 3 — CHECKBOX ROWS
   ========================================================= */

.cf-finalCheck {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(12px, 1.5cqw, 18px);
  cursor: pointer;
  color: var(--cf-modal-ink);
}

.cf-finalCheck__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cf-finalCheck__box {
  width: clamp(28px, 2.8cqw, 38px);
  height: clamp(28px, 2.8cqw, 38px);
  border: clamp(3px, 0.35cqw, 4px) solid var(--cf-modal-ink);
  border-radius: clamp(6px, 0.7cqw, 9px);
  background: transparent;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

.cf-finalCheck__box i {
  opacity: 0;
  font-size: 0.88em;
  line-height: 1;
  color: var(--cf-modal-ink);
  font-weight: 900;
  -webkit-text-stroke: 1.2px var(--cf-modal-ink);
  transform: translateY(0.02em);
}

.cf-finalCheck__input:checked + .cf-finalCheck__box {
  background: var(--cf-modal-yellow);
}

.cf-finalCheck__input:checked + .cf-finalCheck__box i {
  opacity: 1;
}

.cf-finalCheck__content {
  min-width: 0;
  display: grid;
  gap: clamp(5px, 0.6cqw, 8px);
}

.cf-finalCheck__title {
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.1cqw, 30px);
  line-height: 1.05;
}

.cf-finalCheck__desc {
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.25cqw, 18px);
  line-height: 1.25;
  color: rgba(38, 49, 64, 0.88);
}

/* =========================================================
   STEP 3 — INPUTS
   ========================================================= */

.cf-finalInput {
  width: 100%;
  display: grid;
  gap: clamp(8px, 1cqw, 12px);
}

.cf-finalInput__field {
  min-height: clamp(66px, 6.7cqw, 88px);
  padding: 0 clamp(20px, 2.4cqw, 30px);
  border: clamp(3px, 0.35cqw, 4px) solid transparent;
  border-radius: clamp(22px, 2.8cqw, 32px);
  background: var(--cf-modal-offwhite);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.4cqw, 18px);
  box-sizing: border-box;
}

.cf-finalInput[data-error="true"] .cf-finalInput__field {
  border-color: var(--cf-modal-red);
}

.cf-finalInput input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cf-modal-ink);
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.1cqw, 28px);
  line-height: 1;
}

.cf-finalInput input::placeholder {
  color: rgba(38, 49, 64, 0.28);
}

.cf-finalInput__count {
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.35cqw, 18px);
  color: rgba(38, 49, 64, 0.75);
  white-space: nowrap;
}

.cf-finalInput__error {
  width: 100%;
  padding: clamp(10px, 1.2cqw, 14px) clamp(14px, 1.6cqw, 18px);
  box-sizing: border-box;
  border: 2px solid rgba(199, 37, 47, 0.24);
  border-radius: clamp(16px, 2cqw, 22px);
  background: var(--cf-modal-red-bg);
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.2cqw, 16px);
  line-height: 1.25;
  color: #651516;
}

.cf-finalInput__error[hidden] {
  display: none !important;
}

/* =========================================================
   STEP 3 — FINAL PREVIEW
   ========================================================= */

.cf-tagPreview--final {
  align-items: center;
}

.cf-donorCard--finalPreview.is-anonymous {
  opacity: 0.52;
  filter: grayscale(1);
}

.cf-donorCard--finalPreview.is-anonymous .cf-donorCard__top,
.cf-donorCard--finalPreview.is-anonymous .cf-donorCard__message,
.cf-donorCard--finalPreview.is-anonymous .cf-donorCard__alumni {
  display: none !important;
}

/* =========================================================
   STEP 3 — AGREEMENT BLOCK
   - normal content below the split columns
   - scrolls with Step 3 content on desktop and mobile
   ========================================================= */

.cf-footerAgreement {
  display: none;
  width: 100%;
  margin: clamp(18px, 2cqw, 28px) 0 0;
  padding:
    clamp(12px, 1.2cqw, 18px)
    clamp(8px, 1.2cqw, 18px)
    0;
  border-top: 0;
  color: var(--cf-modal-ink);
  background: transparent;
  box-sizing: border-box;
  position: static;
}

.cf-yourDonationModal[data-step="3"] .cf-footerAgreement {
  display: block;
}

.cf-footerAgreement .cf-finalCheck__title {
  font-size: clamp(18px, 1.7cqw, 24px);
}

.cf-footerAgreement .cf-finalCheck__desc {
  max-width: none;
  font-size: clamp(10px, 0.9cqw, 13px);
  line-height: 1.24;
}

.cf-footerAgreement[data-error="true"] .cf-finalCheck__box {
  border-color: var(--cf-modal-red);
}

.cf-footerAgreement__error {
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--cf-modal-red-bg);
  color: #651516;
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
}

.cf-footerAgreement__error[hidden] {
  display: none !important;
}

/* =========================================================
   STEP 3 — AGREEMENT / CONFIRM DISABLED STATE
   ========================================================= */

.cf-yourDonationModal__next.is-disabled,
.cf-yourDonationModal__next:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
  transform: none !important;
}

.cf-yourDonationModal__next.is-disabled:hover,
.cf-yourDonationModal__next:disabled:hover {
  transform: none !important;
}

/* =========================================================
   STEP 3 — TABLET / MOBILE LAYOUT
   ========================================================= */

@media (max-width: 900px) {
  .cf-yourDonationModal[data-step="3"] [data-your-donation-step="3"] {
    display: block;
    height: auto;
  }

  .cf-yourDonationModal__stepCol--finalForm,
  .cf-yourDonationModal__stepCol--finalPreview {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
  }

  .cf-yourDonationModal__stepCol--finalPreview {
    order: 2;
  }

  .cf-yourDonationModal__stepCol--finalForm {
    order: 1;
  }
}

/* =========================================================
   STEP 3 — MOBILE
   ========================================================= */

@media (max-width: 760px) {
  .cf-finalTouches {
    gap: 18px;
  }

  .cf-finalCheck {
    gap: 10px;
  }

  .cf-finalCheck__box {
    width: 30px;
    height: 30px;
    border-width: 3px;
    border-radius: 7px;
  }

  .cf-finalCheck__box i {
    font-size: 0.9em;
    -webkit-text-stroke-width: 1.1px;
  }

  .cf-finalCheck__title {
    font-size: clamp(18px, 5.3vw, 24px);
  }

  .cf-finalCheck__desc {
    font-size: clamp(13px, 3.6vw, 16px);
  }

  .cf-finalInput__field {
    min-height: 58px;
    padding: 0 18px;
    border-radius: 22px;
  }

  .cf-finalInput input {
    font-size: clamp(17px, 4.8vw, 22px);
  }

  .cf-footerAgreement {
    width: 100%;
    margin: 18px 0 0;
    padding: 0;
    background: transparent;
  }

  .cf-footerAgreement .cf-finalCheck__desc {
    font-size: 10px;
    line-height: 1.22;
  }

  .cf-yourDonationModal[data-step="3"] .cf-yourDonationModal__body {
    padding-bottom: clamp(100px, 24vw, 118px);
  }

  .cf-tagPreview {
    margin-top: 18px;
    margin-bottom: 22px;
  }

  .cf-donorCard--tagPreview {
    margin-top: 0;
    margin-bottom: 0;
  }


}




/* =========================================================
   YOUR DONATION MODAL — STEP 4 / SHARE SCREEN
   ========================================================= */

.cf-yourDonationModal[data-step="4"] {
  --cf-share-blue: #2da9df;
  --cf-share-email: #f04a1b;
  --cf-share-facebook: #376bd2;
  --cf-share-x: #202933;
  --cf-share-qr: #f2b600;
  --cf-share-copy: #fbf9f1;
  --cf-share-green: #78cf36;
}

.cf-yourDonationModal[data-step="4"] [data-your-donation-step="4"] {
  display: block;
}

.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__progressMain,
.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__head,
.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__footer {
  display: none !important;
}

/* Keep only the close button visible */
.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__progress {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  pointer-events: none;
}

.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__progressTrack {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.cf-yourDonationModal[data-step="4"] .cf-modalClose,
.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__close {
  pointer-events: auto;
}

.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__dialog {
  padding-bottom: 0 !important;
}

/* Step 4 body scrolls above its own fixed share footer */
.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__body {
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: clamp(132px, 14cqw, 172px);
}

.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__stepPanel {
  height: auto;
  min-height: 100%;
}

.cf-shareStep {
  position: relative;
  width: 100%;
  min-height: 100%;
  color: var(--cf-modal-ink);
  font-family: "Work Sans", system-ui, sans-serif;
}

.cf-shareStep__body {
  width: 100%;
}

.cf-shareStep__inner {
  position: relative;
  width: min(100%, 980px);
  min-height: clamp(520px, 60cqw, 680px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  align-content: start;
  padding:
    clamp(8px, 1.2cqw, 16px)
    clamp(18px, 3cqw, 42px)
    clamp(48px, 5cqw, 76px);
  box-sizing: border-box;
  overflow: visible;
}

/* =========================================================
   STEP 4 — TOP SUCCESS AREA
   ========================================================= */

.cf-shareStep__hero {
  width: min(100%, 620px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.cf-shareStep__titleBlock {
  display: grid;
  justify-items: center;
  gap: clamp(2px, 0.5cqw, 6px);
}

.cf-shareStep__eyebrow,
.cf-shareStep__kidName {
  margin: 0;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cf-modal-ink);
  line-height: 0.86;
  letter-spacing: -0.02em;
  paint-order: stroke fill;
  -webkit-text-stroke: clamp(1px, 0.14cqw, 2px) rgba(255, 255, 255, 0.98);
  text-shadow:
    -0.025em 0.035em 0 rgba(255, 255, 255, 0.95),
    0.018em -0.018em 0 rgba(255, 255, 255, 0.7),
    0 4px 0 rgba(38, 49, 64, 0.12);
}

.cf-shareStep__eyebrow {
  font-size: clamp(34px, 5cqw, 58px);
}

.cf-shareStep__kidName {
  font-size: clamp(68px, 10cqw, 118px);
  -webkit-text-stroke-width: clamp(1.5px, 0.18cqw, 2.6px);
}

.cf-shareStep__mediaRow {
  position: relative;
  width: min(100%, 540px);
  min-height: clamp(190px, 25cqw, 250px);
  margin-top: clamp(2px, 0.8cqw, 10px);
  display: grid;
  grid-template-columns: clamp(190px, 25cqw, 250px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(8px, 1.5cqw, 18px);
}

.cf-shareStep__photoWrap {
  position: relative;
  width: clamp(180px, 24cqw, 235px);
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: visible;
  justify-self: end;
}

.cf-shareStep__photo {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
  object-fit: cover;
}

.cf-shareStep__successBadge {
  position: absolute;
  left: clamp(-20px, -2cqw, -12px);
  top: clamp(4px, 1cqw, 12px);
  z-index: 3;
  width: clamp(72px, 8.5cqw, 96px);
  height: clamp(72px, 8.5cqw, 96px);
  border: clamp(6px, 0.8cqw, 10px) solid var(--cf-modal-bg);
  border-radius: 999px;
  background: var(--cf-share-green);
  display: grid;
  place-items: center;
  box-sizing: border-box;
  box-shadow: 0 6px 0 rgba(38, 49, 64, 0.18);
}

.cf-shareStep__successBadge i {
  font-size: clamp(30px, 4cqw, 48px);
  line-height: 1;
  color: #ffffff;
}

.cf-shareStep__thanksArea {
  position: relative;
  align-self: center;
  justify-self: start;
  display: grid;
  justify-items: start;
  gap: clamp(8px, 1.1cqw, 14px);
  text-align: left;
  
  
}

.cf-shareStep__speechSvg {
  display: block;
  width: clamp(190px, 20cqw, 270px);
  height: auto;
  transform: rotate(2deg);
  transform-origin: center;
  filter: drop-shadow(-3px 4px 0 rgba(38, 49, 64, 0.14));
  transform: translateX(clamp(-100px, -8cqw, -50px)) translateY(clamp(-30px, -5cqw, -20px));
}

.cf-shareStep__helpText {
  max-width: 24ch;
  margin: 0;
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(17px, 2cqw, 23px);
  line-height: 1.28;
  color: rgba(38, 49, 64, 0.9);
  transform: translateY(clamp(-40px, -6cqw, -30px));
}

.cf-shareStep__helpText strong {
  font-weight: 900;
}

/* =========================================================
   STEP 4 — SHARE MESSAGE CARD
   ========================================================= */

.cf-shareStep__card {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  margin-top: clamp(-16px, -1.5cqw, -8px);
  padding:
    clamp(34px, 4cqw, 54px)
    clamp(20px, 2.6cqw, 34px)
    clamp(24px, 2.8cqw, 36px);
  box-sizing: border-box;
  border-radius: 0 26px 26px 26px;
  background: rgba(251, 249, 241, 0.9);
  overflow: visible;
}

.cf-shareStep__labelSvg {
  position: absolute;
  left: clamp(-4px, -0.4cqw, -2px);
  top: 0;
  z-index: 3;
  transform: translateY(-58%) rotate(1.4deg);
  transform-origin: left bottom;
  display: block;
  width: clamp(270px, 29cqw, 400px);
  height: auto;
  filter: drop-shadow(-3px 4px 0 rgba(38, 49, 64, 0.18));
  pointer-events: none;
}

.cf-shareStep__messageBox {
  width: 100%;
  min-width: 0;
  display: block;
  box-sizing: border-box;
  overflow: visible;
}

.cf-shareStep__messageLabel {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.cf-shareStep__message {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: auto;
  margin: 0;
  padding: 6px 0 18px;
  border: 0;
  outline: 0;
  resize: none;
  overflow: hidden;
  box-sizing: content-box;

  background: transparent;
  color: var(--cf-modal-ink);
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.05cqw, 25px);
  line-height: 1.36;
  letter-spacing: 0.025em;
  appearance: none;
}

.cf-shareStep__message::placeholder {
  color: rgba(38, 49, 64, 0.35);
}

@media (max-width: 760px) {
  .cf-shareStep__card {
    width: 100%;
    margin-top: -4px;
    padding: 44px 16px 22px;
    border-radius: 0 22px 22px 22px;
  }

  .cf-shareStep__labelSvg {
    width: clamp(240px, 72vw, 330px);
    transform: translateY(-58%) rotate(1.4deg);
  }

  .cf-shareStep__message {
    padding: 6px 0 18px;
    font-size: clamp(18px, 5.1vw, 23px);
    line-height: 1.36;
    letter-spacing: 0.02em;
  }
}


/* =========================================================
   STEP 4 — FIXED SHARE FOOTER
   ========================================================= */

.cf-shareStep__footer {
  display: none;
}

.cf-yourDonationModal[data-step="4"] .cf-shareStep__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  width: 100%;
  margin: 0;
  display: block;
  background: var(--cf-modal-bg);
  transition:
    transform 180ms ease,
    opacity 140ms ease;
}

.cf-shareStep__footer::before {
  content: "";
  display: block;
  width: 100%;
  margin: 0 auto;
  border-top: 4px dashed rgba(38, 49, 64, 0.13);
}

.cf-shareStep__footerInner {
  width: 100%;
  min-height: clamp(132px, 13cqw, 168px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding:
    clamp(18px, 2cqw, 26px)
    clamp(20px, 2.8cqw, 34px);
  box-sizing: border-box;
}

.cf-shareStep__actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(10px, 1.1cqw, 16px);
}

.cf-shareBtn {
  --cf-share-btn-bg: var(--cf-share-blue);
  --cf-share-btn-ink: #ffffff;
  --cf-share-btn-border: #111820;
  --cf-share-btn-shadow: #111820;
  --cf-share-btn-shadow-x: clamp(4px, 0.48cqw, 6px);
  --cf-share-btn-shadow-y: clamp(4px, 0.48cqw, 6px);

  appearance: none;
  -webkit-appearance: none;

  min-width: 0;
  min-height: clamp(82px, 7.6cqw, 104px);
  padding:
    clamp(12px, 1.2cqw, 16px)
    clamp(14px, 1.7cqw, 24px);

  border: clamp(3px, 0.34cqw, 4px) solid var(--cf-share-btn-border);
  border-radius: clamp(20px, 2.1cqw, 30px);

  background: var(--cf-share-btn-bg);
  color: var(--cf-share-btn-ink);

  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 1.3cqw, 20px);

  text-align: left;
  cursor: pointer;

  box-shadow:
    calc(-1 * var(--cf-share-btn-shadow-x))
    var(--cf-share-btn-shadow-y)
    0
    var(--cf-share-btn-shadow);

  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    filter 150ms ease;

  box-sizing: border-box;
  transform: translateY(0);
}

.cf-shareBtn:hover {
  --cf-share-btn-shadow-x: clamp(5px, 0.58cqw, 7px);
  --cf-share-btn-shadow-y: clamp(5px, 0.58cqw, 7px);

  transform: translateY(-2px);
  filter: brightness(1.035);
}

.cf-shareBtn:active {
  --cf-share-btn-shadow-x: 2px;
  --cf-share-btn-shadow-y: 2px;

  transform: translate(-2px, 3px);
  filter: brightness(0.98);
}

.cf-shareBtn:focus-visible {
  outline: clamp(2px, 0.28cqw, 4px) solid rgba(255, 255, 255, 0.78);
  outline-offset: 4px;
}

.cf-shareBtn__icon {
  width: clamp(36px, 3.9cqw, 54px);
  height: clamp(36px, 3.9cqw, 54px);
  display: grid;
  place-items: center;
  color: currentColor;
  transform: rotate(-5deg);
}

.cf-shareBtn__icon i {
  font-size: clamp(25px, 2.85cqw, 40px);
  line-height: 1;
  color: currentColor;
}

.cf-shareBtn--sms .cf-shareBtn__icon {
  transform: rotate(5deg);
}

.cf-shareBtn--email .cf-shareBtn__icon {
  transform: rotate(-4deg);
}

.cf-shareBtn--facebook .cf-shareBtn__icon {
  transform: rotate(-6deg);
}

.cf-shareBtn--x .cf-shareBtn__icon {
  transform: rotate(-3deg);
}

.cf-shareBtn--qr .cf-shareBtn__icon,
.cf-shareBtn--copy .cf-shareBtn__icon {
  transform: rotate(4deg);
}

.cf-shareBtn__text {
  min-width: 0;
  display: grid;
  gap: clamp(1px, 0.18cqw, 3px);
}

.cf-shareBtn__text span,
.cf-shareBtn__text strong {
  display: block;
  line-height: 0.95;
  white-space: nowrap;
  color: currentColor;
}

.cf-shareBtn__text span {
  font-family: "Saira Semi Condensed", "Saira Condensed", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1.25cqw, 17px);
  letter-spacing: 0.04em;
}

.cf-shareBtn__text strong {
  font-family: "Saira Semi Condensed", "Saira Condensed", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.45cqw, 34px);
  letter-spacing: 0.01em;
}

.cf-shareBtn--sms {
  --cf-share-btn-bg: var(--cf-share-blue);
  --cf-share-btn-ink: #ffffff;
}

.cf-shareBtn--email {
  --cf-share-btn-bg: var(--cf-share-email);
  --cf-share-btn-ink: #ffffff;
}

.cf-shareBtn--facebook {
  --cf-share-btn-bg: var(--cf-share-facebook);
  --cf-share-btn-ink: #ffffff;
}

.cf-shareBtn--x {
  --cf-share-btn-bg: var(--cf-share-x);
  --cf-share-btn-ink: #ffffff;
}

.cf-shareBtn--qr {
  --cf-share-btn-bg: var(--cf-share-qr);
  --cf-share-btn-ink: var(--cf-modal-ink);
}

.cf-shareBtn--copy {
  --cf-share-btn-bg: var(--cf-share-copy);
  --cf-share-btn-ink: var(--cf-modal-ink);
}

/* SMS hidden on desktop */
.cf-shareBtn--mobileOnly {
  display: none;
}

/* Existing page QR lightbox must sit above the donation modal */
body.cf-yourDonationModal-open .ff-fundraiser .cf-qrLightbox {
  z-index: 10050;
  pointer-events: auto;
}

body.cf-yourDonationModal-open .ff-fundraiser .cf-qrLightbox * {
  pointer-events: auto;
}
/* =========================================================
   STEP 4 — RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {
  .cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__body {
    padding-bottom: clamp(200px, 26vw, 280px);
  }

  .cf-shareStep__inner {
    width: min(100%, 760px);
    min-height: 0;
    padding-inline: clamp(10px, 4vw, 40px);
  }

  .cf-yourDonationModal[data-step="4"] .cf-shareStep__footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .cf-shareStep__footerInner {
    width: min(100%, 1280px);
    min-height: clamp(150px, 18vw, 220px);
    margin: 0 auto;
  }

  .cf-shareStep__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cf-shareBtn--mobileOnly {
    display: grid;
  }
}

@media (max-width: 760px) {
  .cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__body {
    padding-bottom: clamp(300px, 74vw, 390px);
  }

  .cf-shareStep__inner {
    padding:
      8px
      0
      34px;
  }

  .cf-shareStep__eyebrow {
    font-size: clamp(30px, 9vw, 44px);
  }

  .cf-shareStep__kidName {
    font-size: clamp(56px, 16vw, 82px);
  }

  .cf-shareStep__mediaRow {
    width: min(100%, 420px);
    min-height: 176px;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 8px;
  }

  .cf-shareStep__photoWrap {
    width: 150px;
  }

  .cf-shareStep__successBadge {
    width: 62px;
    height: 62px;
    left: -12px;
    top: 2px;
    border-width: 6px;
  }

  .cf-shareStep__successBadge i {
    font-size: 30px;
  }

  .cf-shareStep__thanksArea {
    transform: translateX(-10px);
  }

  .cf-shareStep__speechSvg {
    width: clamp(150px, 43vw, 205px);
  }

  .cf-shareStep__helpText {
    font-size: clamp(14px, 4vw, 18px);
    max-width: 18ch;
  }

  .cf-shareStep__card {
    width: 100%;
    margin-top: -4px;
    padding: 42px 16px 18px;
    border-radius: 0 22px 22px 22px;
  }

  .cf-shareStep__labelSvg {
    width: clamp(240px, 72vw, 330px);
    transform: translateY(-58%) rotate(1.4deg);
  }

  .cf-shareStep__message {
    min-height: 104px;
    font-size: clamp(19px, 5.6vw, 25px);
    letter-spacing: 0.02em;
  }

  .cf-shareStep__footer::before {
    border-top-width: 3px;
  }

  .cf-shareStep__footerInner {
    min-height: auto;
    padding: 10px 12px 16px;
  }

  .cf-shareStep__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cf-shareBtn {
    --cf-share-btn-shadow-x: 3px;
    --cf-share-btn-shadow-y: 3px;

    min-height: 64px;
    padding: 8px 11px;
    border-width: 3px;
    border-radius: 18px;
    gap: 9px;
  }

  .cf-shareBtn:hover {
    --cf-share-btn-shadow-x: 4px;
    --cf-share-btn-shadow-y: 4px;

    transform: translateY(-2px);
  }

  .cf-shareBtn:active {
    --cf-share-btn-shadow-x: 1.5px;
    --cf-share-btn-shadow-y: 1.5px;

    transform: translate(-1.5px, 2px);
  }

  .cf-shareBtn__icon {
    width: 30px;
    height: 30px;
  }

  .cf-shareBtn__icon i {
    font-size: 23px;
  }

  .cf-shareBtn__text span {
    font-size: clamp(11px, 3.1vw, 14px);
  }

  .cf-shareBtn__text strong {
    font-size: clamp(19px, 5.4vw, 27px);
  }
}

@media (max-width: 390px) {
  .cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__body {
    padding-bottom: 280px;
  }

  .cf-shareBtn {
    --cf-share-btn-shadow-x: 2.5px;
    --cf-share-btn-shadow-y: 2.5px;

    min-height: 58px;
    padding: 7px 9px;
    border-radius: 16px;
  }

  .cf-shareBtn__icon {
    width: 25px;
    height: 25px;
  }

  .cf-shareBtn__icon i {
    font-size: 19px;
  }

  .cf-shareBtn__text span {
    font-size: 10px;
  }

  .cf-shareBtn__text strong {
    font-size: 18px;
  }
}
/* =========================================================
   STEP 4 — QR CONTENT VIEW
   ========================================================= */

.cf-shareStep__qrBack[hidden],
.cf-shareStep__qrView[hidden],
.cf-shareStep__main[hidden] {
  display: none !important;
}

.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__progressTrack {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(12px, 1.8cqw, 22px);
}

.cf-yourDonationModal[data-step="4"] .cf-yourDonationModal__close {
  margin-left: auto;
}

.cf-shareStep__qrBack {
  flex: 0 0 auto;
  align-self: flex-start;
}

.cf-shareStep__qrBack .cf-modalClose__inner i {
  transform: translateX(-0.03em);
}

.cf-yourDonationModal[data-step="4"][data-share-view="qr"] .cf-yourDonationModal__body {
  padding-bottom: clamp(132px, 14cqw, 172px);
}

.cf-yourDonationModal[data-step="4"][data-share-view="qr"] .cf-shareStep {
  min-height: 100%;
  display: grid;
}

.cf-shareStep__qrView {
  width: 100%;
  min-height: clamp(480px, 58cqw, 650px);
  display: grid;
  place-items: center;
  padding:
    clamp(18px, 3cqw, 34px)
    clamp(18px, 3cqw, 42px)
    clamp(44px, 5cqw, 74px);
  box-sizing: border-box;
}

.cf-shareStep__qrViewInner {
  width: min(100%, 520px);
  display: grid;
  justify-items: center;
  gap: clamp(14px, 2cqw, 22px);
}

.cf-shareStep__qrImageWrap {
  width: min(100%, 420px);
  display: grid;
  place-items: center;
}

.cf-shareStep__qrImage {
  width: 100%;
  max-height: min(420px, 58svh);
  height: auto;
  object-fit: contain;
  display: block;
  padding: clamp(12px, 2cqw, 18px);
  box-sizing: border-box;
  border-radius: clamp(16px, 2cqw, 22px);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.cf-shareStep__qrDownload {
  min-height: clamp(52px, 5.8cqw, 66px);
  padding:
    clamp(10px, 1.2cqw, 14px)
    clamp(24px, 3cqw, 36px);
  border-radius: clamp(18px, 2.2cqw, 24px);
  background: var(--cf-modal-yellow);
  color: var(--cf-modal-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Saira Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3cqw, 36px);
  line-height: 1;
}

@media (max-width: 960px) {
  .cf-yourDonationModal[data-step="4"][data-share-view="qr"] .cf-yourDonationModal__body {
    padding-bottom: clamp(170px, 22vw, 260px);
  }

  .cf-shareStep__qrView {
    min-height: calc(100dvh - clamp(190px, 24vw, 290px));
  }
}

@media (max-width: 760px) {
  .cf-shareStep__qrView {
    min-height: calc(100dvh - clamp(230px, 55vw, 320px));
    padding:
      24px
      0
      34px;
  }

  .cf-shareStep__qrViewInner {
    width: min(100%, 330px);
    gap: 14px;
  }

  .cf-shareStep__qrImageWrap {
    width: min(100%, 300px);
  }

  .cf-shareStep__qrImage {
    max-height: min(300px, 46svh);
    padding: 12px;
    border-radius: 16px;
  }

  .cf-shareStep__qrDownload {
    min-height: 54px;
    padding: 10px 24px;
    border-radius: 18px;
    font-size: 26px;
  }

  .cf-yourDonationModal[data-step="4"] .cf-shareStep__qrBack {
    width: 38px;
    height: 38px;
  }
}


/* =========================================================
   STEP 4 — SHARE CONTENT WIDTH / MESSAGE INPUT TUNING
   ========================================================= */

.cf-shareStep__inner {
  --cf-share-content-width: min(100%, 620px);
}

/* Top headline area matches the share input/card width */
.cf-shareStep__hero,
.cf-shareStep__titleBlock,
.cf-shareStep__mediaRow,
.cf-shareStep__card {
  width: var(--cf-share-content-width);
  max-width: var(--cf-share-content-width);
}

/* Make the title text feel like one unified block */
.cf-shareStep__titleBlock {
  text-align: center;
  justify-items: center;
}

.cf-shareStep__eyebrow,
.cf-shareStep__kidName {
  width: 100%;
}

/* Keep image + explainer locked to same width as the card */
.cf-shareStep__mediaRow {
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  justify-content: center;
}

/* Let the image sit nicely inside the shared width */
.cf-shareStep__photoWrap {
  justify-self: end;
}

.cf-shareStep__thanksArea {
  justify-self: start;
}

/* Textarea should fit the text without fake bottom space */
.cf-shareStep__message {
  min-height: 0;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  padding: 6px 0 0;
  font-size: clamp(18px, 2.05cqw, 25px);
  line-height: 1.24;
  letter-spacing: 0.025em;
}

/* Keep the breathing room on the card, not inside the input */
.cf-shareStep__card {
  padding-bottom: clamp(18px, 2.2cqw, 28px);
}

@media (max-width: 760px) {
  .cf-shareStep__inner {
    --cf-share-content-width: 100%;
  }

  .cf-shareStep__mediaRow {
    width: min(100%, 420px);
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .cf-shareStep__card {
    width: 100%;
    padding-bottom: 20px;
  }

  .cf-shareStep__message {
    padding: 6px 0 0;
    font-size: clamp(18px, 5.1vw, 23px);
    line-height: 1.25;
  }
}