/* ==================================================================
   RESET & BASE
   ================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: black;
}
#container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================================================================
   HEADER & LOGO
   ================================================================== */
#header {
  text-align: center;
  padding: 20px 0;
}
#logo-box {
  height: 90px;
}

/* ==================================================================
   NAVIGATION
   ================================================================== */
#nav {
  background: #8dbe44;
  padding: 15px 0;
  margin-bottom: 20px;
  border: 5px solid #8dbe44;
}
.topnav ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
}
.topnav ul li a {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  padding: 7px 0;
}
.topnav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: #c25a8f;
}

/* ==================================================================
   WOWSLIDER
   ================================================================== */
#wowslider-container1 {
  margin: 20px auto;
  border: 5px solid #8dbe44;
  box-sizing: border-box;
  overflow: hidden;
}

/* ==================================================================
   INTRO SECTION
   ================================================================== */
#intro {
  max-width: 1400px;
  margin: 20px auto;
  background: #c25a8f;
  border: 5px solid #8dbe44;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  padding: 40px;
  text-align: center;
}
#intro h2 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
}
#intro p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: black;
}
/* ==================================================================
   PHOTO CONTAINER
   ================================================================== */
#photo-container {
  max-width: 1400px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.photo-box {
  flex: 1 1 calc(33.33% - 20px);
  background: #fff;
  border: 5px solid #8dbe44;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
}
.photo-box img {
  width: 100%;
  height: auto;
  border: 2px solid #c25a8f;
  display: block;
  margin-bottom: 15px;
}

/* ==================================================================
   ABOUT SECTION
   ================================================================== */
#about-section {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 30px auto;
  background-color: #c25a8f;
  padding: 20px;
  border: 5px solid #8dbe44;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}
#about-section .image img {
  display: block;
  width: 100%;
  max-width: 400px;
  border: 2px solid #8dbe44;
}
#about-section .text {
  flex: 1;
  padding-left: 20px;
  color: #fff;
}
#about-section .text h1 {
  font-size: 50px;
  margin-bottom: 20px;
  text-decoration: underline #8dbe44;
}
#about-section .text p {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ==================================================================
   SHOP SECTION
   ==================================================================*/
#shop-section {
  text-align: center;
  border: 8px solid #8dbe44;
  margin-bottom: 2rem;
}
.shop-controls {
  text-align: center;
  margin-bottom: 1.5rem;
}
#shop-search {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #c25a8f;
  width: 100%;
  max-width: 300px;
  transition: border-color 0.3s;
}
#shop-search:focus {
  outline: none;
  border-color: #8dbe44;
}
.product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: start;
  padding: 1rem;
}
.product-card {
  background: #ffffff;
  border: 5px solid #c25a8f;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 2px solid #8dbe44;
  transition: transform 0.3s;
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-card h3 {
  font-size: 30px;
  color: #8dbe44;
  margin: 0.75rem 0;
}
.product-card .price {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

/* ==================================================================
   BUTTON GROUP (inside each product-card)
   ==================================================================*/
.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  margin-top: auto;
}

/* ==================================================================
   UNIFIED BUTTON STYLES (all buttons share these sizing rules)
   ==================================================================*/
.cta-button,
.photo-button,
.button-group .cta-button,
.button-group .info-button,
.contact-form button,
.cta-section .cta-button,
#thank-you .cta-button,
#review-form .cta-button,
#checkout-button,
#product-detail a.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;  /* unified padding */
  font-size: 1rem;          /* unified font-size */
  border-radius: 20px;      /* where you had rounding */
  cursor: pointer;
  text-align: center;
  transition: background 0.3s, transform 0.2s, border-color 0.3s, filter 0.3s;
}

/* intro & primary CTA */
.cta-button, #checkout-button { /* covers #intro, #checkout-button etc. */
  background: #c25a8f;
  color: #fff;
  border: 2px solid #c25a8f;
}
.cta-button:hover {
  background: #8dbe44;
}

/* photo buttons */
.photo-button {
  background: #c25a8f;
  color: #fff;
  border: 2px solid transparent;
}
.photo-button:hover {
  background: #d578ab;
  border-color: #fff;
  transform: translateY(-2px);
}

/* two-button group */
.button-group .cta-button {
  background: #c25a8f;
  color: #fff;
  border: 2px solid #c25a8f;
}
.button-group .cta-button:hover {
  background: #8dbe44;
  border-color: #8dbe44;
  transform: translateY(-2px);
}
.button-group .info-button {
  background: #fff;
  color: #8dbe44;
  border: 2px solid #8dbe44;
}
.button-group .info-button:hover {
  background: #8dbe44;
  color: #fff;
  transform: translateY(-2px);
}

