@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --earth-brown: #5c4033;
  --earth-brown-dark: #3e2a22;
  --earth-brown-light: #8b6955;
  --sand: #f5e6d3;
  --sand-light: #fff9f3;
  --sand-deep: #ead4b7;
  --gold: #b8860b;
  --gold-light: #d6a33a;
  --gold-soft: #f3dfb6;
  --charcoal: #211a17;
  --charcoal-soft: #584c46;
  --off-white: #fdfaf6;
  --white: #ffffff;
  --olive: #596a4b;
  --text-primary: #241c18;
  --text-secondary: #625752;
  --text-muted: #877a72;
  --border: #eadfce;
  --success: #4a7c59;
  --danger: #c0392b;
  --shadow-sm: 0 8px 18px rgba(36, 28, 24, 0.06);
  --shadow-md: 0 18px 40px rgba(36, 28, 24, 0.1);
  --shadow-lg: 0 28px 60px rgba(36, 28, 24, 0.16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 32px;
  --transition: 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(214,163,58,0.15), transparent 26%),
    radial-gradient(circle at top right, rgba(92,64,51,0.08), transparent 22%),
    var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.scroll-locked { overflow: hidden; }
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button { border: 0; background: none; cursor: pointer; }
ul { list-style: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(184,134,11,0.36);
  outline-offset: 3px;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.announcement-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px 20px;
  background: var(--charcoal);
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
}

.section { padding: 84px 0; }
.section-tight { padding: 52px 0; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(245,230,211,0.62)); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.section-kicker {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
  margin-bottom: 10px;
  text-wrap: balance;
}
.section-title-left { text-align: left; }
.section-subtitle {
  color: var(--text-secondary);
  max-width: 52ch;
  font-size: 1rem;
}
.text-center { text-align: center; }
.hidden { display: none !important; }
.section-link {
  color: var(--earth-brown);
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { min-height: 56px; padding-inline: 30px; }
.btn-sm { min-height: 40px; padding: 9px 16px; font-size: 0.9rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--earth-brown); color: var(--white); }
.btn-primary:hover { background: var(--earth-brown-dark); }
.btn.added { background: var(--success); color: var(--white); }
.btn-secondary { border: 1.5px solid rgba(92,64,51,0.24); color: var(--earth-brown); background: rgba(255,255,255,0.72); }
.btn-secondary:hover { background: var(--earth-brown); color: var(--white); border-color: var(--earth-brown); }
.btn-tertiary { border: 1px dashed rgba(92,64,51,0.28); color: var(--earth-brown); background: transparent; }
.btn-tertiary:hover { border-color: var(--gold); color: var(--gold); }
.btn:disabled,
.btn-add-cart:disabled,
.qty-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(253,250,246,0.86);
  border-bottom: 1px solid rgba(234,223,206,0.8);
  box-shadow: 0 10px 24px rgba(36, 28, 24, 0.05);
}
.header-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: auto;
}
.logo-text {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--earth-brown);
  line-height: 1;
}
.logo-text span { color: var(--gold); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: 600;
  position: relative;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--earth-brown);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-link-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(92,64,51,0.08);
  color: var(--earth-brown);
  font-weight: 700;
}
.cart-btn {
  position: relative;
  color: var(--earth-brown);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(92,64,51,0.08);
}
.cart-btn svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-badge.hidden { display: none; }
.hamburger { display: none; padding: 6px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--earth-brown);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.hero {
  padding: 56px 0 50px;
  background:
    radial-gradient(circle at top left, rgba(214,163,58,0.28), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(92,64,51,0.1), transparent 22%),
    linear-gradient(180deg, #f8efe5 0%, #fcf8f2 55%, #fffdf9 100%);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(234,223,206,0.8);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 36px auto auto 52%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.8), rgba(255,255,255,0));
  transform: translateX(-50%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -120px -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,64,51,0.08), transparent 68%);
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 570px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(214,163,58,0.18);
  color: var(--earth-brown);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  font-weight: 800;
  max-width: 12ch;
  margin-bottom: 14px;
}
.hero p {
  max-width: 46ch;
  color: var(--text-secondary);
  font-size: 1rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(234,223,206,0.95);
  box-shadow: var(--shadow-sm);
  color: var(--earth-brown);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(140px, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: 30px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--shadow-md);
}
.hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 18px 34px rgba(36, 28, 24, 0.1);
}
.mosaic-main {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: 4 / 5;
}
.mosaic-tile {
  aspect-ratio: 1 / 1.04;
}

