/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

body > main {
  flex: 1;
}

img {
  max-width: 100%;
  display: block;
}
.container {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
}



/* ------------------------------------------------------- GLOBAL: HEADER */
header {
  background-color: #333;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.logo img {
  height: 60px;
  width: auto;
}
nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav ul li a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #fcd34d;
}

/* =============== Breakpoints FOR GLOBAL: HEADER =============== */
/* === Breakpoint: Tablet Portrait to Small Desktop (761px–1000px) === */
@media (min-width: 761px) and (max-width: 1000px) {
    nav {
    position: static;
    transform: none;
  }
}

/* === Breakpoint: Mobile (551px–760px) === */
@media (max-width: 760px) and (min-width: 551px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
  }
  nav {
    position: static;
    transform: none;
    margin-left: auto;
    margin-right: 15px;
  }
  nav ul {
    flex-direction: row;
    gap: 20px;
  }
  nav ul li a {
    font-size: 1rem;
  }
  .logo img {
    height: 50px;
  }
}

/* === Breakpoint: Mobile Narrow (≤550px) === */
@media (max-width: 550px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 1px 0px;
  }
  nav {
    position: static;
    transform: none;
    margin-left: auto;
    margin-right: 6px;
  }
  nav ul {
    flex-direction: row;
    gap: 20px;
  }
  nav ul li a {
    font-size: .9rem;
  }
  .logo img {
    height: 40px;
        margin-left: -3px;
  }
}



/* ------------------------------------------------------- HOME PAGE */
/* HERO SECTION */
#hero {
  position: relative;
  height: 600px;
  background: url('../images/banner-large.jpg') center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform-origin: top center;
}
#hero img.reggie-hero {
  position: relative;
  height: 450px;
  width: auto;
  z-index: 1;
  margin-bottom: 20px;
  top: 10px;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 40px;
  max-width: 850px;
  top: -40px;
}
.hero-overlay h1 {
  font-family: "funkydori", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.875rem;
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 1.05;
  text-shadow: 3px 3px 18px rgba(0, 0, 0, 0.85);
}
.hero-overlay .tagline {
  font-family: "funkydori", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.2rem;
  color: #ffffff;
  margin-top: -17px;
  line-height: 1.05;
  text-shadow: 3px 3px 18px rgba(0, 0, 0, 0.85);
}
.mobile-break {
  display: none;
}

/* =============== Breakpoints FOR HERO SECTION =============== */
/* === Breakpoint: Desktop Large (≥1201px) === */
@media (min-width: 1201px) {
  #hero {
    height: 600px;
    transform: none;
  }
  .hero-overlay {
    padding: 0 40px;
    max-width: 900px;
    top: -50px;
  }
  .hero-overlay h1 {
    font-size: 5.2rem;
  }
  .hero-overlay .tagline {
    font-size: 3.5rem;
    line-height: 0.9;
  }
  #hero img.reggie-hero {
    height: 480px;
  }
}


/* === Breakpoint: Desktop Medium (1001px–1200px) === */
@media (min-width: 1001px) and (max-width: 1200px) {
  #hero {
    height: 500px;
    transform: none;
  }
  .hero-overlay {
    padding: 0 30px;
    max-width: 750px;
    top: -50px;
  }
  .hero-overlay h1 {
    font-size: 4.5rem;
  }
  .hero-overlay .tagline {
    font-size: 2.8rem;
  }
  #hero img.reggie-hero {
    height: 420px;
  }
}


/* === Breakpoint: Tablet Portrait to Small Desktop (761px–1000px) === */
@media (min-width: 761px) and (max-width: 1000px) {
  #hero {
    height: 400px;
    transform: none;
  }
  .hero-overlay {
    padding: 0 30px;
    max-width: 761px;
    top: -40px;
  }
  #hero img.reggie-hero {
    height: 340px;
    top: 15px;
  }
  .hero-overlay h1 {
    font-size: 4rem;
  }
  .hero-overlay .tagline {
    font-size: 2.5rem;
    line-height: 0.8;
  }
}


/* === Breakpoint: Mobile (551px–760px) === */
@media (max-width: 760px) {
  #hero {
    height: 330px;
    transform: none;
  }
  .hero-overlay {
    padding: 0 30px;
    max-width: 761px;
    top: -40px;
  }
  #hero img.reggie-hero {
    height: 280px;
    top: 20px;
  }
  .hero-overlay h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    margin-top: 15px;
  }
  .hero-overlay .tagline {
    font-size: 2rem;
    line-height: 0.8;
  }
}