/* contact-form submit */
.contact-form button {
  background: #c25a8f;
  color: #fff;
  border: 2px solid #c25a8f;
}
.contact-form button:hover {
  background: #8dbe44;
  border-color: #8dbe44;
  transform: translateY(-2px);
}

/* CTA SECTION */
.cta-section .cta-button {
  background: #c25a8f;
  color: #fff;
  border: 2px solid #c25a8f;
}
.cta-section .cta-button:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Thank-you page button */
#thank-you .cta-button {
  background: #c25a8f;
  color: #fff;
  border: 2px solid #c25a8f;
}
#thank-you .cta-button:hover {
  background: #8dbe44;
  border-color: #8dbe44;
  transform: translateY(-2px);
}

/* Product detail page button */
#product-detail a.button {
  background: #c25a8f;
  color: #fff;
  border: 2px solid #c25a8f;
}
#product-detail a.button:hover {
  background: #8dbe44;
  border-color: #8dbe44;
  transform: translateY(-2px);
}

/* ==================================================================
   PLACEHOLDER CARD STATE
   ==================================================================*/
.product-card.placeholder .cta-button,
.product-card.placeholder .info-button {
  background: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}
.product-card.placeholder .cta-button:hover,
.product-card.placeholder .info-button:hover {
  transform: none;
}

/* ==================================================================
   CART / CHECKOUT PAGE
   ==================================================================*/
#cart-section {
  max-width: 1000px;
  margin: 2rem auto;
  text-align: center;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.cart-table th,
.cart-table td {
  border: 2px solid #c25a8f;
  padding: 0.75rem;
  text-align: center;
}
.cart-table thead {
  background-color: #8dbe44;
  color: #ffffff;
}
.cart-table tfoot td {
  font-size: 1.25rem;
  font-weight: 600;
}
.cart-actions {
  text-align: center;
  margin-top: 1rem;
}

/* ==================================================================
   RESPONSIVE TWEAKS
   ==================================================================*/
@media (max-width: 900px) {
  .product-list {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}
@media (max-width: 600px) {
  .product-list {
    grid-template-columns: 1fr;
  }
  .shop-controls {
    text-align: center;
  }
}
/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
#contact-section {
  max-width: 1400px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border: 5px solid #8dbe44;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 0;
}

#contact-section h2 {
  font-size: 50px;
  color: #8dbe44;
  text-align: center;
  margin-bottom: 15px;
}

#contact-section p {
  font-size: 20px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

/* Form layout */
.contact-form form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-form label {
  font-weight: bold;
  color: #8dbe44;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #c25a8f;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8dbe44;
}

/* Submit button */
.contact-form button {
  width: fit-content;
  padding: 14px 30px;
  font-size: 20px;
  background: #c25a8f;
  color: #fff;
  border: 2px solid #c25a8f;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  justify-self: center;
}

.contact-form button:hover {
  background: #8dbe44;
  border-color: #8dbe44;
  transform: translateY(-2px);
}

/* Alternate contact info */
.contact-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-info h3 {
  font-size: 30px;
  color: #c25a8f;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 18px;
  color: #333;
  margin: 5px 0;
}
/* ==========================================================================
   Alternate Contact Info Section
   ========================================================================== */
.alt-contact-section {
  max-width: 1400px;
  margin: 20px auto 40px;
  padding: 30px;
  background: #fff;
  border: 5px solid #8dbe44;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.alt-contact-section .contact-info {
  text-align: center;
}

.alt-contact-section .contact-info h3 {
  font-size: 50px;
  color: #c25a8f;
  margin-bottom: 15px;
}

.alt-contact-section .contact-info p {
  font-size: 20px;
  color: #333;
  margin: 20px 0;
}
 /* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */
#thank-you {
  max-width: 1400px;
  margin: 40px auto;
  padding: 50px 30px;
  background: #fff;
  border: 5px solid #8dbe44;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  border-radius: 0;
}

#thank-you h2 {
  font-size: 50px;
  color: #8dbe44;
  margin-bottom: 20px;
}

#thank-you p {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Reuse your existing .cta-button styling (or redefine here) */
#thank-you .cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: #c25a8f;
  color: #fff;
  border: 2px solid #c25a8f;
  border-radius: 4px;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