.categories-grid,
.products-grid,
.benefits-grid,
.support-grid,
.stats-grid {
  display: grid;
  gap: 22px;
}
.categories-grid-rich {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.category-card-rich {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(234,223,206,0.9);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-card-rich:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.category-card-rich img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(180deg, #fff, #f7efe6);
  padding: 14px;
}
.category-card-body {
  padding: 18px 18px 20px;
}
.category-name {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--earth-brown-dark);
}
.category-card-body p {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(234,223,206,0.9);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.product-image-link { display: block; }
.product-img-wrap {
  background: linear-gradient(180deg, #fff, #f7efe6);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}
.product-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: transform 0.55s ease;
}
.product-card:hover .product-img {
  transform: scale(1.02);
}
.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}
.product-category {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.product-title-link { display: inline-block; }
.product-name {
  font-size: 1.4rem;
  font-weight: 800;
  min-height: 2.3em;
  margin-bottom: 8px;
}
.product-copy {
  color: var(--text-secondary);
  font-size: 0.94rem;
  margin-bottom: 16px;
}
.product-card-bottom {
  margin-top: auto;
}
.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--earth-brown-dark);
  margin-bottom: 14px;
}
.product-card-actions {
  display: flex;
  gap: 10px;
}
.btn-add-cart {
  flex: 1;
  min-height: 40px;
  border-radius: 999px;
  background: var(--earth-brown);
  color: var(--white);
  font-weight: 700;
  padding: 0 16px;
}
.btn-add-cart:hover { background: var(--earth-brown-dark); }
.btn-add-cart.added { background: var(--success); }

.gallery-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(92,64,51,0.96), rgba(50,33,27,0.98));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.gallery-banner-copy p {
  max-width: 38ch;
  color: rgba(255,255,255,0.78);
}
.banner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.banner-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  font-size: 0.88rem;
  font-weight: 700;
}
.gallery-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery-banner-grid img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: rgba(255,255,255,0.08);
  padding: 10px;
  border-radius: 18px;
}

.benefits-grid,
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.benefit-card,
.support-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(234,223,206,0.9);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.benefit-card h3,
.support-card h3 {
  font-size: 1.3rem;
  margin-top: 16px;
  margin-bottom: 8px;
}
.benefit-card p,
.support-card p,
.card-copy {
  color: var(--text-secondary);
}
.benefit-media {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--white);
}
.benefit-media svg {
  width: 26px;
  height: 26px;
}
.benefit-media-brown { background: linear-gradient(135deg, var(--earth-brown), var(--earth-brown-light)); }
.benefit-media-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.benefit-media-olive { background: linear-gradient(135deg, var(--olive), #7b9169); }

.shop-hero,
.cart-hero,
.story-hero,
.contact-hero {
  position: relative;
  overflow: hidden;
}
.shop-hero-rich,
.cart-hero-rich,
.story-hero-rich,
.contact-hero-rich {
  padding: 72px 0 58px;
  background: linear-gradient(180deg, rgba(245,230,211,0.72), rgba(255,255,255,0.92));
}
.shop-hero-rich::before,
.cart-hero-rich::before,
.story-hero-rich::before,
.contact-hero-rich::before {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.18), transparent 70%);
}
.shop-hero-layout,
.story-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}
.shop-hero h1,
.cart-hero h1,
.story-hero h1,
.contact-hero h1 {
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.shop-hero p,
.cart-hero p,
.story-hero p,
.contact-hero p {
  max-width: 40ch;
  color: var(--text-secondary);
}
.mini-stat-card {
  min-width: 118px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(234,223,206,0.9);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.mini-stat-card strong {
  display: block;
  font-size: 1.35rem;
  font-family: 'Playfair Display', serif;
}
.mini-stat-card span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.shop-hero-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.shop-controls-rich {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-btn {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(234,223,206,0.9);
  color: var(--text-secondary);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--earth-brown);
  color: var(--white);
  border-color: var(--earth-brown);
}
.shop-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.shop-search,
.sort-select {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 16px;
  border: 1px solid rgba(234,223,206,0.9);
  background: rgba(255,255,255,0.92);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}
.shop-search {
  min-width: 240px;
}
.results-count {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(234,223,206,0.9);
}
.empty-state h2,
.empty-state h3 {
  margin-bottom: 10px;
}
.empty-state p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}
.page-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(234,223,206,0.9);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}
.page-btn.active,
.page-btn:hover {
  background: var(--earth-brown);
  color: var(--white);
}