/* === Breakpoint: Mobile Narrow (≤550px) === */
@media (max-width: 550px) {
    #hero {
    height: 250px;
    transform: none;
  }
  #hero img.reggie-hero {
    height: 250px;
    top: 32px;
  }
    .hero-overlay {
    padding: 0 30px;
    max-width: auto;
    top: -34px;
  }
    .hero-overlay h1 {
    font-size: 2.3rem;
    line-height: 1.8;
    margin-top: 15px;
  }
  .hero-overlay .tagline {
    display: none;
  }
}



/* SUBTEXT SECTION */
#subtext {
  background-color: #007b7f;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px 70px;
  font-size: 1.25rem;
  line-height: 1.7;
}
#subtext p {
  margin: 0 auto;
  max-width: 900px;
}
#subtext p:last-of-type {
  margin-top: 30px;
  font-style: italic;
}

/* =============== Breakpoints FOR SUBTEXT SECTION =============== */
/* === Breakpoint: Tablet Portrait to Small Desktop (761px–1000px) === */
@media (max-width: 1000px) {
#subtext {
  padding: 45px 20px 50px;
  font-size: 1.25rem;
  line-height: 1.7;
}
}



/* BOOSTERS SECTION */
#boosters {
  background: url('../images/bowls-bg.jpg') center center/cover fixed no-repeat;
  color: white;
  padding: 80px 20px;
  text-align: center;
}
#boosters h2 {
  font-family: "funkydori", sans-serif;
  margin-bottom: -10px;
  font-size: 4.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  line-height:1;
}
#boosters p.subhead {
  font-size: 1.5rem;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.4;
}
.booster-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.booster-card {
  max-width: 300px;
}
.booster-card img {
  margin: 0 auto 20px;
}
.booster-card h3 {
  font-family: "funkydori", sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  margin-bottom: -15px;
}
.booster-card p {
  font-size: 1rem;
  line-height: 1.4;
}


/* DETAILS SECTION */
#details {
  background: url('../images/details-bg.jpg') center center/cover no-repeat;
  padding: 100px 20px;
  color: white;
  text-align: center;
}
.details-header h2 {
  font-family: "funkydori", sans-serif;
  font-size: 4.5rem;
  margin-bottom: -1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    line-height: 1;
}
.details-header h3 {
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0.1rem;
  line-height: 1.2;
}
.details-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.details-left {
  flex: 1 1 400px;
}
.details-left img {
  height: auto;
  max-height: 825px;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.details-right {
  flex: 1 1 500px;
  max-width: 600px;
  text-align: left;
}
.features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.features-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  position: relative;
  padding-left: 1.4em;
}
.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffcf3d;
  font-size: 1.5rem;
  top: -0.2em;
}
.center-text {
  text-align: center;
}


/* VOTE SECTION */
#vote {
  background: url('../images/vote-bg.jpg') center center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #222;
}
.vote-header h2 {
  font-family: "funkydori", sans-serif;
  font-size: 4.5rem;
  margin-bottom: 30px;
    line-height: 1.1;
}
.vote-portrait {
  width: 211.5px;
  height: auto;
  margin: 0 auto 30px;
}
.vote-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  align-items: stretch;
}
.vote-card {
  background: url('../images/wood-texture.jpg') center center/cover no-repeat;
  padding: 25px 20px 80px;
  border: 5px solid transparent;
  width: 335px;
  color: #222;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.vote-card:nth-child(1) { border-color: #4a3828; }
.vote-card:nth-child(2) { border-color: #e1581a; }
.vote-card:nth-child(3) { border-color: #00667e; }

.vote-card h3 {
  font-size: 2.05rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.vote-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.4;
  flex-grow: 1;
}
.vote-card .vote-percentage {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.vote-card button {
  background: linear-gradient(rgba(252, 215, 108, 0.85), rgba(252, 215, 108, 0.85)), url('../images/button.jpg') center center/cover no-repeat;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #222;
  cursor: pointer;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.25);
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
}
.vote-card button:hover {
  background-color: #f9cb3c;
}
.vote-footer {
  margin-top: 50px;
  font-size: 1.3rem;
  color: #222;
  font-weight: bold;
}
.vote-footer strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.5rem;
}


/* =============== Breakpoints FOR VOTE SECTION =============== */
/* === Breakpoint: Mobile (-760px) === */
@media (max-width: 760px) {
.vote-header h2 {
  font-family: "funkydori", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 30px;
    line-height: 1.1;
}
}



/* EMAIL SUBSCRIPTION SECTION OF HOME PAGE */
#subscribe {
  background-color: #FFF5D8;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

#subscribe .page-title {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 2;
  font-family: 'funkydori', sans-serif;
  font-size: 3.375rem;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

#subscribe .subscribe-wrapper {
  max-width: 1200px;
  margin: 100px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  position: relative;
}

#subscribe .reggie-img {
  flex: 0 0 auto;
  width: 563px;
}