#thank-you .cta-button:hover {
  background: #8dbe44;
  border-color: #8dbe44;
  transform: translateY(-2px);
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */
#product-detail {
  max-width: 1400px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border: 5px solid #8dbe44;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 0;
}

#product-detail h2 {
  font-size: 50px;
  color: #c25a8f;
  text-align: center;
  margin-bottom: 30px;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.product-info {
  flex: 1;
}

.product-info p {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.product-info p strong {
  color: #c25a8f;
}

#product-detail a.button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: #c25a8f;
  color: #fff;
  border: 2px solid #c25a8f;
  border-radius: px;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

#product-detail a.button:hover {
  background: #8dbe44;
  border-color: #8dbe44;
  transform: translateY(-2px);
}

/* Stack on small screens */
@media (max-width: 800px) {
  .product-container {
    flex-direction: column;
    align-items: center;
  }
  .product-image {
    flex: 0 0 auto;
  }
}
/* -----------------------------------------------------------------------------
   Ensure header stays full-width, with a bit of breathing room
-----------------------------------------------------------------------------*/
#header {
  width: 100%;
  padding: 20px 0;
  font-size: 50px;
  color: #c25a8f;
  text-align: center;
  margin-bottom: 20px; /* separate from container */
  background: none;    /* remove any container styling */
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
#reviews {
  max-width: 1400px;
  width: 100%;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border: 5px solid #8dbe44;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
#reviews h3 {
  font-size: 50px;
  color: #8dbe44;
  text-align: center;
  margin-bottom: 25px;
}

/* Mocked reviews */
.review {
  border: 2px solid #c25a8f;
  padding: 15px;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  background: #fafafa;
}
.rating-display {
  font-size: 40px;
  color: #f5b301; /* gold */
}
.review p {
  margin: 10px 0 0;
  font-size: 20px;
  color: #333;
}

/* ===== add-review form ===== */
.add-review {
  margin-top: 30px;
  border-top: 2px dashed #8dbe44;
  padding-top: 30px;
}
.add-review h4 {
  font-size: 50px;
  color: #c25a8f;
  text-align: center;
}

/* Star-rating inputs */
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 5px;
}
.rating input {
  display: none;
}
.rating label {
  font-size: 50px;
  color: #ccc;
  cursor: pointer;
}
.rating label:before {
  content: "★";
}
.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
  color: #f5b301;
  font-size: 40px;
}

/* Review form fields */
#review-form {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}
#review-form label {
  font-weight: bold;
  color: #8dbe44;
}
#review-form input[type="text"],
#review-form textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #c25a8f;
  font-size: 16px;
  box-sizing: border-box;
}
#review-form input:focus,
#review-form textarea:focus {
  outline: none;
  border-color: #8dbe44;
}
#review-form .cta-button {
  justify-self: center;
  margin-top: 10px;
}
/* ==================================================================
   INTRO SECTION
   ================================================================== */
#intro {
  max-width: 1400px;
  margin: 20px auto;
  background: #fff;
  border: 5px solid #8dbe44;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  padding: 40px;
  text-align: center;
}
#intro h2 {
  font-size: 2.5rem;
  color: #c25a8f;
  margin-bottom: 20px;
}
#intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #c25a8f;
  color: #fff;
  border-radius: 20px;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background 0.3s;
}
.cta-button:hover {
  background: #8dbe44;
}

/* ==================================================================
   PHOTO CONTAINER
   ================================================================== */
#photo-container {
  max-width: 1400px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.photo-box {
  flex: 1 1 calc(33.33% - 20px);
  background: #fff;
  border: 5px solid #8dbe44;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
}
.photo-box img {
  width: 100%;
  height: auto;
  border: 2px solid #8dbe44;
  display: block;
  margin-bottom: 15px;
}
.photo-button {
  padding: 12px 24px;
  background: #c25a8f;
  color: #fff;
  border: 2px solid transparent;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  font-size: 20px;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s, border-color 0.3s;
}
.photo-button:hover {
  background: #d578ab;
  border-color: #fff;
  transform: translateY(-2px);
}
.photo-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ==================================================================
   ABOUT SECTION
   ================================================================== */
#about-section {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 30px auto;
  background-color: #c25a8f;
  padding: 20px;
  border: 5px solid #8dbe44;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}
