/* Base */
body {
  font-family: "Bebas Neue", sans-serif;
  background: #ececec;
  color: #440909;
  margin: 0;               /* allow full-width bands to touch edges */
}

.coop-banner{
  width: 100%;
  height: 220px;       /* choose your banner height */
  object-fit: contain; /* no cropping */
  background: #0e3416; /* optional: fill the empty bars */
  display: block;
}




/* Yellow banner header (Coop order + back link) */
.site-header{
  background: #f8e7aa;      /* warm yellow */
  border-bottom: 2px solid rgba(68, 9, 9, 0.15);
  padding: 12px 0;
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  text-align: left;         /* override .container's center */
}

.logo-link{
  color: #094418;
  font-weight: 400;
  text-decoration: none;
}

.logo-link:hover{
  text-decoration: underline;
}

.coop-title{
  color: #094418;
  font-size: 2.6rem;
  font-weight: 500;   /* less heavy */
  margin: 0;
}


/* Mobile: stack nicely */
@media (max-width: 640px){
  .header-inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}


h1 { font-size: 2.5rem; }
p  { font-size: 1.4rem; }

header { text-align: center; }

/* Narrow content inside <main> only */
main {
  max-width: 800px;
  margin: 0 auto;
}
main section { text-align: center; }

/* Café section text spacing */
.about {
  margin: 2rem 0;
  line-height: 1.6;
}
main section:first-of-type p { margin-bottom: 2rem; }

/* HERO */

.hero {
  position: relative;
  text-align: center;
  padding: 8rem 0;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* slideshow layers */
.hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease;
  opacity: 1;
  z-index: 0; /* behind text */
}
.hero .bg.hidden { opacity: 0; }

/* white band behind text */
.hero-band {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem 0;
  width: 100%;
}

