/*
Theme Name: Crunch for a Cause
Theme URI: https://crunchforacause.co.za
Author: Merchant Platform
Description: A warm, accessible WooCommerce storefront created for Crunch for a Cause.
Version: 1.2.0
Requires at least: 6.5
Requires PHP: 7.4
Text Domain: crunch-for-a-cause
*/

:root {
  --cfc-purple: #5d2378;
  --cfc-purple-dark: #21092f;
  --cfc-gold: #d89a24;
  --cfc-gold-soft: #f3df9b;
  --cfc-cream: #fff8ec;
  --cfc-cream-deep: #f7edda;
  --cfc-ink: #2b123f;
  --cfc-text: #4b3d4f;
  --cfc-muted: #766b79;
  --cfc-white: #fff;
  --cfc-border: #eadfc9;
  --cfc-success: #2f7d5b;
  --cfc-radius: 10px;
  --cfc-radius-small: 6px;
  --cfc-shadow: 0 18px 45px rgba(43, 18, 63, 0.13);
  --cfc-content: 1200px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--cfc-text);
  background: var(--cfc-cream);
  font-family: "Lora", Georgia, serif;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--cfc-purple);
  text-decoration: none;
}
a:hover {
  color: var(--cfc-purple-dark);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--cfc-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
}
p {
  margin-top: 0;
}
.cfc-wrap {
  width: min(calc(100% - 44px), var(--cfc-content));
  margin-inline: auto;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--cfc-ink);
  background: rgba(255, 250, 240, 0.96);
  border-bottom: 1px solid rgba(217, 165, 33, 0.25);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  min-width: 0;
}
.custom-logo {
  display: block;
  max-height: 58px;
  width: auto;
}
.site-title {
  color: var(--cfc-ink);
  font:
    700 clamp(1.18rem, 2vw, 1.55rem) "Cormorant Garamond",
    Georgia,
    serif;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation a {
  color: var(--cfc-ink);
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.79rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.main-navigation a:hover {
  color: var(--cfc-purple);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.header-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 17px;
  color: var(--cfc-white);
  background: var(--cfc-purple);
  border-radius: 4px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.header-donate:hover {
  color: var(--cfc-white);
  background: var(--cfc-purple-dark);
}
.header-cart {
  position: relative;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  color: var(--cfc-ink);
  background: var(--cfc-white);
  border: 1px solid var(--cfc-border);
  border-radius: 50%;
}
.header-cart svg {
  width: 21px;
  height: 21px;
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  color: var(--cfc-white);
  background: var(--cfc-gold);
  border: 2px solid var(--cfc-cream);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
}
.menu-toggle {
  display: none;
  width: 43px;
  min-height: 43px;
  padding: 0;
  color: var(--cfc-ink);
  background: var(--cfc-white);
  border: 1px solid var(--cfc-border);
  border-radius: 10px;
  font-size: 0;
}
.menu-toggle::before {
  content: "☰";
  font-size: 1.25rem;
}

.announcement {
  padding: 8px 20px;
  color: var(--cfc-white);
  background: var(--cfc-purple-dark);
  text-align: center;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.cfc-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 8vw, 110px) 0;
  background:
    linear-gradient(90deg, rgba(215, 169, 40, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(215, 169, 40, 0.08) 1px, transparent 1px),
    radial-gradient(
      circle at 92% 84%,
      rgba(111, 35, 139, 0.12),
      transparent 29%
    ),
    var(--cfc-cream);
  background-size:
    44px 44px,
    44px 44px,
    auto,
    auto;
}
.cfc-hero::before,
.cfc-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(217, 165, 33, 0.3);
  border-radius: 50%;
  pointer-events: none;
}
.cfc-hero::before {
  width: 220px;
  height: 220px;
  left: -120px;
  top: 30px;
}
.cfc-hero::after {
  width: 340px;
  height: 340px;
  right: -170px;
  bottom: -180px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(38px, 6vw, 80px);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--cfc-purple);
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.76rem;
}
.cfc-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.7rem, 7.2vw, 6.9rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}
.cfc-hero h1 em {
  color: var(--cfc-purple);
  font-style: normal;
}
.hero-copy {
  max-width: 630px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.8vw, 1.23rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cfc-button,
.button,
button,
input[type="submit"],
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 24px;
  color: var(--cfc-white);
  background: var(--cfc-purple);
  border: 0;
  border-radius: 4px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.cfc-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  color: var(--cfc-white);
  background: var(--cfc-purple-dark);
  box-shadow: 0 10px 22px rgba(66, 20, 95, 0.18);
  transform: translateY(-2px);
}
.cfc-button-gold {
  color: var(--cfc-ink);
  background: var(--cfc-gold);
}
.cfc-button-gold:hover {
  color: var(--cfc-ink);
  background: #e4b72d;
}
.cfc-button-ghost {
  color: var(--cfc-purple);
  background: transparent;
  border: 2px solid rgba(111, 35, 139, 0.3);
}
.cfc-button-ghost:hover {
  color: var(--cfc-white);
  border-color: var(--cfc-purple-dark);
}
.hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}
.hero-image-frame {
  position: absolute;
  inset: 0 8% 7% 0;
  overflow: hidden;
  background: var(--cfc-purple);
  border: 12px solid var(--cfc-white);
  border-radius: 4px;
  box-shadow: var(--cfc-shadow);
  transform: rotate(1deg);
}
.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 44px;
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(255, 255, 255, 0.18),
      transparent 26%
    ),
    linear-gradient(145deg, var(--cfc-purple), var(--cfc-purple-dark));
  text-align: center;
}
.cause-badge {
  position: absolute;
  right: 0;
  bottom: 8%;
  max-width: 210px;
  padding: 18px 20px;
  color: var(--cfc-ink);
  background: var(--cfc-gold);
  border: 5px solid var(--cfc-white);
  border-radius: 4px;
  box-shadow: var(--cfc-shadow);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.3;
  transform: rotate(-3deg);
}