#about-section .image img {
  display: block;
  width: 100%;
  max-width: 400px;
  border: 2px solid #8dbe44;
  border-radius: 0;
}
#about-section .text {
  flex: 1;
  padding-left: 20px;
  color: #fff;
}
#about-section .text h1 {
  font-size: 50px;
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: #8dbe44;
}
#about-section .text p {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ==================================================================
   WHY CHOOSE US PAGE
   ================================================================== */
body.why-choose-us .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px auto;
  max-width: 1400px;
  padding: 40px;
  background: #fff;
  border: 5px solid #8dbe44;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
body.why-choose-us .section-container .image img {
  width: 100%;
  max-width: 600px;
  object-fit: cover;
  border: 2px solid #8dbe44;
}
body.why-choose-us #why-choose-us {
  margin: 40px auto;
  max-width: 1400px;
  padding: 40px;
  background: #fff;
  border: 5px solid #8dbe44;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
body.why-choose-us #why-choose-us .reasons-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}
body.why-choose-us .reason-card {
  text-align: center;
  padding: 20px 15px;
  border: 2px solid #8dbe44;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
} 
/* ==========================================================================
   GRID SECTION – TEXT STYLING
   ==========================================================================*/

/* 1) Top Reasons grid cards */
body.why-choose-us .reason-card h3 {
  font-size: 50px;          /* headline size */
  color: #8dbe44;             /* match your green accent */
  margin: 0.75rem 0 0.5rem;   /* space above/below */
  line-height: 1.2;
}

body.why-choose-us .reason-card p {
  font-size: 20px;            /* body text size */
  color: #333;                /* dark neutral */
  line-height: 1.6;
  margin: 0;
}

/* 2) Two-column flex sections (e.g. “What Makes Us Different”, “From a Mom”) */
body.why-choose-us .section-container .text h2,
body.why-choose-us .section-container .text h1 {
  font-size: 2.5rem;          /* big section titles */
  color: #c25a8f;             /* use your pink accent here if you like */
  margin-bottom: 1rem;
}

body.why-choose-us .section-container .text p,
body.why-choose-us .section-container .text ul li {
  font-size: 1.125rem;        /* comfortable reading size */
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* 3) “What You Get” single-row grid bullets */
body.why-choose-us #what-you-get .text ul li {
  font-size: 1.125rem;
  color: #333;
  padding: 0.5rem 1rem;       /* breathing room inside each cell */
  text-align: center;
}


/* ==================================================================
   OUR STORY SECTION
   ================================================================== */
#our-story {
  display: flex;
  align-items: center;    /* ← center image & text vertically */
  gap: 20px;
  max-width: 1400px;
  margin: 30px auto;
  background: #c25a8f;
  padding: 20px;
  border: 5px solid #8dbe44;
  box-sizing: border-box;
}

#our-story .image {
  flex: 0 0 auto;         /* keep image at its intrinsic width */
  display: flex;          /* turn this into a flex container */
  align-items: center;    /* vertically center the <img> inside it */
}

#our-story .image img {
  width: 100%;
  max-width: 400px;
  border: 2px solid #8dbe44;
  display: block;
}

#our-story .text {
  flex: 1;
}

#our-story .text h1 {
  font-size: 50px;
  text-decoration: underline;
  margin-bottom: 20px;
  color: white;
  text-decoration-color: #8dbe44;
}

#our-story .text p {
  font-size: 22px;
  line-height: 1.6;
  color: white;
  margin-bottom: 10px;
}

/* ==================================================================
   TEAM SECTION
   ================================================================== */
#team-wrapper {
  max-width: 1400px;
  width: 100%;/* same as #our-story */
  margin: 30px auto;      /* center it with the same top/bottom spacing */
  padding: 20px;
  background: #fff;
  text-align: center;
  border: 5px solid #8dbe44; 
  box-sizing: border-box; 
}

#family-header {
  font-size: 50px;
  color: #8dbe44;
  margin-bottom: 10px;
}
.team-box {
  display: inline-block;
  width: 330px;
  margin: 15px;
  border: 5px solid #c25a8f;
  background: #fff;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1)
}
.team-box img {
  width: 100%;
  height: auto;
  border: 2px solid #8dbe44;
  border-radius: 0;
}

/* ==================================================================
   CORE VALUES SECTION
   ================================================================== */