/* What is this for?
#subscribe .reggie-img img {
  width: 100%;
  height: auto;
}
*/

#subscribe .sign-box {
  flex: 0 0 auto;
  width: 561px;
  background: url("../images/email-signup-texture.jpg") center center/cover no-repeat;
  border: 5px solid #5c3b18;
  padding: 18px;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  line-height: 1.3;
}

#subscribe .sign-box p:first-child {
  font-weight: bold;
  font-size: 2.0rem;
  margin: 2px 0 4px;
  line-height: 1.05;
}
#subscribe .sign-box p:nth-child(2) {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
#subscribe .sign-box p:last-child {
  font-style: italic;
  font-size: 1.3rem;
  margin: 0;
}

#subscribe form {
  margin-top: 20px;
  display: flex;
  width: 100%;
  max-width: 850px;
}
#subscribe form input[type="email"] {
  flex: 1;
  padding: 20px;
  font-size: 1.2rem;
  border: 2px solid #5c3b18;
  border-right: none;
  background: white;
  font-family: 'Open Sans', sans-serif;
}
#subscribe form .honeypot {
  display: none;
}
#subscribe form button {
  padding: 20px 30px;
  background-color: #f6c552;
  border: 2px solid #5c3b18;
  border-left: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
}

#thank-you {
  display: none;
  font-family: 'funkydori', sans-serif;
  font-size: 2rem;
  color: #5c3b18;
  text-align: center;
  margin-top: 1rem;
}

/* =============== Breakpoints FOR EMAIL SUBSCRIPTION SECTION =============== */
/* === Breakpoint: Desktop Large (>1200px) === */
@media (min-width: 1201px) {
  #subscribe .subscribe-wrapper {
    flex-direction: row;
    align-items: flex-start;
    position: relative;
  }

  #subscribe .reggie-img,
  #subscribe .sign-box {
    width: 50%;
  }

  #subscribe .sign-box {
    position: relative;
    top: 100px;
    max-width: 561px;
    box-sizing: border-box;
  }

  #subscribe form {
    position: absolute;
    top: calc(100% - 110px);
    right: 0;
    width: 850px;
    max-width: 100%;
  }
}


/* === Breakpoint: Desktop Medium (1001px–1200px) === */
@media (max-width: 1200px) and (min-width: 1001px) {
  #subscribe .subscribe-wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    position: relative;
  }

  #subscribe .reggie-img {
    width: 563px;
    flex-shrink: 0;
  }

  #subscribe .sign-box {
    width: auto;
    max-width: 561px;
    min-width: 300px;
    margin-left: -80px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    top: 100px;
    left: -200px;
  }

  #subscribe form {
    position: absolute;
    top: calc(100% - 110px);
    right: 0;
    justify-content: center;
  }
}


/* === Breakpoint: Tablet Portrait to Small Desktop (761px–1000px) === */
@media (max-width: 1000px) and (min-width: 761px) {
  #subscribe .subscribe-wrapper {
    flex-direction: column;
    align-items: center;
  }
  #subscribe .reggie-img,
  #subscribe .sign-box,
  #subscribe form {
    width: 100% !important;
    max-width: 90%;
    position: static !important;
  }

  #subscribe form {
    flex-direction: column;
  }

  #subscribe form input[type="email"],
  #subscribe form button {
    width: 100%;
    padding: 20px;
    font-size: 1rem;
    box-sizing: border-box;
    margin-top: 20px;
    border: 2px solid #5c3b18;
  }
  #subscribe form button {
    margin-top: -2px;
    padding: 30px;
  }
}