.promise-strip {
  color: var(--cfc-white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--cfc-purple);
  background-size: 54px 54px;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.promise-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 68px;
  padding: 12px 20px;
  text-align: center;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.promise-item + .promise-item {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}
.promise-icon {
  color: var(--cfc-gold-soft);
  font-size: 1.22rem;
}

.cfc-section {
  padding: clamp(62px, 8vw, 102px) 0;
}
.cfc-section-white {
  background: var(--cfc-white);
}
.cfc-section-purple {
  color: rgba(255, 255, 255, 0.88);
  background: var(--cfc-purple-dark);
}
.cfc-section-purple h2,
.cfc-section-purple h3 {
  color: var(--cfc-white);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  font-weight: 700;
}
.text-link {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 14px 14px 22px;
  overflow: hidden;
  background: var(--cfc-white);
  border: 1px solid var(--cfc-border);
  border-radius: var(--cfc-radius);
  box-shadow: 0 8px 30px rgba(66, 20, 95, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--cfc-shadow);
}
.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 15px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
}
.woocommerce ul.products li.product .price {
  padding: 0 4px;
  color: var(--cfc-purple);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}
.woocommerce ul.products li.product .button {
  margin: 12px 4px 0;
}
.woocommerce span.onsale {
  min-width: 0;
  min-height: 0;
  padding: 6px 11px;
  line-height: 1.2;
  background: var(--cfc-gold);
  color: var(--cfc-ink);
  border-radius: 999px;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(38px, 7vw, 90px);
}
.story-image {
  min-height: 520px;
  overflow: hidden;
  background: var(--cfc-cream-deep);
  border: 10px solid var(--cfc-white);
  border-radius: 4px;
  box-shadow: var(--cfc-shadow);
  transform: rotate(-1.5deg);
}
.story-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.story-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 40px;
  text-align: center;
}
.story-copy h2 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.9rem, 5.3vw, 5rem);
  font-weight: 700;
}
.story-copy .lead {
  font-size: 1.14rem;
}
.story-copy blockquote {
  margin: 26px 0;
  padding: 20px 24px;
  color: var(--cfc-ink);
  background: var(--cfc-gold-soft);
  border-left: 5px solid var(--cfc-gold);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  font-weight: 600;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.reason-card {
  padding: 30px;
  background: var(--cfc-white);
  border: 1px solid var(--cfc-border);
  border-radius: var(--cfc-radius);
  box-shadow: 0 8px 24px rgba(43, 18, 63, 0.05);
}
.reason-card .reason-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--cfc-white);
  background: var(--cfc-purple);
  border-radius: 50%;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
}
.reason-card:nth-child(2) .reason-number {
  color: var(--cfc-ink);
  background: var(--cfc-gold);
}
.reason-card h3 {
  margin: 18px 0 10px;
  font-size: 1.65rem;
}