#core-values {
  width: 100%;
  background-color: #c25a8f;
  color: white;
  padding: 20px 0;
  margin: 40px 0;
  border: 5px solid #8dbe44;
  text-align: center;
}
#core-values h2 {
  font-size: 50px;
  color: white;
  text-align: center;
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: #8dbe44;
}
#core-values ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
#core-values li {
  font-size: 20px;
  padding: 0 10px;
  text-align: center;
}
#core-values li + li {
  border-left: 2px solid #8dbe44;
  padding-left: 20px;
  margin-left: 20px;
}


/* ==================================================================
   FOOTER
   ================================================================== */
#footer {

  color: black;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  margin: 20px auto 10px;
  border: none;
}

/* ==================================================================
   GENERAL STYLES
   ================================================================== */

body {
    background-color: #fff5f5;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Container */
#container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ==================================================================
   HEADER STYLES
   ================================================================== */

#header {
    text-align: center;
    padding: 20px 0;
}

#logo-box {
    height: 90px;
    width: auto;
}


/* ==================================================================
   SERVING TIPS PAGE STYLING
   (Add at end of mystyle.css)
   ==================================================================*/

/* Remove old main-content wrapper */
#main-content {
  background: none;
  padding: 0;
  box-shadow: none;
  margin: 0;
}

/* —— single-box intro styling —— */
.intro-section {
  max-width: 1400px;
  margin: 20px auto;
  border: 5px solid #8dbe44;
  overflow: hidden;      /* contain the colored h1 background */
  border-radius: 0;
}

.intro-section h1 {
  background: #c25a8f;
  color: white;
  font-size: 50px;
  text-align: center;
  margin: 0;             /* remove any extra gaps */
  padding: 15px 0;
}

.intro-section p {
  background: #c25a8f;
  color: white;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  padding: 2px;
}


/* Style each section (and Fun Facts) as its own container */
#main-content section,
#main-content .funfacts-section {
  background: #fff;
  padding: 25px;
  border: 5px solid #8dbe44;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin: 20px 0;
  width: 100%;
  max-width: 1400px;
  border-radius: 0;
}

/* Fun Facts section keeps purple background */
#main-content .funfacts-section {
  background: #c25a8f;
  color: #fff;
}

/* All headers 50px & centered */
#main-content > h1,
#main-content section h2,
#main-content section h3 {
  font-size: 50px;
  text-align: center;
  color: #8dbe44;
  margin-bottom: 20px;
}

/* All paragraphs 20px & black */
#main-content > p,
#main-content section p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  text-align: center;
}
#main-content > p .cta-button:hover {
  background: #6f9938;
  transform: translateY(-3px) scale(1.05);
}
/* Center the CTA in our intro-section wrapper */
.intro-section p .cta-button {
   display: block;
  margin: 10px auto;
  background: #8dbe44;
  color: #fff;
  border: 2px solid #c25a8f;
  padding: 14px 30px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  animation: pulse 3s ease-in-out infinite;
}

/* Fun Juice Recipes: cards as buttons */
.recipe-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 25px;
}
.recipe-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #fff, #f9f9f9);
  border: 2px solid #c25a8f;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: background 0.3s, transform 0.2s, border-color 0.3s;
  border-radius: 0;
}
.recipe-card:hover {
  background: #8dbe44;
  border-color: #6f9938;
  color: #fff;
  transform: translateY(-5px);
}
.recipe-card img {
  width: 100%;
  height: auto;
  border: 2px solid #8dbe44;
  margin-bottom: 15px;
}
.recipe-card h3 {
  font-size: 30px;
  color: #c25a8f;
  margin-bottom: 8px;
  text-align: center;
}
.recipe-card p {
  font-size: 20px;
  text-align: center;
}

/* Fun Juice Facts: grid + green dividers */
.funfacts-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  text-align: center;
}
.funfacts-list li + li {
  border-left: 2px solid #8dbe44;
  padding-left: 20px;
}

/* Helpful Serving Tips: grid + green dividers */
#main-content section:nth-of-type(3) ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#main-content section:nth-of-type(3) ul li {
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  padding: 10px 0;
}
#main-content section:nth-of-type(3) ul li + li {
  border-left: 2px solid #8dbe44;
  padding-left: 20px;
}

/* CTA SECTION STYLING */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8dbe44 0%, #c25a8f 100%);
  color: #fff;
  text-align: center;
  padding: 40px 25px;
  border: none;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
  background: rgba(255,255,255,0.1);
  transform: rotate(45deg);
  pointer-events: none;
}
.cta-section .cta-text {
  font-size: 30px;
  margin: 0 0 20px;
  color: #000;
}
.cta-section .cta-button {
  display: inline-block;
  background: #c25a8f;
  color: white;
  border: 2px solid #c25a8f;
  padding: 14px 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  animation: pulse 3s ease-in-out infinite;
}
.cta-section .cta-button:hover {
  background: #c25a8f;
  transform: translateY(-3px) scale(1.05);
}