.story-hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}
.story-hero-image {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.story-split,
.visit-card,
.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: 34px;
  align-items: center;
}
.story-copy p,
.visit-card-copy p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 42ch;
}
.story-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.story-gallery-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}
.story-gallery-grid img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}
.story-gallery-grid img:not(:first-child) { aspect-ratio: 1 / 1; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-card {
  border-radius: 24px;
  padding: 28px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(234,223,206,0.9);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.stat-number {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-label {
  color: var(--text-secondary);
  margin-top: 6px;
}
.story-stat-copy {
  color: var(--text-secondary);
  margin-top: 10px;
  font-size: 0.92rem;
}
.story-footnote {
  color: var(--text-secondary);
  max-width: 64ch;
  margin-top: 18px;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.goal-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(234,223,206,0.9);
  box-shadow: var(--shadow-sm);
}
.goal-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.goal-head h3 {
  font-size: 1.35rem;
}
.goal-head span {
  color: var(--earth-brown);
  font-weight: 800;
}
.progress-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(92,64,51,0.1);
  overflow: hidden;
  margin-bottom: 12px;
}
.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.goal-card p {
  color: var(--text-secondary);
}

.impact-partnership {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 26px;
  align-items: start;
}
.impact-partnership-copy,
.impact-partnership-card,
.impact-step-card,
.sponsor-story-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(234,223,206,0.9);
  box-shadow: var(--shadow-sm);
}
.impact-partnership-copy,
.impact-partnership-card {
  border-radius: 28px;
  padding: 28px;
}
.impact-partnership-copy p,
.impact-partnership-card p {
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.impact-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.impact-points {
  display: grid;
  gap: 10px;
  color: var(--text-secondary);
}
.impact-points li {
  padding-left: 18px;
  position: relative;
}
.impact-points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.impact-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.impact-step-card {
  border-radius: 24px;
  padding: 24px;
}
.impact-step-number {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.impact-step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.impact-step-card p {
  color: var(--text-secondary);
}

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

.sponsorship-grid-story {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.sponsor-story-card {
  border-radius: 24px;
  padding: 24px;
}
.sponsor-story-amount {
  font-size: 2rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
}
.sponsor-story-period {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 6px 0 10px;
}
.sponsor-story-card p {
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.story-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}
.contact-info-card,
.contact-form,
.visit-card,
.cart-summary {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(234,223,206,0.9);
  box-shadow: var(--shadow-sm);
}
.contact-info-card,
.contact-form {
  border-radius: 24px;
  padding: 26px;
}
.contact-info-card h3,
.contact-form h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}
.contact-detail {
  padding: 10px 0;
  color: var(--text-secondary);
}
.contact-detail strong {
  color: var(--text-primary);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid rgba(234,223,206,0.9);
  border-radius: 18px;
  background: #fff;
  padding: 13px 16px;
}
.form-group textarea {
  min-height: 128px;
  resize: vertical;
}

.visit-card {
  border-radius: 28px;
  padding: 26px;
}
.visit-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.product-media-panel,
.product-copy-panel {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(234,223,206,0.9);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.product-media-panel { padding: 22px; }
.product-detail-image-button {
  display: block;
  width: 100%;
  text-align: left;
}
.product-detail-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: linear-gradient(180deg, #fff, #f7efe6);
  padding: 20px;
  border-radius: 22px;
}
.zoom-label {
  display: inline-block;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.product-copy-panel { padding: 30px; }
.product-page-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.product-page-price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--earth-brown-dark);
  margin-bottom: 16px;
}
.product-page-summary {
  color: var(--text-secondary);
  max-width: 42ch;
  margin-bottom: 22px;
}
.product-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.product-meta-card {
  padding: 14px;
  border-radius: 20px;
  background: var(--sand-light);
  border: 1px solid var(--border);
}
.product-meta-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  font-weight: 700;
}
.product-meta-card strong {
  display: block;
  font-size: 1rem;
}
.product-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.product-page-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.product-page-notes span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(92,64,51,0.08);
  color: var(--earth-brown);
  font-size: 0.88rem;
  font-weight: 700;
}
.mobile-product-bar,
.mobile-cart-bar,
.mobile-dock {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,0.82);
  z-index: 3000;
}
.image-lightbox.open { display: grid; }
.image-lightbox img {
  max-width: min(960px, 92vw);
  max-height: 80vh;
  border-radius: 24px;
}
.image-lightbox p {
  color: rgba(255,255,255,0.85);
  margin-top: 14px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 2.2rem;
}