.support-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(30px, 5vw, 54px);
  background: var(--cfc-gold);
  border-radius: 4px;
  box-shadow: var(--cfc-shadow);
}
.support-banner h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
  font-weight: 700;
}
.support-banner p {
  margin-bottom: 0;
  color: var(--cfc-ink);
}
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.site-main {
  min-height: 55vh;
  padding: 60px 0 90px;
  background: var(--cfc-white);
}
.page-header {
  margin-bottom: 34px;
}
.page-header h1 {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 700;
}
.content-card {
  padding: clamp(24px, 5vw, 50px);
  background: var(--cfc-white);
  border: 1px solid var(--cfc-border);
  border-radius: var(--cfc-radius);
}
.front-page-content {
  padding-top: 0;
}

.woocommerce .woocommerce-breadcrumb {
  color: var(--cfc-muted);
}
.woocommerce div.product div.images img {
  border-radius: var(--cfc-radius);
}
.woocommerce div.product .product_title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--cfc-purple);
  font-size: 1.35rem;
  font-weight: 900;
}
.woocommerce div.product form.cart .quantity {
  margin-right: 10px;
}
.woocommerce div.product form.cart .button {
  float: none;
}
.cfc-product-cause {
  margin: 14px 0 22px;
  padding: 13px 16px;
  color: var(--cfc-ink);
  background: var(--cfc-gold-soft);
  border-radius: 12px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
}
.woocommerce-message,
.woocommerce-info {
  background: var(--cfc-cream);
  border-top-color: var(--cfc-purple);
}
.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--cfc-purple);
}
.woocommerce table.shop_table {
  border-color: var(--cfc-border);
  border-radius: var(--cfc-radius-small);
}
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-checkout-payment {
  padding: 24px;
  background: var(--cfc-cream);
  border-radius: var(--cfc-radius);
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--cfc-text);
  background: var(--cfc-white);
  border: 1px solid #d8cdb9;
  border-radius: 10px;
}
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(111, 44, 145, 0.14);
  border-color: var(--cfc-purple);
}
.cfc-thankyou-share {
  margin: 30px 0;
  padding: 26px;
  background: var(--cfc-gold-soft);
  border-radius: var(--cfc-radius);
}
.cfc-thankyou-share h2 {
  margin-top: 0;
}

.site-footer {
  padding: 68px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--cfc-ink);
  background-size: 42px 42px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 44px;
}
.site-footer h2,
.site-footer h3 {
  color: var(--cfc-white);
}
.site-footer h2 {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin-bottom: 9px;
}
.site-footer a {
  color: var(--cfc-gold-soft);
}
.site-footer a:hover {
  color: var(--cfc-white);
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
}