/* Pulse keyframes */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

/* ==================================================================
   Fun Facts Boxed Paragraphs (2px border)
   ==================================================================*/
#main-content .funfacts-section .funfacts-wrapper {
  border: 2px solid #8dbe44;
  padding: 20px;
  margin-top: 20px;
  font-size: 20px;
}
#main-content .funfacts-section .funfacts-wrapper .funfacts-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  align-items: center;
  text-align: center;
}
#main-content .funfacts-section .funfacts-wrapper .funfacts-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
#main-content .funfacts-section .funfacts-wrapper .funfacts-list li + li {
  border-left: 2px solid #8dbe44;
  padding-left: 20px;
}

/* Fun Facts Header Override (white) */
#main-content .funfacts-section > h2 {
  color: #fff;
}
/* ==================================================================
   FAQ Accordion & Quiz Styles
   (Append to end of mystyle.css)
   ==================================================================*/

/* FAQ Section Container */
.faq-section {
  margin: 20px auto;
  max-width: 1400px;
  width: 100%;
  border: 5px solid #8dbe44;
  background: #fff;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.faq-section h2 {
  font-size: 50px;
  text-align: center;
  color: #c25a8f;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 10px;
}
.faq-item input {
  display: none;
}
.faq-item label {
  display: block;
  cursor: pointer;
  padding: 10px;
  font-weight: bold;
  border: 2px solid #8dbe44;
  border-radius: 0;
  transition: background 0.2s;
}
.faq-item label:hover {
  background: rgba(141,190,68,0.1);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 10px;
}
.faq-item input:checked + label + .faq-answer {
  max-height: 200px;
  padding: 10px;
}

/* Quiz Section Container */
.quiz-section {
  margin: 20px auto;
  max-width: 1400px;
  border: 5px solid #8dbe44;
  background: #fff;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
}
.quiz-section h2 {
  font-size: 50px;
  color: #8dbe44;
  margin-bottom: 20px;
}
.flavor-quiz p {
  font-size: 20px;
  margin-bottom: 15px;
}
.flavor-quiz div {
  margin: 10px 0;
}
.flavor-quiz input {
  display: none;
}
.flavor-quiz label {
  cursor: pointer;
  padding: 8px 16px;
  border: 2px solid #c25a8f;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}
.flavor-quiz label:hover {
  background: #c25a8f;
  color: #fff;
}
.quiz-result {
  display: none;
  margin-top: 20px;
  font-size: 20px;
  color: #333;
}
/* Show matching result when radio checked */
#tart:checked ~ #result-tart,
#sweet:checked ~ #result-sweet {
  display: block;
}

/* Pulse keyframes (re-use existing animation) */
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.05); }
}

/* Quiz Section Container (you already have most of this) */
.quiz-section {
  margin: 20px auto;
  max-width: 1400px;
  width: 100%;
  border: 5px solid #8dbe44;
  background: #fff;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
}
.quiz-section h2 {
  font-size: 50px;
  color: #8dbe44;
  margin-bottom: 20px;
}

/* The form wrapper */
.flavor-quiz p {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Each option becomes its own inline-block “button + result” */
.flavor-quiz .quiz-item {
  display: inline-block;
  width: 200px;           /* or auto, as you like */
  margin: 0 20px 30px;
  vertical-align: top;
}

/* Hide the actual radio input */
.flavor-quiz .quiz-item input {
  display: none;
}

/* Style the label as a button */
.flavor-quiz .quiz-item label {
  display: block;
  padding: 10px 20px;
  border: 2px solid #c25a8f;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
}

/* Hover state */
.flavor-quiz .quiz-item label:hover {
  background: #c25a8f;
  color: #fff;
}

/* Checked state—keep the button “on” */
.flavor-quiz .quiz-item input:checked + label {
  background: #c25a8f;
  color: #fff;
}

/* Hide all results by default */
.flavor-quiz .quiz-result {
  display: none;
  margin-top: 10px;
  font-size: 20px;
  color: #333;
}

/* Show the result under its own label when checked */
.flavor-quiz .quiz-item input:checked ~ .quiz-result {
  display: block;
}
/* fade-in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.funfacts-list li {
  opacity: 0;
  animation: fadeInUp 0.5s forwards;
}

/* stagger each fact by 0.2s */
.funfacts-list li:nth-child(1) { animation-delay: 0.2s; }
.funfacts-list li:nth-child(2) { animation-delay: 0.4s; }
.funfacts-list li:nth-child(3) { animation-delay: 0.6s; }
.funfacts-list li:nth-child(4) { animation-delay: 0.8s; }
/* add more delays if you add more facts */
/* ==================================================================
   WOWSLIDER
   ================================================================== */
#wowslider-container1 {
  margin: 20px auto;
  border: 5px solid #8dbe44;
  box-sizing: border-box;
  overflow: hidden;
}