.cart-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.cart-benefit-card {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(234,223,206,0.9);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--earth-brown);
}
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(234,223,206,0.9);
  box-shadow: var(--shadow-sm);
}
.cart-item-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: linear-gradient(180deg, #fff, #f7efe6);
  padding: 10px;
  border-radius: 18px;
}
.cart-item-name {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.cart-item-category { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 6px; }
.cart-item-price { font-weight: 800; color: var(--earth-brown-dark); }
.qty-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(92,64,51,0.08);
  color: var(--earth-brown);
  font-weight: 700;
}
.qty-btn:hover {
  background: var(--earth-brown);
  color: var(--white);
}
.qty-value {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
}
.remove-btn {
  color: var(--danger);
  font-weight: 700;
}
.cart-summary {
  position: sticky;
  top: 100px;
  border-radius: 24px;
  padding: 24px;
}
.cart-summary h3 { font-size: 1.5rem; margin-bottom: 14px; }
.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.summary-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(234,223,206,0.9);
}
.summary-total {
  padding-top: 18px;
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: 800;
}
.free-shipping {
  margin-top: 16px;
  border-radius: 18px;
  padding: 12px;
  background: rgba(74,124,89,0.1);
  color: var(--success);
  font-weight: 700;
  text-align: center;
}
.checkout-note {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 0.94rem;
}
.checkout-methods {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.checkout-status {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.92rem;
  font-weight: 600;
}
.checkout-status-copy {
  margin: 0;
}
.checkout-status-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-weight: 700;
}
.checkout-status-link:hover {
  opacity: 0.85;
}
.checkout-status.success {
  background: rgba(74,124,89,0.1);
  color: var(--success);
}
.checkout-status.error {
  background: rgba(192,57,43,0.1);
  color: var(--danger);
}
.checkout-status.info {
  background: rgba(92,64,51,0.08);
  color: var(--earth-brown);
}
.checkout-flow {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(234,223,206,0.9);
}
.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.checkout-step {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(92,64,51,0.08);
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}
.checkout-step.active {
  background: var(--earth-brown);
  color: var(--white);
}
.checkout-form,
.paybill-panel {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(234,223,206,0.9);
  border-radius: 22px;
  padding: 18px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.paybill-panel h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.paybill-details {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.paybill-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--sand-light);
  border: 1px solid var(--border);
}
.paybill-row span {
  color: var(--text-secondary);
}
.paybill-row strong {
  color: var(--earth-brown-dark);
  text-align: right;
}
.paybill-copy,
.paybill-customer {
  color: var(--text-secondary);
  font-size: 0.94rem;
}
.paybill-customer {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(92,64,51,0.06);
  white-space: pre-line;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 2000;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  bottom: 0;
  width: min(400px, 100vw);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: right var(--transition);
  z-index: 2001;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }
.drawer-header,
.drawer-footer {
  padding: 20px 22px;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(234,223,206,0.9);
}
.close-drawer {
  font-size: 1.8rem;
  color: var(--text-muted);
}
.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 14px 22px;
}
.drawer-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(234,223,206,0.9);
}
.drawer-item-img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  object-fit: contain;
  background: linear-gradient(180deg, #fff, #f7efe6);
  padding: 6px;
}
.drawer-item-name {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 4px;
}
.drawer-item-price { font-weight: 700; color: var(--earth-brown); font-size: 0.92rem; }
.drawer-item-qty { color: var(--text-muted); font-size: 0.84rem; }
.drawer-remove { color: var(--danger); font-size: 0.84rem; font-weight: 700; }
.drawer-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 800;
}
.drawer-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 34px 0;
}

.footer {
  margin-top: 0;
  padding: 60px 0 24px;
  background: linear-gradient(180deg, rgba(33,26,23,0.96), rgba(19,15,13,0.98));
  color: rgba(255,255,255,0.76);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 30px;
}
.footer h4 {
  color: var(--white);
  font-size: 1.08rem;
  margin-bottom: 14px;
}
.footer p,
.footer-links a {
  font-size: 0.94rem;
}
.footer-links a {
  display: block;
  padding: 4px 0;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.84rem;
}

@media (max-width: 1080px) {
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .categories-grid-rich { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-layout,
  .story-split,
  .visit-card,
  .product-detail-layout,
  .gallery-banner,
  .shop-hero-layout,
  .story-hero-layout,
  .impact-partnership {
    grid-template-columns: 1fr;
  }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 820px) {
  .announcement-bar {
    justify-content: flex-start;
    gap: 10px;
    padding-inline: 12px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .announcement-bar::-webkit-scrollbar {
    display: none;
  }
  .announcement-bar span {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 86px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    background: rgba(253,250,246,0.98);
    border: 1px solid rgba(234,223,206,0.95);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }
  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(92,64,51,0.05);
  }
  .nav-links a.active::after {
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a.active {
    background: rgba(92,64,51,0.1);
  }
  .hamburger {
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(92,64,51,0.08);
  }
  .cart-btn {
    width: 46px;
    height: 46px;
  }
  .header-link-pill { display: none; }
  .header-inner {
    gap: 12px;
    padding: 12px 0;
  }
  .header-actions {
    margin-left: auto;
  }
  .shop-hero-cards {
    justify-content: flex-start;
  }
  .shop-controls-rich {
    position: sticky;
    top: 78px;
    z-index: 40;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(253,250,246,0.94);
    border: 1px solid rgba(234,223,206,0.92);
    box-shadow: var(--shadow-sm);
  }
  .filter-group {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .filter-group::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    flex: 0 0 auto;
  }
  .shop-tools {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 180px);
  }
  .product-copy-panel {
    padding: 24px;
  }
  .product-page-title {
    font-size: clamp(1.9rem, 7vw, 2.7rem);
  }
  .product-page-summary {
    max-width: none;
  }
  .cart-layout {
    gap: 18px;
  }
  .cart-summary {
    order: -1;
  }
  .cart-item {
    padding: 16px;
    gap: 14px;
  }
  .qty-btn {
    width: 40px;
    height: 40px;
  }
  .remove-btn {
    min-height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(192,57,43,0.08);
  }
  .hero h1 { max-width: 100%; }
  .benefits-grid,
  .support-grid,
  .stats-grid,
  .cart-benefits,
  .checkout-steps,
  .values-grid,
  .impact-process-grid,
  .education-impact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.has-mobile-dock {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
  body.has-fixed-mobile-bar {
    padding-bottom: calc(116px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border-radius: 24px;
    background: rgba(253,250,246,0.98);
    border: 1px solid rgba(234,223,206,0.95);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
  }
  .mobile-dock-link {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 52px;
    padding: 0 6px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-secondary);
  }
  .mobile-dock-link.active {
    background: var(--earth-brown);
    color: var(--white);
  }
  .mobile-dock-badge {
    position: absolute;
    top: 7px;
    right: 10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.68rem;
    line-height: 18px;
    text-align: center;
  }
  .mobile-dock-badge.hidden {
    display: none;
  }
  .mobile-product-bar,
  .mobile-cart-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 1250;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(253,250,246,0.98);
    border: 1px solid rgba(234,223,206,0.95);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
  }
  .mobile-product-bar-copy,
  .mobile-cart-bar-copy {
    min-width: 0;
    display: grid;
  }
  .mobile-product-bar-copy span,
  .mobile-cart-bar-copy span {
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .mobile-product-bar-copy strong,
  .mobile-cart-bar-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
    color: var(--earth-brown-dark);
  }
  .mobile-product-bar-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }
  .mobile-product-bar .btn,
  .mobile-cart-bar .btn {
    min-height: 44px;
    padding-inline: 18px;
  }
}

