/* ============================================================================
   NWBC Bee Club Store — Unified CSS v3.0
   Design: Modern Naturalism — Honey & Hive
   Palette: #D4A017 (honey gold) · #FFD700 (bright gold) · #FFF8DC (cream)
            #3E2723 (dark brown) · #2D5016 (forest green) · #FFF (white)
   Mobile-first · Static S3 Hosting
   ============================================================================ */

/* ── RESET & BASE ────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #FAFAF8;
  color: #2D2D2D;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
img { max-width: 100%; height: auto; display: block; }

a { color: #D4A017; text-decoration: none; transition: color 0.25s ease; }
a:hover { color: #2D5016; }

/* ── HONEYCOMB SVG PATTERNS ──────────────────────────────────────────────── */
.bg-honeycomb {
  background-color: #FFFBF0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34zM28 66l28 18v-2L28 68 0 82v2z' fill='none' stroke='%23D4A01720' stroke-width='1'/%3E%3C/svg%3E");
}

.bg-honeycomb-dark {
  background-color: #3E2723;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34zM28 66l28 18v-2L28 68 0 82v2z' fill='none' stroke='%23FFD70015' stroke-width='1'/%3E%3C/svg%3E");
}

/* ── CONTAINER & LAYOUT ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

section { padding: 4rem 0; }
@media (min-width: 768px)  { section { padding: 5rem 0; } }

/* ── NAVIGATION ──────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  border-bottom: 2px solid #D4A017;
  overflow: visible;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid #D4A017;
  background: #FFF8DC;
}

.logo-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700 0%, #D4A017 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #3E2723;
  white-space: nowrap;
}

.logo-subtitle {
  font-size: 0.65rem;
  color: #D4A017;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.nav-links a {
  color: #3E2723;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: #D4A017;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover { color: #D4A017; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #D4A017; font-weight: 600; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Cart button */
.cart-btn {
  position: relative;
  background: none;
  border: 2px solid #D4A017;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #3E2723;
  transition: all 0.25s;
  text-decoration: none;
}

.cart-btn:hover {
  background: #D4A017;
  color: white;
}

.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: #2D5016;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

.cart-count.visible { display: flex; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid #D4A017;
  padding: 0;
  border-radius: 0.4rem;
  cursor: pointer;
  font-size: 1.4rem;
  color: #3E2723;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  flex-shrink: 0;
}