/* ==========================================================================
   WHY CHOOSE US PAGE LAYOUT
   ==========================================================================*/

/* Wrap the whole section like other .section-container styles */
body.why-choose-us #why-choose-us {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border: 5px solid #8dbe44;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  text-align: center;
}

/* Section Heading */
body.why-choose-us #why-choose-us > h2 {
  font-size: 50px;
  color: #8dbe44;
  margin-bottom: 2rem;
  text-decoration: underline #8dbe44;
}

/* Grid of reasons */
body.why-choose-us .reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

/* Individual reason cards */
body.why-choose-us .reason-card {
  background: #fff;
  border: 2px solid #c25a8f;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body.why-choose-us .reason-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}
body.why-choose-us .reason-card h3 {
  font-size: 1.25rem;
  color: #8dbe44;
  margin: 0.5rem 0;
}
body.why-choose-us .reason-card p {
  font-size: 1rem;
  color: #333;
}

/* Make any .section-container children into two-column flex when desired */
body.why-choose-us .section-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
body.why-choose-us .section-container.reverse {
  flex-direction: row-reverse;
}

/* Ensure image/text in flex sections share equal weight */
body.why-choose-us .section-container .image,
body.why-choose-us .section-container .text {
  flex: 1;
}

/* Testimonials & “From a Mom” reuse .section-container styling */
body.why-choose-us #additional-testimony .image h1 {
  font-size: 50px;
  color: #c25a8f;
  margin-bottom: 1rem;
}
body.why-choose-us #additional-testimony .text p {
  font-size: 1.2rem;
  color: #333;
}

/* Slider container already has .section-container styles */
/* You can override its padding if needed: */
body.why-choose-us #wowslider-container1.section-container {
  padding: 1rem;
}

/* Responsive tweaks */
@media (max-width: 800px) {
  body.why-choose-us .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.why-choose-us .section-container {
    flex-direction: column !important;
  }
}
/* ==========================================================================
   WHAT YOU GET – PHOTO ON TOP & BULLET GRID
   ==========================================================================*/
body.why-choose-us #what-you-get {
  display: flex;                /* reuse flex container */
  flex-direction: column;       /* stack image above text */
  align-items: center;          /* center everything */
  text-align: center;           /* center text */
  gap: 1.5rem;                  /* space between image and list */
  padding: 2rem;                /* match other .section-container padding */
}

body.why-choose-us #what-you-get .image {
  order: -1;                    /* move image above the text block */
}

body.why-choose-us #what-you-get .image img {
  max-width: 100%;
  height: auto;
  border: 2px solid #8dbe44;
  margin-bottom: 0;             /* spacing now handled by flex gap */
}

body.why-choose-us #what-you-get .text ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem 2rem;               /* row gap 1rem, column gap 2rem */
  list-style: none;
  font-size: 20px;
  padding: 0;
  margin: 0;
}

body.why-choose-us #what-you-get .text ul li {
  padding: 0.5rem 0;
}

body.why-choose-us #what-you-get .text ul li + li {
  border-left: 2px solid #8dbe44;
  padding-left: 1rem;
  margin-left: 1rem;
}

/* on small screens, revert to single column */
@media (max-width: 600px) {
  body.why-choose-us #what-you-get {
    flex-direction: column;
  }
  body.why-choose-us #what-you-get .text ul {
    grid-template-columns: 1fr;
  }
  body.why-choose-us #what-you-get .text ul li + li {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    border-top: 2px solid #8dbe44;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
/* ==========================================================================
   WHAT YOU GET – full-width image divider + single-row bullet grid
   ==========================================================================*/