@media (max-width: 680px) {
  .container,
  .header-inner {
    width: min(1240px, calc(100% - 24px));
  }
  .logo img { height: 42px; }
  .logo-text { font-size: 1.2rem; }
  .section { padding: 66px 0; }
  .section-heading {
    flex-direction: column;
    align-items: start;
  }
  .products-grid,
  .categories-grid-rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .hero-mosaic,
  .gallery-banner-grid,
  .story-gallery-grid,
  .footer-grid,
  .goals-grid,
  .sponsorship-grid-story {
    grid-template-columns: 1fr;
  }
  .product-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-highlights {
    gap: 8px;
  }
  .hero-highlights span {
    width: 100%;
    justify-content: center;
  }
  .shop-controls-rich {
    top: 74px;
    padding: 12px;
  }
  .shop-tools {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .shop-search,
  .sort-select { width: 100%; min-width: 0; }
  .product-info {
    padding: 14px;
  }
  .product-name {
    min-height: 0;
    font-size: 1.08rem;
  }
  .product-copy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 12px;
    font-size: 0.88rem;
  }
  .product-price {
    margin-bottom: 10px;
    font-size: 1.02rem;
  }
  .product-card-actions {
    flex-direction: column;
  }
  .product-card .btn-sm,
  .btn-add-cart {
    width: 100%;
  }
  .checkout-grid { grid-template-columns: 1fr; }
  .cart-item {
    grid-template-columns: 92px minmax(0, 1fr);
  }
  .cart-item-name {
    font-size: 1.12rem;
  }
  .product-page-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .mobile-product-bar,
  .mobile-cart-bar {
    flex-wrap: wrap;
  }
  .mobile-product-bar-copy,
  .mobile-cart-bar-copy,
  .mobile-product-bar-actions,
  .mobile-cart-bar .btn {
    width: 100%;
  }
  .mobile-product-bar-actions {
    justify-content: stretch;
  }
  .mobile-product-bar-actions .btn,
  .mobile-cart-bar .btn {
    flex: 1;
  }
}

@media (max-width: 420px) {
  .product-meta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cart-item {
    grid-template-columns: 1fr;
  }
}