/* Fundraiser store refresh — warm, human and product-led. */
body {
  background:
    radial-gradient(circle at 10% 20%, rgba(216, 154, 36, 0.07), transparent 25rem),
    var(--cfc-cream);
}
.site-header {
  color: var(--cfc-white);
  background: rgba(33, 9, 47, 0.98);
  border-bottom: 2px solid var(--cfc-gold);
}
.site-title,
.main-navigation a,
.header-cart {
  color: var(--cfc-white);
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--cfc-gold-soft);
}
.header-donate {
  color: var(--cfc-ink);
  background: linear-gradient(135deg, #f0c75b, var(--cfc-gold));
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(216, 154, 36, 0.2);
}
.header-donate::before {
  content: "♥";
}
.header-donate:hover {
  color: var(--cfc-ink);
  background: #f0c75b;
}
.header-cart,
.menu-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}
.announcement {
  color: var(--cfc-ink);
  background: linear-gradient(90deg, #f0c75b, #d89a24, #f0c75b);
}

.cfc-hero {
  min-height: min(760px, calc(100vh - 110px));
  padding: clamp(52px, 7vw, 92px) 0;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 82% 32%, rgba(150, 69, 172, 0.32), transparent 26rem),
    radial-gradient(circle at 7% 100%, rgba(216, 154, 36, 0.16), transparent 28rem),
    linear-gradient(125deg, #180523 0%, #2a0c3a 48%, #16051f 100%);
}
.cfc-hero::before {
  width: 240px;
  height: 340px;
  left: -80px;
  top: auto;
  bottom: -120px;
  border: 0;
  border-radius: 48% 52% 40% 60%;
  background:
    repeating-linear-gradient(72deg, transparent 0 15px, rgba(216, 154, 36, 0.15) 16px 18px),
    radial-gradient(ellipse, rgba(216, 154, 36, 0.12), transparent 68%);
  transform: rotate(-18deg);
}
.cfc-hero::after {
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: -220px;
  border-color: rgba(216, 154, 36, 0.18);
}
.hero-copy-wrap {
  position: relative;
  z-index: 2;
}
.cfc-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cfc-gold-soft);
  font-family: "Lora", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
}
.cfc-hero .eyebrow::before,
.cfc-hero .eyebrow::after {
  content: "♥";
  color: var(--cfc-gold);
  font-style: normal;
  font-size: 0.75rem;
}
.cfc-hero h1 {
  max-width: 680px;
  margin-bottom: 6px;
  color: var(--cfc-white);
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.22);
}
.hero-kicker {
  margin: 12px 0 24px;
  color: var(--cfc-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}
.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.86);
}
.cfc-button {
  border-radius: 10px;
}
.cfc-button-gold {
  background: linear-gradient(135deg, #efc35a, var(--cfc-gold));
  box-shadow: 0 10px 25px rgba(216, 154, 36, 0.24);
}
.cfc-button-outline-light {
  color: var(--cfc-white);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(239, 195, 90, 0.65);
}
.cfc-button-outline-light:hover {
  color: var(--cfc-ink);
  background: var(--cfc-gold-soft);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 26px;
  color: var(--cfc-gold-soft);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-visual {
  min-height: 540px;
}
.hero-image-frame {
  inset: 0 4% 4% 0;
  background: #321044;
  border: 8px solid #f8ead0;
  border-radius: 28px 28px 100px 28px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.38);
  transform: rotate(0.6deg);
}
.hero-image-frame::after {
  inset: 12px;
  border-color: rgba(216, 154, 36, 0.55);
  border-radius: 18px 18px 88px 18px;
}
.hero-placeholder {
  position: relative;
  background:
    radial-gradient(circle at 70% 25%, rgba(216, 154, 36, 0.22), transparent 30%),
    linear-gradient(145deg, #5d2378, #21092f);
}
.hero-placeholder::before {
  content: "CRUNCH";
  display: block;
  margin-bottom: 12px;
  color: var(--cfc-white);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}
.cause-badge {
  right: -2%;
  bottom: 3%;
  max-width: 225px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff5df;
  border-color: var(--cfc-gold);
  border-radius: 26px 6px 26px 6px;
  transform: rotate(-2deg);
}
.cause-badge span {
  color: var(--cfc-purple);
  font-size: 1.9rem;
}

.promise-strip {
  color: var(--cfc-ink);
  background: #fff2d7;
  border-bottom: 1px solid rgba(216, 154, 36, 0.4);
}
.promise-item + .promise-item {
  border-left-color: rgba(93, 35, 120, 0.16);
}
.promise-icon {
  color: var(--cfc-purple);
  font-size: 1.45rem;
}

.cfc-shop-section {
  position: relative;
  background:
    linear-gradient(rgba(255, 248, 236, 0.96), rgba(255, 248, 236, 0.96)),
    repeating-linear-gradient(45deg, #fff 0 10px, #f8ead3 10px 11px);
}
.section-heading-centred {
  max-width: 840px;
  display: block;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading-centred .eyebrow {
  color: #a96d0b;
}
.section-heading-centred h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
}
.section-heading-centred h2::after {
  content: "♡";
  display: inline-block;
  margin-left: 8px;
  color: var(--cfc-gold);
  font-size: 0.55em;
  transform: rotate(-8deg);
}
.section-heading-centred p:last-child {
  max-width: 700px;
  margin: 0 auto;
}
.section-cta {
  margin-top: 34px;
  text-align: center;
}
.woocommerce ul.products li.product {
  padding: 12px 12px 20px;
  background: #fffdf8;
  border-color: rgba(216, 154, 36, 0.48);
  border-radius: 20px 20px 8px 8px;
  box-shadow: 0 12px 30px rgba(56, 17, 72, 0.08);
}
.woocommerce ul.products li.product::after {
  content: "Every pack helps Serita";
  display: block;
  margin: 14px 4px 0;
  color: #a96d0b;
  font-family: "Lora", Georgia, serif;
  font-size: 0.78rem;
  font-style: italic;
}
.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 0.9;
  border: 1px solid rgba(216, 154, 36, 0.36);
  border-radius: 14px;
}
.woocommerce ul.products li.product .price {
  color: #8b5a08;
  font-size: 1.1rem;
}
.woocommerce ul.products li.product .button {
  color: var(--cfc-ink);
  background: var(--cfc-gold);
  border-radius: 8px;
}

.cfc-help-section {
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 15% 20%, rgba(216, 154, 36, 0.15), transparent 24rem),
    linear-gradient(145deg, #2b0c3c, #190522);
}
.cfc-help-section .section-heading h2 {
  color: var(--cfc-white);
}
.cfc-help-section .section-heading .eyebrow,
.cfc-help-section .section-heading p {
  color: var(--cfc-gold-soft);
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.help-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 28px 28px;
  color: var(--cfc-text);
  background: #fff8ec;
  border: 1px solid var(--cfc-gold);
  border-radius: 22px 22px 8px 8px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}
.help-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(216, 154, 36, 0.22);
  border-radius: 15px 15px 5px 5px;
  pointer-events: none;
}
.help-icon {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: -6px auto 18px;
  color: var(--cfc-gold);
  background: var(--cfc-purple-dark);
  border: 4px solid #efd28b;
  border-radius: 50%;
  font-size: 2rem;
}
.help-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 2rem;
}
.help-card p {
  position: relative;
  flex: 1;
}
.help-card .cfc-button {
  position: relative;
  width: 100%;
  margin-top: 8px;
  color: var(--cfc-ink);
}
.help-thanks {
  margin: 30px 0 0;
  color: var(--cfc-gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-style: italic;
  text-align: center;
}

.cfc-story-section {
  background: #fff8ec;
}
.story-image {
  border-radius: 28px 6px 28px 6px;
  border-color: #f5e3bd;
}
.story-copy blockquote {
  background: #fff0c9;
  border-radius: 0 18px 18px 0;
}
.cfc-why-section {
  background:
    radial-gradient(circle at 50% 0, rgba(216, 154, 36, 0.12), transparent 26rem),
    #fffdf8;
}
.reason-card {
  position: relative;
  padding: 34px;
  border-color: rgba(216, 154, 36, 0.55);
  border-radius: 24px 24px 8px 8px;
  text-align: center;
}
.reason-card .reason-number {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  color: var(--cfc-gold);
  background: #fff5df;
  border: 2px solid var(--cfc-gold);
  font-size: 2rem;
}
.reason-card:nth-child(2) .reason-number {
  color: var(--cfc-gold);
  background: #fff5df;
}
.support-banner {
  border: 2px solid #f0c75b;
  border-radius: 24px 6px 24px 6px;
}
.site-footer {
  background:
    radial-gradient(circle at 18% 0, rgba(216, 154, 36, 0.12), transparent 24rem),
    #21092f;
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 460px;
  }
  .reason-grid,
  .help-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-toggle {
    display: grid;
    place-items: center;
    order: 2;
  }
  .main-navigation {
    display: none;
    position: absolute;
    inset: 82px 0 auto;
    padding: 20px 24px;
    background: var(--cfc-purple-dark);
    border-bottom: 1px solid var(--cfc-border);
    box-shadow: var(--cfc-shadow);
  }
  .main-navigation.is-open {
    display: block;
  }
  .main-navigation ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .main-navigation a {
    display: block;
    padding: 11px 0;
  }
  .header-actions {
    order: 3;
  }
  .header-donate {
    display: none;
  }
}