/* 1) Stack image above list, remove its box border, add only a bottom line */
body.why-choose-us #what-you-get .image {
  width: 100%;
}
body.why-choose-us #what-you-get .image img {
  display: block;
  width: 1400px;                                /* remove any previous box border */
  border: 2px solid #c25a8f; /* add only a bottom divider */       /* space down to the list */
}

/* 2) Turn your UL into a single-row grid with vertical dividers */
body.why-choose-us #what-you-get .text ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* exactly four columns */
  gap: 0;                                /* gutters via borders */
  list-style: none;
  padding: 0;
  margin: 0;
}

/* center each bullet’s text */
body.why-choose-us #what-you-get .text ul li {
  padding: 0 1rem;          /* horizontal padding inside each cell */
  text-align: center;       /* center the text within each cell */
}

/* add vertical divider between bullets */
body.why-choose-us #what-you-get .text ul li + li {
  border-left: 2px solid #8dbe44;
}

/* 3) Responsive: wrap to two columns on narrow screens */
@media (max-width: 800px) {
  body.why-choose-us #what-you-get .text ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  body.why-choose-us #what-you-get .text ul {
    grid-template-columns: 1fr;
  }
  body.why-choose-us #what-you-get .text ul li + li {
    border-left: none;
    border-top: 2px solid #8dbe44;
    margin-top: 1rem;
    padding-top: 1rem;
  }
}
/* ==========================================================================
   FULL-WIDTH WOWSLIDER (matches other 1400px sections)
   ========================================================================== */
body.why-choose-us #wowslider-container1 {
  max-width: 1400px;   /* cap it at your page width */
  width: 100%;         /* let it shrink/grow to container */
  margin: 2rem auto;   /* center with the same spacing */
  border: 5px solid #8dbe44;
  box-sizing: border-box;
  overflow: hidden;
}

/* ensure the inner slides fill that width */
body.why-choose-us #wowslider-container1 .ws_images,
body.why-choose-us #wowslider-container1 .ws_images ul {
  width: 100% !important;
}

/* ==========================================================================
   “From a Mom” Testimonial Styling
   ==========================================================================*/
body.why-choose-us #additional-testimony {
  background: #c25a8f;                 /* purple background */
  border: 5px solid #8dbe44;           /* green border to match site */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2rem;                       /* generous padding */
  display: flex;                       /* side–by–side on wide screens */
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;                     /* stack on narrow screens */
  text-align: center;
  margin: 2rem auto;
  max-width: 1400px;
}

/* Headline */
body.why-choose-us #additional-testimony .image h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin: 0;
  flex: 1;
}

/* Quote text */
body.why-choose-us #additional-testimony .text p {
  font-size: 1.25rem;
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  flex: 2;
  margin: 0;
  padding: 0 1rem;
}

/* Add decorative quotation marks */
body.why-choose-us #additional-testimony .text p::before,
body.why-choose-us #additional-testimony .text p::after {
  content: "“";     /* use opening quote for before; after will inherit */
  font-size: 20px;
  line-height: 0.5;
  position: absolute;
  color: rgba(255,255,255,0.3);
}
body.why-choose-us #additional-testimony .text p::before {
  top: -10px;
  left: 5px;
}
body.why-choose-us #additional-testimony .text p::after {
  content: "”";     /* closing quote */
  bottom: -10px;
  right: 5px;
}
/* ==========================================================================
   “From a Mom” – header above quote
   ==========================================================================*/
body.why-choose-us #additional-testimony {
  display: flex;
  flex-direction: column;    /* stack vertically */
  align-items: center;       /* center both blocks */
  text-align: center;        /* center text */
  padding: 2rem;
  gap: 1rem;                 /* space between header & quote */
}

body.why-choose-us #additional-testimony .image,
body.why-choose-us #additional-testimony .text {
  flex: none;                /* don’t stretch side-by-side */
  width: 100%;               /* full container width */
}

body.why-choose-us #additional-testimony .image h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin: 0;
}

body.why-choose-us #additional-testimony .text p {
  font-size: 1.25rem;
  color: #ffffff;
  font-style: italic;
  margin: 0;
  position: relative;
  padding: 0 1rem;
}

body.why-choose-us #additional-testimony .text p::before {
  content: "“";
  font-size: 100px;
  color: rgba(255,255,255,0.3);
  position: absolute;
  top: -10px;
}
body.why-choose-us #additional-testimony .text p::after {
  content: "”";
  font-size: 100px;
  color: #8dbe44;
  position: absolute;
  bottom: -10px;
}