/* === Breakpoint: Mobile (≤760px) === */
@media (max-width: 760px) {
#subscribe .page-title {
  position: absolute;
  top: 50px;
  text-align: center;
  transform: translateX(-50%) translateY(20px);
  z-index: 2;
  font-family: 'funkydori', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  text-align: center;
  white-space: normal;
  width: 90%;
}

#subscribe .subscribe-wrapper {
  max-width: auto;
  margin: 80px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  position: relative;
}

  #subscribe .subscribe-wrapper {
    flex-direction: column;
    align-items: center;
  }


  #subscribe .reggie-img,
  #subscribe .sign-box,
  #subscribe form {
    width: 100%;
    max-width: 90%;
    position: static;
    margin: 0 auto;
  }
  #subscribe .sign-box p:first-child {
    font-size: 1.8rem;
  }
  #subscribe .sign-box p:nth-child(2) {
    font-size: 1.3rem;
  }
  #subscribe .sign-box p:last-child {
    font-size: 1.1rem;
  }

  #subscribe form {
    flex-direction: column;
  }

  #subscribe form input[type="email"],
  #subscribe form button {
    width: 100%;
    padding: 20px;
    font-size: 1rem;
    box-sizing: border-box;
    margin-top: 20px;
    border: 2px solid #5c3b18;
  }
  #subscribe form button {
    margin-top: -2px;
    padding: 30px;
  }
}





/* === SHARED FORM STYLING === */
.signup-form {
  margin-top: 20px;
  display: flex;
  width: 100%;
  max-width: 850px;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 20px;
  font-size: 1.2rem;
  border: 2px solid #5c3b18;
  border-right: none;
  background: white;
  font-family: 'Open Sans', sans-serif;
}

.signup-form .honeypot {
  display: none;
}

.signup-form button {
  padding: 20px 30px;
  background-color: #f6c552;
  border: 2px solid #5c3b18;
  border-left: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
}




/* FOOTER SECTION */
footer {
  background-color: #1d1f23;
  padding: 30px 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-size: 1rem;
}










/* ------------------------------------------------------- PRODUCTS PAGE */
/* PRODUCT LIST SECTION */
#products-intro {
  padding: 80px 20px 40px;
  max-width: 900px;
  margin: 0 auto;
}

#products-intro h1 {
  font-family: 'funkydori', sans-serif;
  font-size: 3.5rem;
  margin-bottom: -30px;
  text-align: center;
    line-height: 1;
  margin-bottom: -20px; /
}

#products-intro h2 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 60px;
  text-align: center;
}

#products-intro p {
  font-size: 1.125rem;
  margin-bottom: 16px;
  text-align: left;
}

#products-intro ul {
  max-width: 800px;
  margin: 0 auto 20px;
  padding-left: 20px;
  text-align: left;
  list-style: disc;
}

#products-intro li {
  margin-bottom: 10px;
}

/* === FULL-WIDTH PRODUCT ROWS === */
#products-list {
  padding: 0; /* Remove vertical padding from wrapper */
}

.product-row {
  width: 100%;
  padding: 60px 20px;
}

.bg-classic {
  background-color: #fef7dc;
}

.bg-umami {
  background-color: #110b02;
}

.bg-stealthy {
  background-color: #fdde79;
}

/* === PRODUCT CARD CONTENT === */
.product-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.product-card img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 6px;
  flex-shrink: 0;
}

.product-info {
  max-width: 600px;
}

.product-info h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.product-info p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Specific text color for Oh Mommy! Umami section */
.umami-card .product-info {
  color: white;
}

.umami-card .product-info h3 {
  color: white;
}

/* Reverse layout */
.product-card.reverse {
  flex-direction: row-reverse;
  color: white;
}
@media (max-width: 1000px) {
  .product-card.reverse {
    flex-direction: column;
  }
}

.quote {
  font-family: "Caveat", cursive;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
  color: #5c3b18;

  background-color: #fffbe9;
  padding: 12px 18px;
  border-left: 6px solid #f6c552;
  border-radius: 10px;
  display: inline-block;
  margin-top: 24px;
  transform: rotate(-1deg);
}

/* Mobile adjustment */
@media (max-width: 760px) {
  .quote {
    font-size: 1.4rem;
    padding: 10px 16px;
    border-left-width: 4px;
    margin-top: 20px;
  }
}