@media (max-width: 720px) {
  .cfc-wrap {
    width: min(calc(100% - 28px), var(--cfc-content));
  }
  .header-inner {
    min-height: 70px;
    gap: 10px;
  }
  .main-navigation {
    inset-block-start: 70px;
  }
  .site-title {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .custom-logo {
    max-height: 46px;
    max-width: 150px;
  }
  .cfc-hero {
    padding-top: 50px;
  }
  .cfc-hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.1rem);
  }
  .hero-visual {
    min-height: 370px;
  }
  .hero-image-frame {
    inset: 0 3% 3% 0;
  }
  .cause-badge {
    max-width: 165px;
    padding: 13px 15px;
    font-size: 0.82rem;
  }
  .promise-grid {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }
  .promise-item {
    min-height: 48px;
  }
  .promise-item + .promise-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .reason-grid,
  .help-grid,
  .woocommerce ul.products,
  .footer-grid,
  .support-banner {
    grid-template-columns: 1fr;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .support-actions {
    justify-content: start;
  }
  .story-image,
  .story-image img,
  .story-placeholder {
    min-height: 390px;
  }
}

@media (max-width: 430px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
  .header-cart {
    width: 39px;
    height: 39px;
  }
  .menu-toggle {
    width: 39px;
    min-height: 39px;
  }
  .hero-actions .cfc-button {
    width: 100%;
  }
}