/* hero text */
.hero h1 { color: #440909; font-size: 6rem; margin: 0 0 .5rem; }
.hero p  { color: #440909; font-size: 3rem; margin: 0; }

@media (max-width: 480px) {
  .hero h1 { font-size: 3.2rem; }
  .hero p  { font-size: 1.6rem; }
}



/* Shared centered container for full-width sections */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

/* Seasonal banner */
.seasonal-banner {
  background: #fff3e0;
  border-top: 3px solid #094418;
  border-bottom: 3px solid #094418;
  padding: 1.5rem 1rem;
}

.seasonal-banner p {
  margin: 0;
  text-align: center;
  font-size: 2rem;          /* bigger text */
  line-height: 1.6;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.seasonal-banner strong {
  font-weight: 700;
  text-decoration: underline;
}

.seasonal-icon {
  font-size: 2.4rem;        /* bigger tree */
}



/* Full-width colored sections */
.staples   { background: #f0ece3; padding: 3rem 0; }
.wholesale { background: #e9f5f0; padding: 3rem 0; }
.coaching  { background: #f5f5f5; padding: 3rem 0; }
.location  { background: #fff8f0; padding: 3rem 0; }
.aboutus   { background: #fdf2f2; padding: 3rem 0; }
.instagram { background: #f0f7ff; padding: 3rem 0; }
.contact   { background: #fafafa; padding: 3rem 0; }


.about-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: left;
  max-width: 1100px;
  margin: 0 auto;
  gap: 3rem;
  padding: 3rem 1rem;
}

.about-image-wrapper {
  flex: 1 1 45%;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: block;
}

.about-text {
  flex: 1 1 55%;
  text-align: left;
  line-height: 1.6;
}

.about-text h2 {
  margin-top: 0;
  text-align: left;
}

/* Stack vertically on small screens */
@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}

/* Staples section: same layout as Café */
.staples-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 3rem;
  padding: 3rem 1rem;
}

.staples-image-wrapper {
  flex: 1 1 45%;
}

.staples-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: block;
}

.staples-text {
  flex: 1 1 55%;
  text-align: left;
  line-height: 1.6;
}

.staples-text h2 {
  margin-top: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .staples-row {
    flex-direction: column-reverse; /* stack with text first on mobile */
    padding: 2rem 1rem;
  }
}
/* Wholesale section – same as The Café layout */
.wholesale-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 3rem;
  padding: 3rem 1rem;
}

.wholesale-image-wrapper {
  flex: 1 1 45%;
}

.wholesale-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: block;
}

.wholesale-text {
  flex: 1 1 55%;
  text-align: left;
  line-height: 1.6;
}

.wholesale-text h2 {
  margin-top: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .wholesale-row {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}
/* About Us section – mirror of The Café (image right) */
.aboutus-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 3rem;
  padding: 3rem 1rem;
}

.aboutus-image-wrapper {
  flex: 1 1 45%;
}

.aboutus-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: block;
}

.aboutus-text {
  flex: 1 1 55%;
  text-align: left;
  line-height: 1.6;
}

.aboutus-text h2 {
  margin-top: 0;
  text-align: left;
}

/* stack vertically on small screens */
@media (max-width: 768px) {
  .aboutus-row {
    flex-direction: column-reverse; /* image below text on mobile */
    padding: 2rem 1rem;
  }
}
/* Location section — same flex style */
.location-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 3rem;
  padding: 3rem 1rem;
}

.location-image-wrapper {
  flex: 1 1 45%;
}

.location-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: block;
}

.location-text {
  flex: 1 1 55%;
  text-align: left;
  line-height: 1.6;
}

.location-text h2 {
  margin-top: 0;
  text-align: left;
}

.hours-list {
  list-style-type: disc;
  margin-left: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.hours-list li {
  margin-bottom: 0.3rem;
}

/* stack vertically on small screens */
@media (max-width: 768px) {
  .location-row {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}

.about-text em {
  font-style: italic;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
}

h1, h2, h3 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
}
/* Global text size increase for all sections */
section p,
section li {
  font-size: 1.3rem;
  line-height: 1.8;
}

section h2 {
  font-size: 2.4rem;
}
.coaching-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 auto 2rem auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.hours-note {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ---- COOP PAGE ---- */

.coop-page {
  padding: 3rem 0 4rem;
}

/* Coop page should be wider than the rest of the site */
.coop-page.container {
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
}

@media (min-width: 760px) {
  .coop-page.container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.coop-title {
  font-size: 2.4rem;
}

.logo-link {
  font-size: 1.4rem;
  text-decoration: none;
}

.coop-lock,
.coop-app {
  margin-top: 2rem;
}

.coop-lock h2,
.coop-app h2 {
  margin-bottom: 1rem;
}

.coop-section {
  margin-top: 2.5rem;
}

.coop-intro,
.coop-note {
  font-size: 1.8rem;
  line-height: 1.6;
}

/* search */
.coop-search {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin: 0.2rem 0 1.2rem;
}

.coop-search input {
  width: min(520px, 100%);
  padding: 0.65rem 0.9rem;
  font-size: 1.4rem;
  border-radius: 999px;
  border: 1px solid #ccc;
}

.coop-search-clear {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.coop-search-clear.hidden {
  display: none;
}

/* screen-reader only label */
.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;
}

.coop-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.coop-fields label {
  display: flex;
  font-size: 1.4rem;
  flex-direction: column;
  gap: 0.4rem;
}

.coop-fields input {
  padding: 0.6rem 0.8rem;
  font-size: 1.4rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* product grid (up to 6 across, but keep cards/image size) */
.product-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(1, minmax(220px, 1fr));
}

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

@media (min-width: 760px) {
  .product-grid { grid-template-columns: repeat(3, minmax(220px, 1fr)); }
}

@media (min-width: 980px) {
  .product-grid { grid-template-columns: repeat(4, minmax(220px, 1fr)); }
}

@media (min-width: 1200px) {
  .product-grid { grid-template-columns: repeat(5, minmax(220px, 1fr)); }
}

@media (min-width: 1500px) {
  .product-grid { grid-template-columns: repeat(6, minmax(220px, 1fr)); }
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.2rem 1.4rem 1.6rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  min-width: 0;      /* prevents grid overflow */
  overflow: hidden;  /* safety */
  box-sizing: border-box;
}

.product-card img {
  width: 100%;
  height: 180px;        /* keep the old visual size */
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.product-name {
  font-weight: 600;
  font-size: 1.5rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-unit {
  font-size: 1.3rem;
  color: #555;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 600;
}

.product-qty {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.product-qty input {
  width: 70px;
  padding: 0.4rem 0.6rem;
  font-size: 1.4rem;
  text-align: center;
}

/* summary */

.coop-summary {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coop-send-button {
  align-self: flex-start;
  padding: 0.8rem 1.6rem;
  font-size: 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #2f5c3b;
  color: #fff;
}

/* lock state + errors */

.hidden {
  display: none;
}

.coop-error {
  color: #b00020;
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

.coop-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 1.5rem;
}

.category-button {
  padding: 0.4rem 0.9rem;
  font-size: 1.3rem;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  cursor: pointer;
}

.category-button.active {
  background: #2f5c3b;
  color: #ffffff;
  border-color: #2f5c3b;
}

.section-subtitle {
 margin: 0;
  font-size: 4.05rem;
  font-weight: 450;
  opacity: 0.85;
  color: #094418;
}
.product-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:10px;
}

.add-btn{
  padding:10px 14px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.25);
  background:#fff;
  cursor:pointer;
  font-weight:700;
}

.qty-badge{
  min-width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  background:#f6f6f6;
  font-weight:800;
}
/* Make + and − the same size */
.dec-btn,
.add-btn{
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  font-size: 1.35rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Minus: neutral */
.dec-btn{
  background: #f6f6f6;
  color: #440909;
}

/* Plus: green */
.add-btn{
  background: #1f8b3a;
  border-color: #1f8b3a;
  color: #fff;
}
/* Mobile: make the banner less tall */
@media (max-width: 640px){
  .coop-banner{
    height: 120px;        /* tweak: 100–160px */
    object-fit: contain;  /* keep no cropping */
  }
}
@media (max-width: 640px){
  .section-subtitle{
    font-size: 2.5rem;   /* tweak smaller if needed */
    line-height: 1.2;
  }
}
/* Remove the big gap under the yellow header */
.coop-app{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.coop-app > *:first-child{
  margin-top: 0 !important;
}

/* If your banner image is the gap */
.coop-banner{
  margin: 0 !important;
  display: block;
}
/* Bigger WhatsApp question box */
#extra-items{
  min-height: 100px;   /* increase */
}
/* Make the WhatsApp box wider + bigger text */
#extra-items{
  width: 100%;
  max-width: 720px;   /* widen it */
  font-size: 1.05rem; /* bigger font */
}

/* Center it if max-width is applied */
#extra-items{
  display: block;
  margin: 0 auto;
}


/* Space before the Ask via WhatsApp button */
.coop-action-row{
  margin-top: 18px;    /* add padding/space above the button */
}

/* Bring Submit button closer to the note above */
.coop-summary .coop-action-row{
  margin-top: 8px;  /* was larger */
}

/* Tighten spacing in the Estimated total / Final total area */
.coop-summary{
  gap: 0.4rem; /* was 1rem */
}

.coop-summary > div p{
  margin: 0 0 6px;  /* remove big default <p> margins */
}

.coop-summary > div p:last-child{
  margin-bottom: 0; /* keep button close to "Final total..." */
}
.payment-modal { position: fixed; inset: 0; display: none; z-index: 9999; }
.payment-modal.is-open { display: block; }
.payment-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.payment-modal__card {
  position: relative;
  max-width: 520px;
  margin: 16vh auto 0;
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  text-align: center;
}
.payment-modal__card h3 { margin: 0 0 10px; font-size: 24px; font-weight: 600; }
.payment-modal__card p { margin: 0 0 16px; font-size: 16px; }
@media (max-width: 520px) {
  .payment-modal__card { margin: 14vh 14px 0; }
}
.coop-cart-actions .coop-send-button {
  padding: 10px 12px;
  border-radius: 12px;
  margin-left: 10px;
}
/* --- THE "ORGANIC MANIFESTO" THEME OVERRIDES --- */

/* 1. The Background & Text Color */
body {
  background-color: #f4f1ea; /* Creamy paper color */
  color: #0e3416;            /* Dark Forest Green from your image */
}

/* 2. Typography */
/* Keep Bebas Neue for headers, but change body to a "Typewriter" look */
.coop-intro, 
.coop-note, 
label, 
p, 
input, 
textarea,
.product-unit {
  font-family: 'Courier New', Courier, monospace; /* Typewriter style */
  font-weight: 600;
}

h1, h2, h3, .coop-title, .product-name, .product-price {
  color: #0e3416; /* Ensure headers are green */
  letter-spacing: 0.5px;
}

/* 3. The Header */
/* Remove the yellow, make it blend with the paper background */
.site-header {
  background-color: #f4f1ea; 
  border-bottom: 3px solid #0e3416;
}
.coop-title, .logo-link {
  color: #0e3416;
}

/* 4. Inputs & Forms */
/* Give them hard borders like a filled-out form */
input, textarea {
  background: #fff;
  border: 2px solid #0e3416 !important;
  border-radius: 4px !important; /* Slight rounding, mostly square */
  color: #0e3416;
}

/* 5. Product Cards */
/* Change from soft shadow to "Stamp" style */
.product-card {
  background: #ffffff;
  border: 2px solid #0e3416;
  border-radius: 8px;
  /* This creates a hard "pop art" shadow instead of a fuzzy one */
  box-shadow: 4px 4px 0px rgba(14, 52, 22, 0.2); 
  color: #0e3416;
}

.product-name {
  color: #0e3416;
}

.product-unit {
  color: #2f5c3b; /* Slightly lighter green */
}

/* 6. Buttons */
/* Make them solid green blocks */
.coop-send-button, 
.category-button.active,
button[type="submit"] {
  background-color: #0e3416;
  color: #f4f1ea; /* Cream text */
  border: 2px solid #0e3416;
  border-radius: 6px;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.2); /* Hard shadow */
}

.coop-send-button:active, 
.category-button.active:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

.category-button {
  border: 2px solid #0e3416;
  color: #0e3416;
  background: transparent;
  font-weight: bold;
}

/* 7. Plus/Minus Buttons */
.add-btn, .dec-btn {
  border: 2px solid #0e3416;
  color: #0e3416;
  background: transparent;
  border-radius: 6px;
}

.add-btn {
  background: #0e3416;
  color: #f4f1ea;
}

.qty-badge {
  border: 2px solid #0e3416;
  background: #fff;
  color: #0e3416;
  font-family: 'Courier New', Courier, monospace;
}

/* 8. Floating Cart */
.coop-cart-fab, .coop-cart-panel {
  background: #f4f1ea;
  border: 2px solid #0e3416;
  color: #0e3416;
  box-shadow: 4px 4px 0px #0e3416;
}
.coop-cart-head, .coop-cart-foot, .coop-cart-item {
  border-color: #0e3416;
}
/* --- MOBILE TWEAKS --- */
@media (max-width: 640px) {
  /* On phones, shrink the intro text */
  .coop-intro {
    font-size: 1.1rem !important; 
    line-height: 1.4;
  }
  /* FORCE disable transitions on all buttons */
/* 1. Remove the "Mobile Tap Flash" (Gray/Blue box on click) */
button, 
.category-button, 
.coop-send-button, 
input, 
textarea {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* 2. NUCLEAR NO-TRANSITION (High Specificity) */
/* Targets every possible state to force "Snap" effect */
.coop-send-button,
.coop-send-button:active,
.coop-send-button:hover,
.category-button,
.category-button.active,
.category-button:active,
.category-button:hover,
button,
button[type="submit"] {
    transition: none !important;
    animation: none !important;
}
  
}