/* EMAIL SUBSCRIPTION SECTION OF PRODUCTS PAGE */
#email-cta {
  background-color: #fff5d8;
  padding: 80px 20px;
  width: 100%;
}

.email-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; /* prevent early stacking */
  gap: 40px;
  padding-left: 100px;
  padding-right: 100px;
}

.email-image {
  flex: 0 0 auto;
  width: 200px;
    margin-left: 80px;
  margin-top: -20px; 
  margin-bottom: 20px;
}

.email-text {
  flex: 1 1 auto;
  max-width: 600px; /* prevents overly wide text blocks */
}

.email-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
}

.email-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 12px;
  font-family: 'Open Sans', sans-serif;
}

.email-text p strong {
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}


@media (max-width: 1000px) {
  .email-cta-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}


/* SPECIFIC TO EMAIL SECTION */
/* === Breakpoint: Desktop Medium (1001px–1200px) === */
@media (min-width: 1001px) and (max-width: 1200px) {
  .email-image {
  flex: 0 0 auto;
  width: 200px;
    margin-left: 0px;
}
 .email-cta-inner {
  padding-right: 0px;
  }
}

/* === Breakpoint: Tablet Portrait to Small Desktop (761px–1000px) === */
@media (min-width: 761px) and (max-width: 1000px) {
/* JUST ADDED */
 .email-cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

.email-image {
  width: 210px;
  margin: -20px auto -10px;
}

  .email-text {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
  }
}

/* === Breakpoint: Mobile (551px–760px) === */
@media (max-width: 760px) {
  .signup-form {
    flex-direction: column;
  }

  .signup-form input[type="email"],
  .signup-form button {
    width: 100%;
    padding: 20px;
    font-size: 1rem;
    box-sizing: border-box;
    margin-top: 20px;
    border: 2px solid #5c3b18;
  }

  .signup-form button {
    margin-top: -2px;
    padding: 30px;
  }


 .email-cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

.email-image {
  width: 210px;
  margin: -20px auto -10px;
}

  .email-text {
    max-width: 100%;
  }
}
/* ---------------------------------------------------------------------------- */


/* === Breakpoint: Everything Below Tablet Portrait (–1000px) === */
@media (max-width: 1000px) {
  .product-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .product-info {
    max-width: 90%;
  }

  .product-card img {
    max-width: 80%;
  }
}










/* ------------------------------------------------------- ABOUT PAGE */
#about {
  padding: 80px 20px;
}

#about h1 {
  font-family: 'funkydori', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 60px;
  text-align: center;
    line-height: 1;
}

.about-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.about-image {
  flex: 0 0 auto;
  width: 250px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.about-text {
  flex: 1 1 600px;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}

.about-text em {
  font-style: italic;
  color: #5c3b18;
}

/* === Breakpoint: Desktop Medium-Small (761 px–1200px) === */
@media (min-width: 761px) and (max-width: 1200px) {
  .about-wrapper {
    display: block; /* Remove any flex/grid */
  }

  .about-image {
    float: left;
    width: 250px;
    margin-right: 30px;
    margin-bottom: 20px;
  }

  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }

  .about-text {
    overflow: hidden; /* Ensures parent wraps around floated image */
  }
}

/* === Breakpoint: Mobile (551px–760px) === */
@media (max-width: 760px) {
  .about-image {
    float: none; /* Remove float */
    width: 350px;
    margin: -40px auto 0px; /* Center horizontally, add bottom spacing */
  }

  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
  }
}

/* === Breakpoint: Mobile Narrow (≤550px) === */
@media (max-width: 550px) {
  .about-image {
    float: none; /* Remove float */
    width: 100%;
    margin: -40px auto 0px; /* Center horizontally, add bottom spacing */
  }
}










/* ------------------------------------------------------- FAQ PAGE */
#faq {
  padding: 80px 20px;
}

#faq h1 {
  font-family: "funkydori", sans-serif;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
  line-height: 1;  
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007b7f;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

@media (max-width: 760px) {
  #faq {
    padding: 60px 15px;
  }

  #faq h1 {
    font-size: 3.5rem;
  }

  .faq-item h3 {
    font-size: 1.3rem;
  }

  .faq-item p {
    font-size: 1rem;
  }
}