.nav-toggle:hover { background: #FFF8DC; }

/* Members login pill */
.members-login {
  background: linear-gradient(135deg, #D4A017, #FFD700) !important;
  color: #3E2723 !important;
  padding: 0.45rem 1rem !important;
  border-radius: 25px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
}
.members-login:hover {
  background: linear-gradient(135deg, #3E2723, #2D5016) !important;
  color: #FFD700 !important;
}
.members-login::after { display: none !important; }

@media (max-width: 767px) {
  .nav-toggle { display: flex; }

  /* Members button same size as other nav items in hamburger */
  .nav-links .members-login {
    padding: 1.1rem 1.5rem !important;
    font-size: 1rem !important;
    border-radius: 0 !important;
    background: #FFF8DC !important;
    display: block !important;
    width: 100%;
    text-align: left;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: white;
    gap: 0;
    border-top: 3px solid #D4A017;
    z-index: 999;
    overflow-y: auto;
    max-height: calc(100vh - 4.5rem);
    padding-bottom: 2rem;
    align-items: stretch;
    justify-content: flex-start;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  .nav-links li { border-bottom: 1px solid #F5EDD8; }

  .nav-links a {
    display: block;
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }

  .nav-links a::after { display: none; }

  .nav-links a:hover {
    background: #FFF8DC;
    padding-left: 2rem;
  }

  .nav-links a.active {
    background: #FFF8DC;
    border-left: 4px solid #D4A017;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

@media (min-width: 768px) {
  .nav-links { display: flex !important; }
  .nav-toggle { display: none !important; }
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  border: none;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: #2D5016;
  color: white;
}
.btn-primary:hover {
  background: #1A3A0F;
  box-shadow: 0 4px 14px rgba(45,80,22,0.35);
  color: white;
}

.btn-secondary {
  background: linear-gradient(135deg, #D4A017, #FFD700);
  color: #3E2723;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #B8880E, #D4A017);
  box-shadow: 0 4px 14px rgba(212,160,23,0.4);
  color: #3E2723;
}

.btn-outline {
  background: transparent;
  border: 2px solid #D4A017;
  color: #3E2723;
}
.btn-outline:hover {
  background: #FFF8DC;
  border-color: #2D5016;
  color: #2D5016;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}

.btn-danger { background: #DC2626; color: white; }
.btn-danger:hover { background: #B91C1C; }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; display: block; }
.btn-icon { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ── HERO SECTION ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #3E2723 0%, #2D5016 50%, #1A3A0F 100%);
  padding: 5rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34zM28 66l28 18v-2L28 68 0 82v2z' fill='none' stroke='%23FFD70015' stroke-width='1.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-bee {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  pointer-events: none;
  animation: floatBee 6s ease-in-out infinite;
}
.hero-bee:nth-child(2) { animation-delay: 2s; top: 20%; right: 15%; }
.hero-bee:nth-child(3) { animation-delay: 4s; bottom: 25%; right: 25%; font-size: 1.5rem; }

@keyframes floatBee {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50%       { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.25);
  border: 1px solid rgba(212,160,23,0.5);
  color: #FFD700;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 {
  color: white;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span { color: #FFD700; display: block; }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 550px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  background: linear-gradient(135deg, #3E2723 0%, #2D5016 60%, #D4A017 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34z' fill='none' stroke='%23FFD70012' stroke-width='1.5'/%3E%3C/svg%3E");
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: white; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin: 0; }

/* ── SECTION HEADERS ─────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 { color: #3E2723; }

.section-header p {
  font-size: 1.05rem;
  color: #666;
  max-width: 580px;
  margin: 0.75rem auto 0;
}

.section-label {
  display: inline-block;
  color: #D4A017;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ── GRID SYSTEM ─────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid { gap: 2rem; } }

.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.grid-center { align-items: center; }

/* ── CARDS ────────────────────────────────────────────────────────────────── */
.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.13);
}

.card-header {
  padding: 1.5rem 1.5rem 1rem;
  background: linear-gradient(135deg, #FFF8DC 0%, #FFFBF0 100%);
  border-bottom: 2px solid #F5EDD8;
}

.card-body { padding: 1.5rem; }
.card-footer { padding: 1rem 1.5rem; border-top: 1px solid #F5EDD8; }

/* ── PRODUCT CARDS ───────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.product-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #F5EDD8;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(62,39,35,0.12);
}

.product-img-icon {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #FFF8DC 0%, #FEF3C7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #2D5016;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 25px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #3E2723;
  margin-bottom: 0.4rem;
}

.product-desc {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.5;
}

.product-pricing { margin-bottom: 1rem; }

.price-member {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D5016;
  line-height: 1;
}

.price-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #2D5016;
  background: #DCFCE7;
  padding: 0.15rem 0.5rem;
  border-radius: 25px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.price-nonmember {
  font-size: 0.875rem;
  color: #888;
  margin-top: 0.2rem;
}

.product-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.qty-btn {
  width: 2rem;
  height: 2rem;
  border: 1.5px solid #D4A017;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #3E2723;
  font-weight: 700;
  flex-shrink: 0;
}

.qty-btn:hover { background: #D4A017; color: white; }

.qty-input {
  width: 3rem;
  text-align: center;
  border: 1.5px solid #E8DCC8;
  border-radius: 0.4rem;
  padding: 0.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3E2723;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.qty-input { -moz-appearance: textfield; }

.add-to-cart-btn {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, #D4A017, #FFD700);
  color: #3E2723;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #B8880E, #D4A017);
  box-shadow: 0 4px 14px rgba(212,160,23,0.4);
  transform: translateY(-1px);
}

/* ── CART DRAWER ──────────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(420px, 100vw);
  height: 100vh;
  background: white;
  z-index: 201;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open { right: 0; }

.cart-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, #3E2723, #2D5016);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 { color: white; margin: 0; font-size: 1.25rem; }

.cart-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-close:hover { background: rgba(255,255,255,0.3); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #9CA3AF;
  text-align: center;
  padding: 2rem;
}

.cart-empty-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.5; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #F5EDD8;
  align-items: flex-start;
}

.cart-item:last-child { border-bottom: none; }

.cart-item-icon {
  width: 3rem;
  height: 3rem;
  background: #FFF8DC;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-weight: 600;
  color: #3E2723;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.cart-item-price { color: #D4A017; font-weight: 700; font-size: 0.9rem; }

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.cart-item-qty-btn {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #D4A017;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #3E2723;
  font-weight: 700;
}

.cart-item-qty-btn:hover { background: #D4A017; color: white; }

.cart-item-qty-num {
  font-weight: 700;
  color: #3E2723;
  min-width: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #DC2626;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.2rem;
  opacity: 0.6;
  transition: opacity 0.2s;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.cart-item-remove:hover { opacity: 1; }

.cart-footer {
  padding: 1.25rem;
  border-top: 2px solid #F5EDD8;
  background: #FFFBF0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: #3E2723;
  margin-bottom: 1rem;
}

.cart-total span:last-child { color: #2D5016; }

.cart-member-notice {
  background: #DCFCE7;
  color: #166534;
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── CHECKOUT MODAL ──────────────────────────────────────────────────────── */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  overflow-y: auto;
}

.checkout-overlay.open { opacity: 1; pointer-events: all; }

.checkout-modal {
  background: white;
  border-radius: 1rem;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: translateY(-20px);
  transition: transform 0.3s;
}

.checkout-overlay.open .checkout-modal { transform: translateY(0); }

.checkout-modal-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, #3E2723, #2D5016);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-modal-header h3 { color: white; margin: 0; }
.checkout-modal-body { padding: 1.5rem; }

/* ── STATS STRIP ─────────────────────────────────────────────────────────── */
.stats-strip {
  background: #3E2723;
  color: white;
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── FEATURE BOXES ───────────────────────────────────────────────────────── */
.feature-box {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid #F5EDD8;
  transition: all 0.3s;
}

.feature-box:hover {
  border-color: #D4A017;
  box-shadow: 0 8px 24px rgba(212,160,23,0.12);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #FFF8DC, #FEF3C7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border: 2px solid #F5EDD8;
}

.feature-box h5 { color: #3E2723; margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-box p  { color: #777; font-size: 0.9rem; margin: 0; }

/* ── EVENT CARDS ─────────────────────────────────────────────────────────── */
.event-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #F5EDD8;
  display: flex;
  gap: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}

.event-date-block {
  min-width: 5rem;
  background: linear-gradient(135deg, #D4A017, #FFD700);
  color: #3E2723;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  text-align: center;
  flex-shrink: 0;
}

.event-day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.1rem;
}

.event-info { padding: 1.25rem; flex: 1; }
.event-info h4 { color: #3E2723; margin-bottom: 0.4rem; font-size: 1.05rem; }
.event-info p  { color: #777; font-size: 0.875rem; margin: 0; }
.event-location { font-size: 0.8rem; color: #D4A017; margin-top: 0.5rem; font-weight: 600; }

/* ── ABOUT / HERO IMAGE SECTIONS ─────────────────────────────────────────── */
.about-img-placeholder {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF8DC 0%, #F5EDD8 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  border: 2px solid #F5EDD8;
}

/* ── MEMBERSHIP CTA ──────────────────────────────────────────────────────── */
.membership-cta {
  background: linear-gradient(135deg, #3E2723 0%, #2D5016 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.membership-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34z' fill='none' stroke='%23FFD70012' stroke-width='1.5'/%3E%3C/svg%3E");
}

.membership-cta .container { position: relative; }
.membership-cta h2 { color: white; }

/* ── FORMS ────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-weight: 600;
  color: #3E2723;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E8DCC8;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: #2D2D2D;
  background: white;
  transition: border-color 0.25s, box-shadow 0.25s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #D4A017;
  box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}

textarea { resize: vertical; min-height: 120px; }

.form-hint { font-size: 0.78rem; color: #9CA3AF; margin-top: 0.3rem; }

/* EOI / Newsletter form */
.eoi-form {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  max-width: 480px;
  margin: 0 auto;
}

/* ── COMMITTEE CARDS ─────────────────────────────────────────────────────── */
.committee-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #F5EDD8;
  transition: all 0.3s;
}

.committee-card:hover {
  border-color: #D4A017;
  box-shadow: 0 8px 24px rgba(212,160,23,0.12);
  transform: translateY(-4px);
}

.committee-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 3px solid #D4A017;
}

.committee-avatar-gold { background: linear-gradient(135deg, #FFF8DC, #FEF3C7); }
.committee-avatar-green { background: linear-gradient(135deg, #DCFCE7, #BBF7D0); }

.committee-card h5 { color: #3E2723; margin-bottom: 0.25rem; }
.committee-card .role { color: #D4A017; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.25rem; }
.committee-card .contact-info { color: #888; font-size: 0.8rem; }

/* ── TIMELINE ────────────────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #D4A017, #2D5016);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -1.65rem;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #D4A017;
  border: 3px solid #FFF8DC;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot { background: #2D5016; }

.timeline-item h4 { color: #3E2723; font-size: 1.1rem; margin-bottom: 0.3rem; }
.timeline-item .year { color: #D4A017; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.3rem; }
.timeline-item p { color: #666; font-size: 0.9rem; margin: 0; }

/* ── MAP EMBED ───────────────────────────────────────────────────────────── */
.map-container {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #F5EDD8;
  aspect-ratio: 16/9;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── MEMBER PORTAL ───────────────────────────────────────────────────────── */
.member-welcome {
  background: linear-gradient(135deg, #3E2723 0%, #2D5016 100%);
  color: white;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.member-welcome::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34z' fill='none' stroke='%23FFD70010' stroke-width='1'/%3E%3C/svg%3E");
}

.member-welcome .container { position: relative; }
.member-welcome h1, .member-welcome h2 { color: white; }
.member-welcome p { color: rgba(255,255,255,0.8); }

.member-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  color: #FFD700;
  padding: 0.3rem 0.75rem;
  border-radius: 25px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Dashboard grid responsive */
.grid-dashboard { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-dashboard { grid-template-columns: 2fr 1fr; } }

.dashboard-card {
  background: white;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1px solid #F5EDD8;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.dashboard-card:hover {
  border-color: #D4A017;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(212,160,23,0.15);
  color: inherit;
}

.dashboard-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFF8DC, #FEF3C7);
}

.dashboard-card h4 { color: #3E2723; margin-bottom: 0.4rem; }
.dashboard-card p  { color: #888; font-size: 0.875rem; margin: 0; }

/* Announcement Card */
.announcement-card {
  background: linear-gradient(135deg, #D4A017 0%, #FFD700 100%);
  border-radius: 1rem;
  padding: 1.75rem;
  color: #3E2723;
  position: relative;
  overflow: hidden;
}

.announcement-card::before {
  content: '📢';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  opacity: 0.15;
}

.announcement-card h3 { color: #3E2723; margin-bottom: 0.5rem; }
.announcement-card p  { color: rgba(62,39,35,0.85); margin-bottom: 0; }

/* ── LOGIN PAGE ──────────────────────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #3E2723 0%, #2D5016 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem 2rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.login-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34z' fill='none' stroke='%23FFD70012' stroke-width='1.5'/%3E%3C/svg%3E");
}

.login-card {
  position: relative;
  z-index: 5;
  background: white;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  overflow: hidden;
}

.login-card-header {
  background: linear-gradient(135deg, #D4A017, #FFD700);
  padding: 2rem;
  text-align: center;
}

.login-card-header img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: contain;
  border: 3px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.3);
}

.login-card-header h2 { color: #3E2723; margin: 0; font-size: 1.5rem; }
.login-card-header p  { color: rgba(62,39,35,0.75); margin: 0.25rem 0 0; font-size: 0.9rem; }
.login-card-body { padding: 2rem; }

.tab-btns {
  display: flex;
  border-bottom: 2px solid #F5EDD8;
  margin-bottom: 1.5rem;
}

.tab-btn {
  flex: 1;
  padding: 0.75rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: #888;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.tab-btn.active { color: #D4A017; border-bottom-color: #D4A017; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Password requirements */
.password-requirements {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-top: 0.5rem;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  color: #6B7280;
  transition: color 0.2s;
}

.phone-input-group { display: flex; gap: 0.5rem; }
.area-code-select  { min-width: 90px; max-width: 100px; flex-shrink: 0; }

.form-validation { font-size: 0.8rem; margin-top: 0.25rem; }
.validation-success { color: #16A34A; }
.validation-error   { color: #DC2626; }

/* ── BACKGROUND UTILITIES ────────────────────────────────────────────────── */
.bg-white   { background: white; }
.bg-cream   { background: #FFF8DC; }
.bg-light   { background: #FAFAF8; }
.bg-warm    { background: linear-gradient(180deg, white 0%, #FFF8DC 100%); }
.bg-dark    { background: #3E2723; color: white; }
.bg-green   { background: linear-gradient(135deg, #2D5016 0%, #1A3A0F 100%); color: white; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  background: #3E2723;
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo-title  { color: white; font-size: 1.2rem; }
.footer-brand .logo-subtitle { color: #D4A017; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-top: 1rem; line-height: 1.7; }
.footer-brand .nav-logo { margin-bottom: 0; }

footer h5 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 2rem; height: 2px;
  background: #D4A017;
  border-radius: 2px;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer a { color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: color 0.2s; }
footer a:hover { color: #FFD700; }
footer p { font-size: 0.875rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact-icon { flex-shrink: 0; margin-top: 0.1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s;
  color: white;
}
.footer-social a:hover { background: #D4A017; }

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-up   { animation: fadeInUp   0.6s ease-out forwards; }
.animate-left { animation: fadeInLeft 0.6s ease-out forwards; }
.animate-right{ animation: fadeInRight 0.6s ease-out forwards; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger > *:nth-child(1) { transition-delay: 0.0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; }
.stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; }
.stagger > *:nth-child(6) { transition-delay: 0.3s; }
.stagger > *:nth-child(7) { transition-delay: 0.35s; }
.stagger > *:nth-child(8) { transition-delay: 0.4s; }

/* ── BADGES & ALERTS ─────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 25px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-gold   { background: #FFF8DC; color: #92400E; border: 1px solid #F5EDD8; }
.badge-green  { background: #DCFCE7; color: #166534; }
.badge-amber  { background: #FEF3C7; color: #92400E; }
.badge-red    { background: #FEE2E2; color: #991B1B; }
.badge-member { background: linear-gradient(135deg, #D4A017, #FFD700); color: #3E2723; }

.alert { padding: 1rem 1.25rem; border-radius: 0.5rem; margin-bottom: 1rem; font-size: 0.9rem; }
.alert-success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.alert-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.alert-info    { background: #DBEAFE; color: #1E40AF; border: 1px solid #BFDBFE; }
.alert-warning { background: #FEF3C7; color: #92400E; border: 1px solid #FDE68A; }

/* ── SPACING & TEXT UTILITIES ────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }  .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }  .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }  .mb-4 { margin-bottom: 2rem; }
.p-4 { padding: 1rem; }
.text-center { text-align: center; }
.text-muted  { color: #9CA3AF; }
.text-gold   { color: #D4A017; }

.accent-line {
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, #D4A017, #FFD700);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.accent-line-center { margin-left: auto; margin-right: auto; }

.divider { height: 1px; background: #F5EDD8; margin: 2rem 0; }

/* ── FILTER BAR (store) ──────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #F5EDD8;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 25px;
  border: 2px solid #E8DCC8;
  background: white;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3E2723;
  transition: all 0.2s;
  font-family: inherit;
}

.filter-btn:hover, .filter-btn.active {
  background: #D4A017;
  border-color: #D4A017;
  color: #3E2723;
}

/* Member pricing notice */
.member-pricing-notice {
  background: linear-gradient(135deg, #2D5016, #1A3A0F);
  color: white;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.member-pricing-notice .icon { font-size: 2rem; flex-shrink: 0; }
.member-pricing-notice h4 { color: #FFD700; margin: 0 0 0.25rem; font-size: 1rem; }
.member-pricing-notice p  { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.875rem; }
.member-pricing-notice .actions { margin-left: auto; display: flex; gap: 0.5rem; align-items: center; flex-shrink: 0; }

/* How to order sidebar */
.how-to-order {
  background: #FFF8DC;
  border: 2px solid #F5EDD8;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.how-to-order h4 { color: #3E2723; margin-bottom: 1rem; }
.how-to-order ol { margin-left: 1.25rem; color: #555; }
.how-to-order li { margin-bottom: 0.5rem; font-size: 0.9rem; }

/* ── LOADING SPINNER ─────────────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-top-color: #D4A017;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  section { padding: 3rem 0; }
  .hero   { min-height: 70vh; padding: 4rem 0; }
}

/* ── PRINT ───────────────────────────────────────────────────────────────── */
@media print {
  nav, footer, .cart-drawer, .cart-overlay, .nav-toggle { display: none !important; }
}
