/** Shopify CDN: Minification failed

Line 589:71 Expected ")" to end URL token
Line 597:72 Expected ")" to end URL token
Line 1346:11 Expected ":"

**/
/* Root Variables - Color Palette */
:root {
  --primary-red: #EC2327;
  --secondary-red: #E8274A;
  --accent-orange: #FE921E;
  --accent-yellow: #F4D35E;
  --deep-brown: #4C1E0F;
  --background-color: #FBFDF1;
  --text-white: #FBFDF1;
  --lavendar-sea-salt-bark: #8E54D9;
  --peppermint-blue: #3895FF;
  --grey-text: #848484;
  --mint-green: #0AB457;
  --cream-white: #FBFDF1;

  /* Responsive Typography */
  --h1-sixtyfive: clamp(36px, 6vw, 65px);
  --h2-fiftytwo: clamp(28px, 5vw, 52px);
  --h3-fortytwo: clamp(24px, 4vw, 42px);
  --h4-thirtythree: clamp(20px, 3vw, 33px);
  --h5-twentysix: clamp(18px, 2.5vw, 26px);
  --body-large: clamp(18px, 3vw, 22px);
  --body-size: clamp(16px, 2vw, 18px);
  --small-size: clamp(12px, 1.8vw, 16px);
  --button-size: clamp(18px, 2.5vw, 22px);
  --heading-letter-spacing: -0.02em;
  
  /* Spacing */
  --section-padding: clamp(60px, 10vw, 150px);
  --container-padding: clamp(1rem, 3vw, 1.5rem);
  --gap-small: clamp(10px, 2vw, 20px);
  --gap-medium: clamp(20px, 4vw, 40px);
  --gap-large: clamp(40px, 6vw, 80px);
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

/* Typography */
body, p, li, .site-footer, .product-description {
  font-family: 'Poppins', sans-serif;
  color: var(--deep-brown);
  font-size: var(--body-size);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .site-header, .section-title {
  font-family: 'Rammetto One', cursive;
  color: var(--primary-red);
  letter-spacing: var(--heading-letter-spacing);
}

h1 { font-size: var(--h1-sixtyfive); }
h2 { font-size: var(--h2-fiftytwo); }
h3 { font-size: var(--h3-fortytwo); }
h4 { font-size: var(--h4-thirtythree); }
h5 { font-size: var(--h5-twentysix); }



.h4-poppins {
  font-family: 'Poppins', sans-serif;
  font-size: var(--h5-twentysix);
  letter-spacing: -0.03em;
  font-weight: 900;
  text-transform: uppercase;
}

.body-large {
  font-size: var(--body-large);
  font-family: 'poppins', sans-serif;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 700;
}

.h6-poppins {
  font-family: 'Poppins', sans-serif;
  font-size: var(--body-large);
  letter-spacing: -0.03em;
  font-weight: 900;
  text-transform: uppercase;
}

p {
  font-size: var(--body-size);
  letter-spacing: 0.005em;
  font-family: 'poppins', sans-serif;
}

/* Base Button Styles */
button, .btn, input[type="submit"], 
.red-btn, .green-btn, .orange-btn {
  background: var(--secondary-red); /* This will be overridden by specific buttons */
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  border: none;
  border-radius: 20px;
  padding: 19px 27px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
  transform: translate(5px, -5px);
  text-decoration: none;
  text-transform: uppercase;
}

.product-btn {
  background: var(--product-color);
}

@media (max-width: 768px) {
  button, .btn, input[type="submit"],
  .red-btn, .green-btn, .orange-btn {
    font-size: var(--button-size);
    width: 100%;
    display: block;
  }
}

body { 
  padding-top: 60px;
}

/* Shared Hover and Active Effects */
.red-btn:hover, .green-btn:hover, .orange-btn:hover, .btn:hover {
  transform: translate(10px, -10px);
}

.btn:active {
  transform: translate(5px, -10px) scale(0.98);
}

/* Red Button Specifics */
.red-btn {
  background: var(--secondary-red);
}

/* blue Button Specifics */
.blue-btn {
  background: var(--peppermint-blue);
}

/* Green Button Specifics */
.green-btn {
  background: var(--mint-green);
}

/* Orange Button Specifics */
.orange-btn {
  background: var(--accent-orange); 
}

/* Lavendar Button Specifics */
.lavendar-btn {
  background: var(--lavendar-sea-salt-bark); 
}

.lavendar-btn:active {
  background: #5F25AA;
}

.red-btn:active {
  background: #C02642;
}

.green-btn:active {
  background: #0B9148;
}

.orange-btn:active {
  background: #DC8221;
}

.blue-btn:active {
  background: #2771C6;
}



/* Button Wrapper Styles */
.red-btn-wrapper, .green-btn-wrapper, .orange-btn-wrapper, .red-btn-wrapper-white, .lavendar-btn-wrapper {
  margin-top: 20px;
  border-radius: 25px; /* Will override as needed */
  display: inline-block;
  position: relative;
  width: fit-content;
}

.red-btn-wrapper {
  background-color: var(--deep-brown);
  border-radius: 25px; 
}

.red-btn-wrapper-white {
  background-color: var(--text-white);
  border-radius: 25px; 
}

.green-btn-wrapper {
  background-color: var(--text-white);
}

.orange-btn-wrapper {
  background-color: var(--primary-red);
  align-self: flex-start;
}

@media (max-width: 768px) {
  button, .btn, input[type="submit"],
  .red-btn, .green-btn, .orange-btn {
    font-size: var(--button-size);
    width: 100%;
    text-align: center;
  }

  .red-btn-wrapper,
  .green-btn-wrapper,
  .orange-btn-wrapper,
  .red-btn-wrapper-white {
    width: 100%;
  }
}



/* General link styles */
a {
  color: var(--primary-red);
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Only apply hover color change to links that are NOT buttons */
a:not(.btn):not(.red-btn):not(.green-btn):not(.orange-btn):hover {
  color: var(--accent-orange);
}


/* Layout Helpers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5em;
  z-index: -1;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-white);
  text-align: center;
}

.hero-content h1 {
  color: var(--cream-white);
  margin-top: 24px;
  margin-bottom: 65px;
  line-height: 1.2;
}

.hero-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content button {
  box-shadow: -5px 5px 0 var(--deep-brown);
}

.subheadline {
  font-size: var(--h5-twentysix);
  font-family: 'poppins', sans-serif;
  color: var(--cream-white);
  margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
  .hero-section {
    height: 80vh
  }
  
}

.value-carousel {
    margin-top: -75px;
    background-image: url(//jasonfriendlyfoods.com/cdn/shop/t/5/assets/value-carousel-bg.svg?v=140394588266865456191754079466);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 370px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-left: 15px;
    z-index: 5;
    
}

.value-carousel-track {
    display: flex;
    animation: infiniteScroll 15s linear infinite;
    will-change: transform;
}

.value-carousel-track:hover {
    animation-play-state: paused;
}

.value-carousel-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    margin-right: 60px; /* Space between items */
    white-space: nowrap;
    flex-shrink: 0;
}

.value-carousel-item img {
    width: 37px;
    height: 37px;
}

.value-carousel h4 {
    color: var(--text-white);
    font-size: var(--h3-fortytwo);
    margin: 0;
    font-weight: 600;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.section-preheader {
  font-family: 'poppins', sans-serif;
  font-size: var(--h4-thirtythree);
  font-weight: 800;
  text-transform: uppercase;
  padding-bottom: 50px;
}

.section-header__bestsellers {
  padding-bottom: 37px;
  color: var(--deep-brown);
  text-align: center;
  font-size: var(--h1-sixtyfive);
}
.best-sellers {
  background-color: var(--cream-white);
  margin-top: -90px;
}

.best-sellers__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 1.5em;
}

.top-ofsection-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: var(--primary-red);
  margin-bottom: 88px;
}

.top-ofsection-text h1 {
  font-size: var(--h1-sixtyfive);
  font-weight: 800;
  letter-spacing: var(--heading-letter-spacing);
  text-align: center;
  color: var(--deep-brown);
}

.top-ofsection-text h4 {
  color: var(--primary-red);
}

.best-sellers {
  padding-top: 150px;
  padding-bottom: 200px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}


.parent > div {
  border-radius: 15px;
  overflow: hidden;
  background: var(--cream-white);
}

.div1, .div2, .div3 {
  border-radius: 15px;
  overflow: hidden;
  background: white; /* Optional: Add a background */
}



.product-info {
  padding: 1em;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.product-info {
  font-size: var(--body-large);
  text-align: left;
}

.price {
  font-size: var(--body-large);
}

/* Responsive layout */
@media (max-width: 768px) {
  .parent {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .best-sellers__container {
    padding: 50px 1.5em;
  }
}


.product-info {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  object-fit: fill;
  margin-top: -20px;
  background-size: cover;
}

.product-into p, h4, h5, a, span{
    color: var(--text-white);
}

.lavendar-sea-salt-bark {
  border-radius: 0 0 15px 15px;
  padding: 20px;
  color: var(--text-white);
  background-image:  url(//jasonfriendlyfoods.com/cdn/shop/t/5/assets/purple-wave.svg?v=47673674637121813781754172488);
}

.salted-caramel-bark {
  background-image: url(//jasonfriendlyfoods.com/cdn/shop/t/5/assets/brown-wave.png?v=876219780432805621754172486);
  border-radius: 0 0 15px 15px;
  padding: 20px;
  color: var(--text-white);
}

.raspbery-chocolate-bark {
  background-image: url(//jasonfriendlyfoods.com/cdn/shop/t/5/assets/raspberyy-wave.png?v=46115225203034988771754172489);
  border-radius: 0 0 15px 15px;
  padding: 20px;
  color: var(--text-white);
}

.best-sellers button {
  box-shadow: -5px 5px 0 var(--deep-brown);
}

.paper-bg {
  background-image: url("//jasonfriendlyfoods.com/cdn/shop/t/5/assets/paper-bg(7).png?v=149749532296350139031755719804");
  background-repeat: repeat;
  object-fit: cover;
  z-index: 1;
  padding: 100px 0;
  position: relative;
  background-color: var(--deep-brown);
  margin-top: -1px;
  margin-bottom: -1px;
}

.paper-bg-section {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
  position: relative;
  background-color: var(--product-bg);
}

.paper-top {
  background: url("//jasonfriendlyfoods.com/cdn/shop/t/5/assets/paper-bottom(5).png?v=100747801250935934861755719803") no-repeat center top;
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  margin-top: -15px;
  height: 51px;
  display:block;
  position: absolute;
  bottom: 0;
  width: calc(100% + 2px);
  z-index: 1;
  margin-bottom: -5px;
}

.paper-top-reverse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* full viewport width */
  height: 51px;
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
  margin: 0; 
  padding: 0;
  height: 51px;
  display:block;
  width: 100%;
  z-index: 3;
  margin-top: -50px;
}

.paper-body {
  background: url(//jasonfriendlyfoods.com/cdn/shop/t/5/assets/paper-bg(2).png?v=118729544665382017131754675045); /* your main paper texture */
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
  padding: 150px 20px;
}

.paper-body-two {
   background: url(//jasonfriendlyfoods.com/cdn/shop/t/5/assets/paper-bg(2).png?v=118729544665382017131754675045); /* your main paper texture */
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
  padding: 0 20px;
}



.paper-bottom {
  background: url("//jasonfriendlyfoods.com/cdn/shop/t/5/assets/paper-top(5).png?v=71764848832600448201755719804") no-repeat center bottom;
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
  height: 50px;
  width: 100%;
  margin: -5px 0 -5px 0; /* Keep bottom margin negative */
  padding: 0;
  display:block;
  position: absolute;
  top: -3px;
  z-index: 2;
}




.paper-bottom-reverse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* full viewport width */
  height: 150px;
  background-image: url(//jasonfriendlyfoods.com/cdn/shop/t/5/assets/paper-bg-bottom.png?v=100429643797108478221754675044);
  background-repeat: no-repeat;
  background-size: contain; /* or: background-size: 100% auto; */
  background-position: top center;
  pointer-events: none;
  z-index: 1;
}


.made-to-order-content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 83px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 1.5em;
  z-index: -2;
  transition: all 0.2s ease;
}

.paper-bg p, h4, h2, h5, a {
  color: var(--text-white);
}

.made-to-order-image {
  position: relative;
}

.made-to-order-content h2 {
  font-size: var(--h1-sixtyfive);
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 20px;
  transition: all 0.2s ease;
}


.paper-bg h5 {
  font-family: 'poppins', sans-serif;
  font-weight: 800;
}

.paper-bg p {
  font-family: 'rammetto one', cursive;
  font-size: var(--body-large);
  line-height: 1.6;
}

.row1 {
  flex: 1;
  min-width: 0; /* Prevents flex item from overflowing */
  background-color: var(--accent-orange);
  border-radius: 15px;
  transition: all 0.2s ease;
  position: relative;
}

.row1 img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  max-height: 670px;
  display: block;
  margin: -10px 0 15px 15px;
}

.row1 img:hover {
  transform: translate(5px, -10px);
  transition: all 0.2s ease;
}

.row2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  min-width: 0; /* Prevents flex item from overflowing */
  position: relative;
}

.text-bubble {
  background-color: var(--accent-orange);
  padding: 15px;
  border-radius: 999px;
  color: var(--text-white);
  position: absolute;
  top: 35%;
  left: 15%;
  opacity: 0; /* hidden by default */
  pointer-events: none; /* prevents it from blocking hover */
  transition: all 0.2s ease;
  border-radius: 999px 999px 0px 999px;
  z-index: 3;
}

.green-text-bubble {
  background-color: var(--mint-green);
}

.blue-text-bubble {
  background-color: var(--peppermint-blue);
}

.yellow-text-bubble {
  background-color: var(--accent-yellow);
}

.row1:hover .text-bubble {
  opacity: 1; /* show on hover */
  transform: translate(5px, -10px);
}

.biking-image-wrapper:hover .text-bubble {
  opacity: 1; /* show on hover */
  transform: translate(5px, -10px);
}

.made-to-order-content:hover .text-bubble {
  opacity: 1; /* show on hover */
  transform: translate(5px, -10px);
}

/* Responsive breakpoint - stack columns on smaller screens */
@media (max-width: 768px) {
  .made-to-order-content-wrapper {
    flex-direction: column;
    gap: 50px;
    padding: 90px 1.5em;
  }
  
  .row1, .row2 {
    width: 100%;
    aspect-ratio: 1/1;
  }

  .row1 img {
    width: 100%;
    aspect-ratio: 1/1;
  }
  
  .row2 {
    text-align: center; /* Center text on mobile for better readability */
  }
}


.value-prop-testimonials {
  background-color: var(--deep-brown);  
  position: relative;
  padding: 225px 0;
}

.value-prop-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  z-index: -1;
}

.value-prop-content h2 {
  font-size: var(--h1-sixtyfive);
  line-height: 1.2;
  color: var(--cream-white);
}

.pink-text {
  color: var(--secondary-red);
  font-size: var(--h2-size);
  font-family: 'Rammetto One', cursive;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 150px; 
  margin-top: 50px;
  max-width: 1200px; /* Optional: contain the width */
  width: 100%;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Changed from 'left' to proper value */
  width: clamp(280px, 100%, 1000px);
  background: var(--background-color);
  border-radius: 40px;
  padding: 52px 46px;
}

.last h2 {
  font-size: var(--h3-fortytwo);
  line-height: 1.25;
}

.last {
  gap: 25px;
}

.last h2 {
  font-size: var(--h3-fortytwo);
  line-height: 1.25;
  margin-bottom: 20px;
}

/* Create the staggered effect */
.testimonial:nth-child(2) {
  margin-top: 85px; /* Adjust this value to match your design */
  margin-left: 30px; /* Adjust this value to match your design */
}

.testimonial:nth-child(3) {
  margin-left: 60px; /* Adjust this value to match your design */
  margin-top: 75px;
}

/* Make responsive */
@media (max-width: 1332px) {

   .value-prop-testimonials  {
    padding: 100px 0 30px 0; /* Adjust padding for smaller screens */
   }

   .value-prop-content-wrapper {
    padding: 100px 20px;
   }

  .testimonials {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
  
  .testimonial:nth-child(2) {
    margin-top: 0; /* Remove offset on mobile */
    margin-right: 0;
  }

  .testimonial:nth-child(2) {
    margin-top: 0; /* Remove offset on mobile */
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial:nth-child(3) {
    margin-top: 0; /* Remove offset on mobile */
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial:nth-child(4) {
    margin-top: 25px; /* Remove offset on mobile */
    margin-left: 0;
    margin-right: 0;
  }
  
  .testimonial {
    padding: 30px 25px; /* Smaller padding on mobile */
  }

}

/* Rest of your existing CSS stays the same */
.stars img {
  width: 50px;
  height: 50px;
}

@media (max-width: 462px) {
  .stars img {
    width: 50px;
    height: 50px;
  }

  .last h2 {
  font-size: 30px;
  line-height: 1.25;
}
}

.testimonial-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  border: 4px solid var(--grey-text);
}

.grey {
  color: var(--grey-text);
}

.last {
  background-color: var(--deep-brown);
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  margin-left: 120px;
}

.pink-divider {
  background-image: url(//jasonfriendlyfoods.com/cdn/shop/t/5/assets/pink-section-divider.svg?v=12495604259407899291754172488);
  background-repeat: no-repeat;
  background-size: cover;   /* or 'contain' depending on the image */
  background-position: center;
  overflow: visible;        /* Allow frayed edges to overflow */
  z-index: 5;
  margin-top: -250px;
  background-color: var(--deep-brown);
  height: 20vh;
}

.featured-food {
  background-color: var(--secondary-red);
  padding-top: 30px;
  position: relative;
}

.featured-food-content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 83px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5em;
  z-index: 1;
}

.white {
  color: var(--text-white);
}

.featured-food-content-wrapper {
  padding-top: 50px;
  padding-bottom: 170px;
}

.featured-food-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  min-width: 0; /* Prevents flex item from overflowing */
  flex:1;
  justify-content: end; /* Aligns content to the bottom */
}

.featured-food-h2 {
  line-height: 1.3;
  font-size: var(--h1-sixtyfive);
}

.featured-food-content-image {
  flex: 1;
  min-width: 0; /* Prevents flex item from overflowing */
  width: 100%;
  max-width: 446px;
  aspect-ratio: 3/4;
  background-color: var(--mint-green);
  border-radius: 15px;
  margin-bottom: 275px;
  transition: all 0.2s ease;
  position: relative;
}

.featured-food-content-image:hover img {
  transform: translate(5px, -10px);
  transition: all 0.2s ease;
}


.featured-food-content-image img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 15px;
  object-fit: cover;
  display: block;
  margin: -15px 0 15px 15px;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .featured-food-content-wrapper {
    flex-direction: column;
    gap: 50px;
    padding: 50px 20px 350px 20px;
  }
  
  .featured-food-content-image img, .featured-food-content-image {
    width: 100%;
    aspect-ratio: 1/1; /* Adjusts aspect ratio for mobile */
    margin-bottom: 0; /* Remove bottom margin on mobile */
  }

  .featured-food-content-image img {
    margin: -5px 0 5px 5px;
  }

  .featured-food-content-image:hover img {
    transform: translate(5px, -5px); /* Remove hover effect on mobile */
  }
  
  .featured-food-content {
    gap: 55px;
    justify-content: center;
    text-align: center;
  }
}

.oregon-festival {
  background-color: var(--deep-brown);
  margin-bottom: -50px;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  margin-top: -2px;
}
.oregon-festival .top-ofsection-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: var(--cream-white);
  padding: 45px;
  padding-top: 100px;
  position: relative;
}


.oregon-festival .top-ofsection-text .section-preheader {
  color: var(--cream-white);
}

.oregon-festival  h1 {
  color: var(--cream-white);
  margin-bottom: 40px;
  line-height: 1.2;
}

.oregon-festival-image {
  width: 100%;
  max-width: 429px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.smaller-divider {
 margin-top: -70px;
}

@media screen and (max-width: 768px) {
  .oregon-festival .top-ofsection-text {
    padding: 100px 20px 20px 20px;
  }
  
  .oregon-festival h1 {
    margin-bottom: 20px;
  }
}

/* Section styles */
.grid-section {
    position: relative;
    padding: 275px 0;
    background-color: #f8f9fa;
    overflow: hidden;
    z-index: -1;
}

/* Background video */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Grid container */
.grid-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

/* Grid items */
.grid-item {
    padding: 40px 30px;
    text-align: center;
}

/* Heading styles */
.grid-item h2 {
    color: var(--text-white);
    margin-bottom: 15px;
}

.grid-item p {
  color: var(--text-white);
  font-size: var(--body-large);
  font-weight: 800;
  line-height: 1em;
}

/* Text styles */


/* Responsive design */
@media (max-width: 768px) {
    .grid-section {
        padding: 150px 0;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .grid-item {
        padding: 30px 20px;
    }
}

.jason-chilhood-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5em;
  text-align: center;
  padding-top:100px;
}



.jason-childood-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  min-width: 0; /* Prevents flex item from overflowing */
  justify-content: center;
  align-items: center;
}

.jason-childhood-content h2 {
  text-transform: capitalize;
}

.four-value-prop {
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin: 100px auto 90px auto;
}

.four-value-prop-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 10px;
  gap: 15px;
}

.four-value-prop-item p {
  color: var(--text-white);
  font-size: var(--body-size);
  font-weight: 800;
  font-family: 'poppins', sans-serif;
  text-transform: uppercase;
}

.value-prop-left {
  justify-content: end;
}

.value-prop-right {
  justify-content: start;
}

@media screen and (max-width: 768px) {
  .four-value-prop {
    grid-template-columns: 1fr;
    width: 100%;
  }
  
  .four-value-prop-item {
    justify-content: center;
    margin: 20px 0;
  }

  .four-value-prop-item img {
    width: 50px;
    height: 50px;
  }  

  .jason-chilhood-content-wrapper {
    padding: 0px 25px 0 25px;
    text-align: left;
  }

  .four-value-prop-item {
    justify-content: left;
  }
  
}

.newsletter {
  background-color: var(--cream-white);
  padding: 235px 0;
  text-align: center;
  z-index: -10;
  position: relative;
  z-index: 2;
}

.newsletter-content-wrapper {
  padding: 0 1.5em;
}

.newsletter h3 {
  color: var(--primary-red);
  font-weight: 800;
}
.newsletter h2 {
  color: var(--deep-brown);
  margin-bottom: 100px;
  font-size: var(--h1-sixtyfive);
}
.newsletter form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.newsletter input[type="email"], .newsletter input[type="text"] {
  padding: 25px;
  border-radius: 999px;
  width: 100%;
}

.newsletter-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 68px 60px;
  border: 1px solid var(--secondary-red);
  border-radius: 40px;
  background-color: #ffffff;
}


input[type="email"], .newsletter input[type="text"]  {
  width: 100%;
  appearance: none;
  padding: 15px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  background-color: #E8274A1A;
  height: 75px;
}

input[type="email"]::placeholder, .newsletter input[type="text"]::placeholder {
  color: var(--secondary-red);
  font-family: 'poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(12px, 2vw, 20px);
  align-self: center;
  text-transform: uppercase;
}

#newsletter-signup-button {
  margin-top: 50px;
}

@media screen and (max-width: 768px){

  .newsletter {
    padding 100px 0 100px 0;
  }

  .newsletter-form-wrapper {
    padding: 40px 20px;
    gap: 15px;
  }

  .newsletter h2 {
    margin-bottom: 30px;
  }
}

.top-section-divider-brown {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  overflow: visible;
  line-height: 0;
  margin-top: -5px;
  z-index: 2;
}
/*white divider */
.custom-shape-divider-top-1754695658 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1754695658 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 7px;
}

.custom-shape-divider-top-1754695658 .shape-fill {
    fill: #FFFFFF;
}

.custom-shape-divider-bottom-1754329088 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -1px;
}

.custom-shape-divider-bottom-1754329088 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 10vh;
}

.custom-shape-divider-bottom-1754329088 .shape-fill {
    fill: #4C1E0F;
}

.custom-shape-divider-bottom-1754329452 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1754329452 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 15vh;
}

.custom-shape-divider-bottom-1754329452 .shape-fill {
    fill: #E8274A;
}

.testimonials-divider {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .desktop {
    display: none;
  }
  
}

@media (min-width: 769px) {
  .mobile {
    display: none;
  }
}

/* Product Template */

/* Product Template Styles */
.product-main {
  z-index: 1;
  position: relative;
}

.product {
  background: var(--product-bg);
  padding: 2rem 1rem 100px 1rem;
  font-family: 'poppins', sans-serif;
}

.product__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Product Media Section */
.product__media {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
  width: 100%;
}

.product__image-wrapper {
  border-radius: 20px;
  padding: 2rem;
  max-width: 400px;
  overflow: hidden;
  margin: 0 auto;
}

.product__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: contain;
}

/* Ingredients Section */
.product__ingredients {
  background: var(--ingredients-bg);
  border-radius: 20px;
  padding: 2rem 2rem 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-around;
  align-items: center;
  color: white;
}

.ingredient {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.ingredient__icon {
  color: var(--ingredients-icon-color);
  margin-bottom: 0.5rem;
  width: 50px;
  height: 50px;
}

.ingredient__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'rammetto one', cursive;
}

.ingredient__label span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'rammetto one', cursive;
}

/* Product Info Section */
.product__info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1rem;
  position: sticky;
  top: 2rem;
  align-self: start;
  width: 100%;
}

.product__header {
  text-align: left;
}

.product__subtitle {
  font-size: var(--h5-twentysix);
  font-weight: 900;
  color: var(--deep-brown);
  margin: 0 0 0.5rem 0;
  letter-spacing: 2px;
  font-family: 'poppins', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product__title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--product-color);
  margin: 0;
  line-height: 1.1;
  text-transform: capitalize;
}

.product__description {
  color: var(--deep-brown);
  margin: 1rem 0;
  font-family: 'rammetto one', cursive;
  font-size: var(--small-size);
}

.product__description p {
  font-family: 'rammetto one', cursive;
  font-size: var(--small-size);
  line-height: 1.6;
}

/* Purchase Options */
.product__purchase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: 'poppins', sans-serif;
  font-size: var(--body-size);
  font-weight: 800;
}

.purchase-option {
  background: var(--background-color);
  border-radius: 1.25em;
  padding: 1.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.purchase-option:has(input:checked) {
  border-color: var(--product-color);
}

.purchase-option--subscription {
  background: var(--background-color);
}

.purchase-option__radio {
  display: flex;
  align-items: center;
}

.purchase-option__radio input[type="radio"] {
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  accent-color: var(--product-color);
}

.purchase-option__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  font-family: 'poppins', sans-serif;
  font-size: var(--body-size);
  font-weight: 800;
}

.product__images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.product__image-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.product__image--img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.purchase-option__label span {
  font-family: 'poppins', sans-serif;
  font-size: var(--body-size);
  font-weight: 800;
}

.purchase-option__type {
  font-weight: 600;
  color: var(--deep-brown);
  font-size: 0.875rem;
}

.purchase-option__price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--product-color);
}

.purchase-option--subscription .purchase-option__price {
  color: #9ca3af;
}

.purchase-option__frequency {
  margin-top: 1rem;
  display: none;
}

.purchase-option--subscription:has(input:checked) .purchase-option__frequency {
  display: block;
}

.frequency-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: white;
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 500;
}

.frequency-select:focus {
  outline: none;
  border-color: var(--product-color);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Product Features */
.product__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product__form {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem;
  text-align: flex-start;
}

.feature__icon {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--product-color);
}

.feature__icon svg {
  height: 100%;
  width: auto;
  display: block;
}

.feature__text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--deep-brown);
  font-display: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
}

.feature__text span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--deep-brown);
  font-display: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Add to Cart Section */
.product__cart {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  overflow: hidden;
  padding-right: 20px;
  padding-left: 20px;
}

.quantity-selector__btn {
  background: none;
  border: none;
  padding: 1rem 5px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.quantity-selector__btn:hover {
  background: #f9fafb;
}

.quantity-selector__input {
  border: none;
  width: 60px;
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: #374151;
  font-family: 'Poppins', sans-serif;
  font-size: var(--h5-twentysix);
  font-weight: 700;
}

.quantity-selector__input:focus {
  outline: none;
}

.product__add-to-cart {
  width: 100%;
  background: var(--product-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product {
    padding: 1rem;
  }

  .product__container {
    gap: 2rem;
    grid-template-columns: 1fr;
    grid-template-areas: 
      "info"
      "media";
  }

  .product__info {
    position: static;
    padding-top: 100px;
    padding-bottom: 25px;
    grid-area: info;
  }

  .product__media {
    grid-area: media;
    padding-bottom: 150px;
  }

  .product__title {
    font-size: 2rem;
  }

  .product__ingredients {
    flex-direction: row;
    gap: 1rem;
  }

  .ingredient {
    flex-direction: column;
    gap: 1rem;
  }


  .product__features {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .product__cart {
    flex-direction: column;
    align-items: stretch;
  }

  .quantity-selector {
    align-self: center;
    width: fit-content;
    height: fit-content;
  }
}

.ingredients__content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.ingredients__content-wrapper p, h2 {
  color: var(--text-white);
}

.ingredients__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  z-index: 1;
}

.ingredients__content p {
  font-family: 'poppins', sans-serif;
  font-weight: 800;
  font-size: var(--body-size);
}


.ingredients__content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.ingredients__content-wrapper p, h2 {
  color: var(--text-white)
}

.ingredients__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  z-index: 1;
}

.ingredients__content p {
  font-family: 'poppins', sans-serif;
  font-weight: 800;
  font-size: var(--body-size);
}

@media screen and (max-width: 768px) {
  .ingredients__content-wrapper {
    flex-direction: column;
    padding: 25px 0;
  }
}

.product-testimonial {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 20px 100px;
  color: #fff;
  position: relative;
  z-index: 2; /* reset from -1 */
  height: 150vh;
  margin-top: -3px;
  display: flex; 
  justify-content: center;
}


.product-testimonial__cards {
  display: grid;
  grid-template-rows: auto auto; /* two rows */
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1400px;
}

.product-testimonial__cards div {
  width: clamp(280px, 100%, 680px);
}

.testimonial-card-wrapper {
  width: 100%;
  justify-self: end; 
  border-radius: 20px;
}

.testimonial-card,
.features-card {
  background-color: var(--product-color);
  padding: 30px;
  border-radius: 20px;
  color: inherit;
}


.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 55px 55px;
  margin-top: -10%;
  z-index: 5;
}

.testimonial-card h2 {
  line-height: 1.2;
}

.testimonial-card p {
  color: var(--text-white);
  font-size: var(--h5-twentysix);
  font-weight: 700;
}

.features-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 55px 55px;
  background-color: var(--product-color);
  margin-top: 10%;
  justify-self: start; /* offset left */
  justify-content: CENTER;
}

.features-card p {
  color: var(--text-white);
  font-size: var(--h5-twentysix);
  font-weight: 700;
  font-family: 'rammetto one', cursive;
}

/* Optional: Responsive layout with side-by-side cards on desktop */
@media (max-width: 768px) {
  .product-testimonial {
    height: 150vh;
  }
  .product-testimonial__cards {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    padding: 0;
    margin-right: 0; /* reset margin for mobile */
  }

  .testimonial-card,
  .features-card {
    flex: 1;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    padding: 0px 20px;
  }
}

/* Jason seciotn */

.jason-face-row-wrapper {
  flex: 1;
  min-width: 0; /* Prevents flex item from overflowing */
  max-width: 425px;
  background-color: var(--peppermint-blue);
  border-radius: 15px;
  margin-bottom: 0;
  position: relative;
}

.jason-face-row-wrapper img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  aspect-ratio: 2/3;
  display: block;
  margin: -10px 0 15px 15px;
  position: relative;
}

.jason-face-row-wrapper img:hover {
  transform: translate(5px, -10px);
  transition: all 0.2s ease;
}

.h5-poppins {
  font-family: 'poppins', sans-serif;
  font-weight: 900;
  font-size: var(--h5-twentysix);
  color: var(--cream-white);
  line-height: 1.2;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .jason-face-row-wrapper {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .jason-face-row-wrapper img {
    margin: -5px 0 5px 5px;
    aspect-ratio: 1/1; /* Adjusts aspect ratio for mobile */
  }

  .jason-face-row-wrapper img:hover {
    transform: translate(5px, -5px); /* Remove hover effect on mobile */
  }
  
}

/* us vs. them */ 
.us-vs-them-section {
  background-color: var(--deep-brown);
  padding-top: 150px;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    overflow-x: auto;
    text-align: center;
}

.comparison-content-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 75px auto;
}


/* FAQ Section */
.faq-section {
  background-color: var(--deep-brown);
  position: relative;
}

.faq-container {
    max-width: 1200px;
    margin: -5px auto;
    border-radius: 20px;
    overflow: hidden;
    padding: 100px 0 200px 0;
    display: block; /* Changed from flex to block for original desktop behavior */
}

.faq-header {
    text-align: left;
    padding: 2rem;
}

.faq-header h1 {
    font-size: var(--h2-fiftytwo);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.faq-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.faq-item {
    transition: all 0.3s ease;
    padding-left: 75px;
}

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

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 900;
    font-size: var(--h4-thirtythree);
}

.faq-question:hover {
    filter: hue-rotate(-15deg);
    transform: translateY(-1px);
}

.faq-question.active {
    filter: hue-rotate(15deg);
    transform: translate(5px, -10px) scale(0.98);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active .faq-icon {
    filter: hue-rotate(-15deg);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border-radius: 25px;
    overflow: hidden; /* This is the key fix - hides content when collapsed */
}

.faq-answer.open {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer-content {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-question-text {
    flex: 1;
    margin-right: 1rem;
    font-size: var(--h5-twentysix);
    text-transform: uppercase;
    font-weight: 900;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .faq-container {
        padding: 50px 1rem 100px 1rem;
        margin: -5px 1rem;
    }
    
    .faq-header {
        padding: 1rem 0 2rem 0;
        text-align: center;
    }
    
    .faq-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .faq-header p {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .faq-item {
        padding-left: 0;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 1rem;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
        line-height: 1.3;
        margin-right: 0;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
        margin-top: 2px;
    }
    
    .faq-answer.open {
        padding: 1.25rem 1rem;
    }
    
    .faq-answer-content {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .faq-container {
        margin: -5px 0.5rem;
        padding: 30px 0.5rem 175px 0.5rem;
    }
    
    .faq-header h1 {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .faq-question-text {
        font-size: 0.9rem;
    }
    
    .faq-answer.open {
        padding: 1rem 0.75rem;
    }
    
    .faq-answer-content {
        font-size: 0.85rem;
    }
}
/* Testimonials Section */

.testimonials-section {
  background-color: var(--product-bg);
  padding: 250px 0;
  position: relative;
  margin-top: -100px;
}

.testimonial-slider-card {
  min-width: 380px;
  background: var(--cream-white);
  border-radius: 20px;
  padding: 44px 44px;
  margin-right: 30px;
  position: relative;
  border: 1px solid #FBFDF1
}

.testimonials-section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 50px;
}

.eyebrow-text {
  font-family: 'Poppins', sans-serif;
  font-size: var(--h4-thirtythree);
  color: var(--product-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.main-heading {
  font-size: var(--h1-sixtyfive);
  font-weight: 800;
  color: var(--product-color);
  line-height: 1.1;
}

.slider-container {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.nav-buttons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%; 
  background: var(--product-color);
  color: var(--cream-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  transform: scale(1.05);
}


@media (max-width: 768px) {
  .testimonial {
      min-width: 320px;
      padding: 30px 20px;
  }

  .testimonials-section {
    padding-top: 100px;
    padding-bottom: 350px;
  }

  .testimonial-slider-card {
      min-width: 320px;
      padding: 30px 20px;
  }

  .testimonial-slider-card p {
    text-wrap: wrap;
  }

  .testimonials-section-wrapper {
      padding: 0 20px;
  }

  .testimonial-card-wrapper {
    width: 100%;
    justify-self: center; /* center the card on mobile */
  }
  .testimonial-card {
    padding: 30px 20px;
  }
  .features-card {
    margin-top: 0; /* reset margin for mobile */
    max-height: 200px;
  }
}

/* Shop Page Layout */
.shop-page__section {
  background: var(--deep-brown);
  position: relative;
}

.shop-page {
  background: var(--cream-white);
  position: relative;
  padding-top: 250px;
  z-index: 1;
}

.shop-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 25px 150px 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center; /* keeps items centered if last row isn't full */
  gap: var(--gap-medium);
  align-items: start;
  background-color: var(--cream-white);
}

.best-sellers-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 25px 150px 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center; /* keeps items centered if last row isn't full */
  gap: var(--gap-medium);
  align-items: start;
  background-color: var(--cream-white);
}

@media screen and (max-width: 1000px) {
  .best-sellers-grid {
    padding: 0px 15px 100px 15px;
    grid-template-columns: 1fr;
    gap: 100px;
    margin: 0 0;
    width: 100%;
  }
  .shop-page {
    padding-top: 50px;
  }
}

/* Header Styles */
.shop-page__header {
  text-align: left;
  padding: 170px 50px 75px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-page__tagline {
  color: var(--secondary-red);
  font-size: var(--h5-twentysix);
  font-weight: 900;
  letter-spacing: 0em;
  text-transform: uppercase;
}

.shop-page__title {
  color: var(--cream-white);
}

/* Filter Navigation */
.shop-page__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap-small);
  margin-bottom: 60px;
  margin-top: 70px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--cream-white);
  color: var(--deep-brown); 
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: 'rammetto one', cursive;
  font-size: var(--small-size);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.filter-btn:hover {
  border: 2px solid var(--accent-orange);
  transition: all 0.3s ease;
}

.filter-btn--active {
  background: var(--accent-orange);
  color: var(--text-white);
  transition: all 0.3s ease;
}

/* Products Grid - Removed duplicate grid definition */
.shop-page__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-medium);
  margin-top: var(--gap-large);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px;
}

/* Product Card Styles */
.product-card {
  background: var(--text-white);
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid #f5f5f5;
  /* Remove fixed height - let content determine size */
}

.product-card:hover {
  transform: translateY(-1px);
}

.product-card.hidden {
  display: none;
}

/* Image container - takes up most space but flexible */
.product-card__image {
  position: relative;
  width: 100%;
  /* Use aspect ratio instead of fixed height percentage */
  aspect-ratio: 1 / 1; /* Square aspect ratio - adjust as needed */
  overflow: hidden;
  flex-shrink: 0; /* Prevent image from shrinking */
}

/* Default image: show entire product */
.product-image--default {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Hover image: cover entire container */
.product-image--hover {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.product-card__image:hover .product-image--default {
  opacity: 0;
}

.product-card__image:hover .product-image--hover {
  opacity: 1;
}

.product-card:hover .product-image--default,
.product-card:hover .product-image--hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Info section - grows with content */
.product-card__info {
  padding: 25px 15px 15px 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* Changed from center to flex-start */
  gap: 10px; /* Add gap for better spacing */
  border-radius: 0 0 20px 20px;
  background-color: var(--product-color);
  position: relative;
  width: 100%;
  /* Remove fixed height - let content determine size */
  min-height: 60px; /* Reduced minimum height */
  flex-grow: 1; /* Allow to grow */
  flex-shrink: 0; /* Don't shrink */
}

/* Shape divider styling */
.custom-shape-divider-top-1754695658 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1754695658 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 7px; /* Adjust divider height as needed */
}

.custom-shape-divider-top-1754695658 .shape-fill {
  fill: var(--text-white, #FFFFFF);
}

/* Title styling - allows for growth */
.product-card__title {
  color: var(--text-white);
  font-size: var(--button-size, 16px);
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  flex: 1;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  /* Allow multi-line titles */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* Remove line clamp to allow full title display */
}

/* Price styling */
.product-card__price {
 color: var(--text-white);
  font-size: clamp(14px, 100%, 18px);
  font-weight: 200;
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;

  /* Alignment */
  display: flex;
  justify-content: flex-end; /* right */
  align-items: flex-end;     /* bottom */
}

.price-compare {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 0.9em;
  display: block;
  margin-bottom: 2px;
}

.price-current {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-card__image {
    aspect-ratio: 1 / 1; /* Maintain square on mobile */
  }
  
  .product-card__info {
    padding: 20px 12px 12px 12px;
    min-height: 70px;
  }
  
  .product-card__title {
    font-size: var(--button-size, 14px);
    line-height: 1.3;
  }
  
  .product-card__price {
    font-size: var(--h5-twentysix, 16px);
  }
}

@media (max-width: 480px) {
  .product-card__info {
    padding: 15px 10px 10px 10px;
    min-height: 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .product-card__title {
    line-height: 1.2;
    margin-bottom: 5px;
  }
  
  .product-card__price {
    font-size: 16px;
    text-align: left;
    align-self: flex-end;
  }
  
  .custom-shape-divider-top-1754695658 svg {
    height: 7px;
  }
}

.strawberry-section-value-props {
  margin-top: -1px;
  margin-bottom: -1px;
}

.strawberry-section-value-props {
    position: relative;
    overflow: hidden;
    color: white; /* ensures text is readable over dark background */
    padding: 150px 0;
}

.strawberry-section-value-props .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.strawberry-section-value-props .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.strawberry-section-value-props .jason-chilhood-content-wrapper {
    position: relative;
    z-index: 2; /* sits above video and overlay */
}

.strawberry-content {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.strawberry-content h2 {
  font-size: var(--h1-sixtyfive);
  line-height: 1.2;
}

.highlight-red {
    color: var(--secondary-red);
    font: inherit; /* keeps the same font, size, weight, etc. as the h2 */
}
.strawberry-content .feature__icon svg {
    width: 50px;
    height: 50px;
    color: var(--secondary-red);
}

.strawberry-content .feature__text {
    font-size: var(--body-size);
    font-weight: 700;
    color: var(--text-white);
}

.strawberry-content .feature {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  text-align: left;
  gap: 20px;
}

.strawberry-content .four-value-prop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  width: 100%;
  margin-top: 50px;
  margin: 50px 0;
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .strawberry-content .four-value-prop {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 20px;
  }
  
  .strawberry-content .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .strawberry-content h2 {
    font-size: var(--h2-fiftytwo);
  }
  
  .strawberry-content .feature__text {
    font-size: var(--small-size);
  }
  
}

.site-header {
  background: var(--cream-white);
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(76, 30, 15, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo Elements */
.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--deep-brown);
}

.site-header__logo-icon img {
  width: 100px;
}


.site-header__logo-sun {
  font-size: 1.8rem;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent-orange);
}

.site-header__logo-text {
  font-family: 'Rammetto One', cursive;
  font-size: var(--h5-twentysix);
  line-height: 1.1;
  letter-spacing: var(--heading-letter-spacing);
}

.site-header__logo-jerobs {
  color: var(--deep-brown);
  display: block;
}

.site-header__logo-friendly {
  color: var(--primary-red);
  display: block;
}

.site-header__logo-foods {
  color: var(--deep-brown);
  display: block;
}

.site-header__logo-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: var(--small-size);
  font-weight: 400;
  color: var(--grey-text);
  text-transform: none;
  letter-spacing: normal;
  margin-top: 2px;
}

/* Navigation Elements */
.site-header__nav {
  display: flex;
}

.site-header__nav-list {
  display: flex;
  list-style: none;
  gap: 150px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.site-header__nav-item {
  position: relative;
}

.site-header__nav-link {
  text-decoration: none;
  color: var(--deep-brown);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: var(--body-size);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.site-header__nav-link:hover {
  color: var(--primary-red);
}

.site-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: width 0.3s ease;
}

.site-header__nav-link:hover::after {
  width: 100%;
}

/* Action Elements */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  color: var(--deep-brown);
  position: relative;
}

.site-header__action-btn:hover {
  background: rgba(76, 30, 15, 0.1);
}

.site-header__action-icon {
  width: 20px;
  height: 20px;
  fill: var(--deep-brown);
  transition: fill 0.3s ease;
}

.site-header__action-btn:hover .site-header__action-icon {
  fill: var(--primary-red);
}

/* Cart Count Badge */
.site-header__cart {
  position: relative;
}

.site-header__cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary-red);
  color: var(--text-white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile Toggle Button */
.site-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.site-header__mobile-toggle-line {
  width: 25px;
  height: 3px;
  background: var(--deep-brown);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile Navigation */
.site-header__mobile-nav {
  display: none;
  background: var(--cream-white);
  border-top: 1px solid rgba(76, 30, 15, 0.1);
  padding: 1rem 2rem;
}

.site-header__mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__mobile-nav-item {
  border-bottom: 1px solid rgba(76, 30, 15, 0.1);
}

.site-header__mobile-nav-item:last-child {
  border-bottom: none;
}

.site-header__mobile-nav-link {
  display: block;
  text-decoration: none;
  color: var(--deep-brown);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: var(--body-size);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 0;
  transition: color 0.3s ease;
}

.site-header__mobile-nav-link:hover {
  color: var(--primary-red);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .site-header {
    padding: 1rem;
  }
  
  .site-header__nav {
    display: none;
  }
  
  .site-header__mobile-toggle {
    display: flex;
  }
  
  .site-header__logo-icon {
    width: 50px;
    height: 50px;
    margin-right: 0.25rem;
  }
  
  .site-header__logo-sun {
    font-size: 1.4rem;
    top: -6px;
  }
  
  .site-header__actions {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.75rem;
  }
  
  .site-header__logo-icon {
    width: 45px;
    height: 45px;
  }
  
  .site-header__logo-sun {
    font-size: 1.2rem;
    top: -5px;
  }
  
  .site-header__logo-tagline {
    display: none;
  }
}

/* Mobile Menu Active States */
.site-header--mobile-nav-open .site-header__mobile-nav {
  display: block;
}

.site-header--mobile-nav-open .site-header__mobile-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.site-header--mobile-nav-open .site-header__mobile-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header--mobile-nav-open .site-header__mobile-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.aboutus__hero {
  background: var(--primary-red);
}

.aboutus__hero--content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 10px 20px;
  text-align: left;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aboutus__hero--content h5 {
  text-transform: uppercase;
  font-family: 'poppins', sans-serif;
  color: var(--text-white);
  font-weight: 900;
}

.aboutus__hero--content h1 {
  font-size: var(--h1-sixtyfive);
  font-weight: 800;
  margin: 0;
  color: var(--text-white);
}

.aboutus-content .feature__icon svg { 
  width: 50px;
  height: 50px;
  color: var(--accent-orange);
}

.aboutus-content .feature__text {
  font-size: var(--body-size);
  font-weight: 700;
  color: var(--text-white);
}

.aboutus-content .four-value-prop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  width: 100%;
  gap: 20px;
  margin: 50px 0;
}

 .aboutus-value-props {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 100px;
  }

  .aboutus-value-props .feature {
    display: flex;
    flex-direction: row; 
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
  }


@media (max-width: 480px) {
  .aboutus-value-props {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 50px;
    margin-top: 25px;
  }
}

@media screen and (max-width: 768px) {
  .aboutus-content .four-value-prop {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 20px;
  }

  .aboutus-content .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .aboutus-content h2 {
    font-size: var(--h2-fiftytwo);
  }

  .aboutus-content .feature__text {
    font-size: var(--small-size);
  }

}

.aboutus-video {
    background-color: var(--cream-white);
    position: relative;
    z-index: 0;
    padding-top: 200px;
}

.red-top-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    margin-top: -2px;
}

.aboutus__video--content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 10px 20px;
    text-align: center;
    color: var(--text-white);
}
.aboutus__video--content h5 {
    font-size: var(--h5-twentysix);
    font-family: 'poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--accent-orange);
}

.aboutus__video--content h2 {
    font-size: var(--h1-sixtyfive);
    font-weight: 800;
    margin: 0;
    color: var(--deep-brown);
    line-height: 1.2;
}

.video-container {
    background-color: var(--accent-orange);
    border-radius: 10px;
    position: relative;
    margin-top: 75px;
    margin-bottom: 350px;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    transform: translate(10px, -10px);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  

  background: none;
  border: none;
  font-size: 3rem;
  padding: 0.5em 0.8em;
  border-radius: 50%;
  cursor: pointer;
  
  transition: background 0.3s ease;
}

.play-button svg {
  width: 78px;
  height: 77px;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.brown-bottom-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    margin-bottom: -2px;
}

.brown-bottom-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
    overflow: hidden;
}


.strawberry {
    color: var(--secondary-red) ;
}

.thick-rametto {
    font-family: 'Rammetto One', cursive;
    font-weight: 700;
    font-size: var(--h4-thirtythree);
    color: var(--deep-brown);
}

.we-care-text-poppins {
    font-family: 'poppins', sans-serif;
    font-weight: 900;
    font-size: var(--h5-twentysix);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pink-testimonial-wrapper {
    background-color: var(--secondary-red);
    border-radius: 45px;
}

.pink-testimonial-wrapper .testimonial {
    transform: translate(10px, -10px);
    transition: transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.pink-testimonial-wrapper .testimonial:hover {
    transform: translate(0, 0);
    transition: transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.last {
  gap: 25px;
}

/* Create the staggered effect */
.pink-testimonial-wrapper:nth-child(2) {
  margin-top: 85px; /* Adjust this value to match your design */
  margin-left: 30px; /* Adjust this value to match your design */
}

.pink-testimonial-wrapper:nth-child(3) {
  margin-left: 60px; /* Adjust this value to match your design */
  margin-top: 75px;
}

/* Make responsive */
@media (max-width: 1053px) {
  .testimonials {
    grid-template-columns: 1fr;
    gap: 60px;
    width: 100%;
  }

  .pink-testimonial-wrapper .testimonial {
    transform: translate(5px, -5px); /* Reset transform for mobile */
  }

  .testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pink-testimonial-wrapper:nth-child(2) {
    margin-top: 0; /* Remove offset on mobile */
  }

  .pink-testimonial-wrapper:nth-child(2) {
    margin-top: 0; /* Remove offset on mobile */
    margin-left: 0
  }

  .pink-testimonial-wrapper:nth-child(3) {
    margin-top: 0; /* Remove offset on mobile */
    margin-left: 0
  }

  .pink-testimonial-wrapper:nth-child(4) {
    margin-top: 25px; /* Remove offset on mobile */
    margin-left: 0
  }

  .aboutus-video {
    padding-top: 100px; /* Adjust padding for smaller screens */
  }

}

.about-us-adventure {
    background-color: var(--cream-white);
    position:relative;
    padding: 250px 0 0 0;
}

.brown-top-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    margin-top: -15px;
}

.brown-top-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
    transform: rotate(180deg);
    overflow: hidden;
}

.blue-top-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    margin-top: -15px;
    padding-top: 5px;
}

.blue-top-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 10vh;
    overflow: hidden;
    z-index: 3;
}

.about-us-adventure__hero h2 {
    font-size: var(--h1-sixtyfive);
    font-weight: 800;
    margin: 0;
    color: var(--deep-brown);
    line-height: 1.2;
}

.about-us-adventure__hero h5 {
    font-size: var(--h5-twentysix);
    font-weight: 700;
    color: var(--secondary-red);
    margin-bottom: 25px;
    font-family: 'poppins', sans-serif;
}

.about-us-adventure__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 10px 20px;
    text-align: center;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-us-adventure__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 1200px;
    padding: 0 40px;
    margin: 50px auto;
    width: 100%;
}

.adventure-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 560px;
}



/* Timeline Road Background */
.timeline-road {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 461px;
    background-image: url('//jasonfriendlyfoods.com/cdn/shop/t/5/assets/road-background.png?v=164280025976846482951755204349');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
}


/* Timeline Items */
.timeline-item {
    position: relative;
    margin: 10px 0 80px 0;
    display: flex;
    align-items: center;
    z-index: 3;
}

/* Left side items */
.timeline-left {
    justify-content: flex-start;
}

.timeline-left .adventure-card {
    margin-right: 40px;
}

/* Right side items */
.timeline-right {
    justify-content: flex-end;
}

.timeline-right .adventure-card {
    margin-left: 40px;
}

.last-timeline-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: top;
    padding: 0;
    gap: 25px;
    max-width: 1200px;
    margin-top: 400px;
}

.last-timeline-item .last-adventure-card {
    flex: 1;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;    
    background-color: var(--peppermint-blue);
    position: relative;
}

.last-timeline-item {
    align-items: flex-start;
}

.last-timeline-item .adventure-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transform: translate(10px, -10px);
}

.biking-image-wrapper img:hover {
  transform: translate(15px, -15px);
}


.biking-image-wrapper {
    padding: 0;
    background-color: var(--peppermint-blue);
    border-radius: 20px;
    transform: translate(10px, -10px);
    position: relative;
}


/* Adventure Cards */
.adventure-card {
    padding: 48px 25px;
    border-radius: 20px;
    color: var(--text-white, #fff);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 550px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Card Colors */
.red-card {
    background-color: var(--primary-red, #dc143c);
}

.blue-card {
    background-color: var(--peppermint-blue, #4a90e2);
    margin-top: 150px;
}

.pink-card {
    background-color: var(--secondary-red, #e74c3c);
}

.orange-card {
    background-color: var(--accent-orange, #ff8c42);
}

.yellow-card {
    background-color: var(--banana-yellow, #f1c40f);
}

.green-card {
    background-color: var(--mint-green, #2ecc71);
    margin-top: -60px;
}


.rammetto-body {
    color: var(--text-white, #fff);
    font-family: 'Rammetto One', cursive;
    font-size: var(--h5-twentysix, 18px);
    line-height: 1.4;
    margin: 0;
    letter-spacing: -.04em;
}


/* Hero Section */
.about-us-adventure__hero {
    text-align: center;
    margin-bottom: 40px;
}

.about-us-adventure__hero h5 {
    color: var(--primary-red, #dc143c);
    font-family: 'Poppins', sans-serif;
    font-size: var(--h4-thirtythree);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.about-us-adventure__hero h2 {
    font-weight: 700;
    color: var(--deep-brown);
}


.adventure-card h2 {
    font-family: 'poppins', sans-serif;
    font-weight: 900;
}
/* Content Wrapper */
.about-us-adventure__content-wrapper {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}


.flavor-text {
    background-color: var(--secondary-red);
    border-radius: 50%;
    width: 125px; /* set an explicit size */
    height: 125px; /* same as width */
    display: flex; /* center text horizontally and vertically */
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 3;
}

.flavor-text p {
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline-container {
      padding: 0 1px;
  }
  
  
  .timeline-left,
  .timeline-right {
      padding: 0;
      justify-content: center;
      flex-direction: column;
  }
  
  .timeline-left .adventure-card,
  .timeline-right .adventure-card {
      margin: 0;
      max-width: 100%;
  }
  
  .timeline-dot {
      position: relative;
      left: auto;
      top: auto;
      transform: none;
      margin: 20px auto;
  }

  .last-timeline-item {
      flex-direction: column;
      align-items: center;
      margin-top: 0;
  }

  .last-timeline-item .last-adventure-card {
      width: 100%;
      margin-top: 25px;
  }

  .timeline-road {
  margin: 0 auto;
  width: 100%;             /* stretch to screen width */
  max-width: 425px;        /* keep same look on desktop */
  
  background-image: url('/road-background.png');
  background-size: cover;  /* fills section, crops if needed */
  background-position: top center;
  background-repeat: no-repeat;

  z-index: 1;
  overflow: hidden;        /* ensures children don't spill out */
}


  .flavor-text {
      position: absolute;
      top: 0;
      left: 70%;
      transform: translate(50%, -50%);
      width: 75px; /* set an explicit size */
      height: 75px; /* same as width */
  }

  .flavor-text p {
      font-size: 12px;
  }

}

@media (max-width: 480px) {
    .adventure-card {
        padding: 32px 20px;
    }
}

.events__section {
  background-color: var(--peppermint-blue);
}

.events__header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 170px 20px 150px 20px;
  color: var(--text-white);
}

.events__header h1 {
  font-size: var(--h1-sixtyfive);
  color: var(--text-white);
  font-weight: 800;
  margin: 0;
}

.events__header h4 {
  font-family: 'poppins', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.events__content {
  background-color: var(--cream-white);
  position: relative;
}

.events__header--text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 250px 20px 0 20px;
  text-align: center;
}

.events__header--text h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: var(--h4-thirtythree);
  color: var(--secondary-red);
  margin-bottom: 42px;
}

.events__header--text h2 {
  font-size: var(--h1-sixtyfive);
  font-weight: 800;
  color: var(--deep-brown);
  margin: 0;
}

.events__header--columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  margin-top: 125px;
}

.events__header--column {
  background-color: var(--deep-brown);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  position: relative;
}

.events__header--icon {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
}

.events__header--icon h3 {
  font-size: var(--h3-fortytwo);
  font-weight: 700;
  color: var(--cream-white);
  margin: 0;
}

.events__locations {
  display: flex; 
  flex-direction: column;
  gap: 5px;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 10px;
}

.events__locations h5 {
  font-size: var(--h5-twentysix);
  font-weight: 700;
  color: var(--cream-white);
  margin: 0;
}

.events__locations a {
  color: var(--secondary-red);
  font-size: var(--body-size);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.events__locations a:hover {
  text-decoration: underline;
}

.events__cta {
  display: flex; 
  flex-direction: row; 
  justify-content: flex-end;
  max-width: 1200px;
  margin: 115px auto 0 auto;
  padding: 0 20px 150px 20px;
}

.events__cta--card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  max-width: 420px;
}

.events__cta--card h4 {
  font-size: var(--h4-thirtythree);
  font-weight: 400;
  color: var(--deep-brown);
  margin: 0;
}

.tradeshow__section {
  background-color: var(--peppermint-blue);
  padding-top: 250px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

.tradeshow__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tradeshow__header h4 {
  font-family: 'poppins', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin: 0;
}

.tradeshow__header h2 {
  font-size: var(--h2-fiftytwo);
  color: var(--text-white);
  margin-top: 45px;
  margin-bottom: 0;
  text-transform: capitalize;
}

.tradeshow__block {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  margin-top: 2rem;
  justify-content: stretch;
  padding-top: 100px;
  padding-bottom: 200px;
  padding-right: 20px;
}

.tradeshow__block--image {
  flex: 0 0 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-yellow);
  border-radius: 1.5rem;
  position: relative;
}

.tradeshow__block--image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 16px;
  transform: translate(5px, -5px);
  position: relative;
}

.tradeshow__block--image img:hover {
  transform: translate(10px, -10px);
}

.tradeshow__block--image:hover .text-bubble {
  opacity: 1; /* show on hover */
  transform: translate(10px, -10px);
}

.featured-food-content-image:hover .text-bubble {
  opacity: 1; /* show on hover */
  transform: translate(10px, -10px);
}

.tradeshow__block--content {
  flex: 0 0 66%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--accent-yellow);
  border-radius: 1.5rem;
  padding: 56px 68px;
}

.tradeshow__date {
  font-size: var(--h4-thirtythree);
  color: var(--deep-brown);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  margin: 0;
}

.tradeshow__title {
  font-size: var(--h3-fortytwo);
  color: var(--text-white);
  margin: 0;
}

.tradeshow__location-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.tradeshow__location-row svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.tradeshow__location-text {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.tradeshow__description {
  font-size: var(--body-size);
  color: var(--text-white);
  margin-top: 1rem;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* Mobile and Tablet Responsive Styles */
@media (max-width: 1024px) {
  .events__header {
    padding: 120px 20px 100px 20px;
  }
  
  .events__locations {
    padding-left: 0;
  }
  .events__header--text {
    padding: 250px 20px 0 20px;
  }
  
  .tradeshow__section {
    padding-top: 150px;
  }
  
  .tradeshow__block {
    padding-top: 60px;
    padding-bottom: 120px;
    padding-right: 0;
  }
  
  .tradeshow__block--content {
    padding: 40px 50px;
  }
}

@media (max-width: 900px) {
  .events__header--columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 65px;
  }
  
  .tradeshow__block {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .tradeshow__block--image,
  .tradeshow__block--content {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .tradeshow__block--image img {
    max-width: 100%;
    transform: translate(5px, -5px);
  }
  
  .tradeshow__block--content {
    padding: 30px 40px;
  }
}

@media (max-width: 768px) {
  .events__header {
    padding: 80px 15px 80px 15px;
  }
  
  .events__header--text {
    padding: 300px 15px 0 15px;
  }
  
  .events__header--text h4 {
    margin-bottom: 30px;
  }
  
  .events__header--columns {
    padding: 40px 15px;
  }
  
  .events__header--column {
    padding: 25px;
  }
  
  .events__header--icon {
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .events__cta {
    justify-content: center;
    margin: 80px auto 0 auto;
    padding: 0 15px 200px 15px;
  }
  
  .events__cta--card {
    text-align: center;
    align-items: center;
  }
  
  .tradeshow__container {
    padding: 0 15px;
  }
  
  .tradeshow__section {
    padding-top: 100px;
  }
  
  .tradeshow__block {
    padding-top: 40px;
    padding-bottom: 180px;
  }
  
  .tradeshow__block--content {
    padding: 25px 30px;
  }

  .tradeshow__location-text {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .events__header--columns {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .events__header--icon {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    align-items: center;
  }
  
  .events__locations {
    align-items: center;
    text-align: center;
  }
  
  .tradeshow__header h2 br {
    display: none;
  }
  
  .tradeshow__block--content {
    padding: 20px 25px;
  }
  
  .tradeshow__location-row {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .events__header {
    padding: 60px 10px 60px 10px;
  }
  
  .events__header--text {
    padding: 250px 10px 0 10px;
  }

  .tradeshow__header {
    padding: 100px 0 25px 0;
  }

  .tradeshow__header h2 {
    margin-top: 25px;
  }
  
  .events__header--columns {
    padding: 30px 10px;
  }
  
  .events__header--column {
    padding: 20px;
  }
  
  .events__cta {
    padding: 0 10px 180px 10px;
    margin: 60px auto 0 auto;
  }
  
  .tradeshow__container {
    padding: 0 10px;
  }
  
  .tradeshow__section {
    padding-top: 80px;
  }
  
  .tradeshow__block {
    padding-top: 30px;
    padding-bottom: 150px;
  }
  
  .tradeshow__block--content {
    padding: 15px 20px;
    align-items: flex-start;
  }

  .tradeshow__location-row {
  display: inline-block;
  vertical-align: left;
  align-items: left;
  }
}

/* Simplified Cart Page Styles */

/* Updated Cart Page Styles with Quantity Controls */

.cart-page {
  background-color: var(--background-color);
  min-height: 100vh;
  padding: var(--section-padding) 0;
}

.cart-header {
  text-align: center;
  margin-bottom: var(--gap-large);
}

.cart-header h1 {
  color: var(--primary-red);
}

/* Cart Form */
.cart-items-form {
  width: 100%;
}

/* Cart Items */
.cart-items {
  background: var(--text-white);
  border-radius: 20px;
  padding: var(--gap-medium);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--gap-large);
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: var(--gap-medium);
  align-items: start;
  padding: var(--gap-medium) 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.item-image {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-color);
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-image {
  color: var(--grey-text);
  font-size: var(--small-size);
  text-align: center;
}

.item-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item-title {
  color: var(--deep-brown);
  font-size: var(--h4-thirtythree);
  font-weight: 600;
  margin: 0;
}

.item-variant {
  color: var(--grey-text);
  font-size: var(--body-size);
  margin: 0;
}

.item-price {
  color: var(--primary-red);
  font-weight: 700;
  font-size: var(--body-large);
  margin: 0;
}

/* Quantity Input Styling */
.bde-item-quantity-label {
  font-weight: 600;
  color: var(--deep-brown);
  font-size: var(--body-size);
  margin: 12px 0 6px 0;
  display: block;
}

.bde-item-quantity-input {
  width: 80px;
  padding: 10px 12px;
  border: 2px solid var(--secondary-red);
  border-radius: 8px;
  font-size: var(--body-size);
  font-weight: 600;
  text-align: center;
  background: var(--background-color);
  color: var(--deep-brown);
  transition: all 0.3s ease;
}

.bde-item-quantity-input:focus {
  outline: none;
  border-color: var(--primary-red);
  background: var(--text-white);
  box-shadow: 0 0 0 3px rgba(236, 35, 39, 0.1);
}

.bde-item-quantity-input:hover {
  border-color: var(--primary-red);
  background: var(--text-white);
}

.bde-quantity-note {
  font-size: var(--small-size);
  color: var(--grey-text);
  font-style: italic;
  margin: 6px 0 0 0;
  line-height: 1.4;
}

/* Item Total */
.item-total {
  text-align: right;
  align-self: center;
}

.line-total {
  font-size: var(--h4-thirtythree);
  font-weight: 700;
  color: var(--deep-brown);
  margin: 0;
}

/* Cart Footer */
.cart-footer {
  background: var(--text-white);
  border-radius: 20px;
  padding: var(--gap-medium);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.cart-total {
  margin-bottom: var(--gap-medium);
  padding-bottom: var(--gap-medium);
  border-bottom: 2px solid var(--primary-red);
}

.cart-total h2 {
  color: var(--primary-red);
  font-size: var(--h2-fiftytwo);
  margin: 0;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: var(--gap-small);
  align-items: center;
}

.bde-checkout-btn,
.bde-continue-shopping,
.bde-proceed-checkout-btn,
.bde-start-shopping-btn {
  min-width: 300px;
  text-align: center;
}

/* Update Cart Button Specific Styling */
.bde-checkout-btn {
  background: var(--peppermint-blue);
  color: var(--text-white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bde-checkout-btn:hover {
  filter: hue-rotate(-15deg);
  transform: translate(10px, -10px);
}

.bde-checkout-btn:active {
  background: #067a3a;
  transform: translate(5px, -10px)  scale(0.98);
}

.bde-continue-shopping:hover {
  filter: hue-rotate(-15deg);
  transform: translate(10px, -10px);
}

.bde-continue-shopping:active {
  transform: translate(5px, -10px) scale(0.98);
}

/* Proceed to Checkout Button */
.bde-proceed-checkout-btn {
  background: var(--accent-orange);
  color: var(--text-white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bde-proceed-checkout-btn:hover {
  background: #e5820a;
  transform: translate(10px, -10px);
}

.bde-proceed-checkout-btn:active {
  background: #cc7309;
  transform: translate(5px, -10px) scale(0.98);
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: var(--gap-large) 0;
}

.empty-cart h1 {
  color: var(--primary-red);
  margin-bottom: var(--gap-medium);
}

.empty-cart p {
  color: var(--grey-text);
  font-size: var(--body-large);
  margin-bottom: var(--gap-large);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 100px 1fr;
    grid-template-areas: 
      "image details"
      "total total";
    gap: var(--gap-small);
  }

  .item-image {
    grid-area: image;
    width: 100px;
    height: 100px;
  }

  .item-details {
    grid-area: details;
  }

  .item-total {
    grid-area: total;
    text-align: center;
    margin-top: var(--gap-small);
    align-self: start;
  }

  .cart-actions {
    gap: var(--gap-small);
  }

  .bde-checkout-btn,
  .bde-continue-shopping,
  .bde-proceed-checkout-btn,
  .bde-start-shopping-btn {
    min-width: 100%;
  }

  .bde-item-quantity-input {
    width: 70px;
    padding: 8px 10px;
  }

  .bde-quantity-note {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .cart-page {
    padding: 40px 0;
  }

  .cart-items,
  .cart-footer {
    padding: var(--gap-small);
  }

  .item-title {
    font-size: var(--h5-twentysix);
  }

  .cart-item {
    gap: 12px;
    padding: var(--gap-small) 0;
  }

  .cart-total h2 {
    font-size: var(--h3-fortytwo);
  }

  .bde-item-quantity-input {
    width: 60px;
    padding: 6px 8px;
    font-size: var(--small-size);
  }

  .item-details {
    gap: 6px;
  }

  .bde-item-quantity-label {
    margin: 8px 0 4px 0;
  }
}

/* Additional BDE specific classes for consistency */
.bde-cart-page .bde-item-quantity-input {
  transition: all 0.3s ease;
}

.bde-cart-page .bde-item-quantity-input::-webkit-outer-spin-button,
.bde-cart-page .bde-item-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bde-cart-page .bde-item-quantity-input[type=number] {
  -moz-appearance: textfield;
}

/* Form validation states */
.bde-item-quantity-input:invalid {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(236, 35, 39, 0.2);
}

.bde-item-quantity-input:valid {
  border-color: var(--mint-green);
}

/* Loading state for form submission */
.cart-items-form.loading .bde-checkout-btn {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.cart-items-form.loading .bde-checkout-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-white);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.footer {
  background: var(--deep-brown);
  color: var(--text-white);
  padding: 60px 0 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: 'Rammetto One', cursive;
  font-size: var(--h5-twentysix);
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--text-white);
  text-decoration: none;
  font-size: var(--body-size);
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s ease;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-section ul li a:hover {
  color: var(--accent-orange);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--deep-brown);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  width: 200px;
}

.footer-logo img {
  width: 100%;
}

.footer-logo h2 {
  font-family: 'Rammetto One', cursive;
  font-size: var(--h3-fortytwo);
  color: var(--text-white);
  letter-spacing: var(--heading-letter-spacing);
  line-height: 1.1;
}

.footer-logo .tagline {
  font-family: 'Poppins', sans-serif;
  font-size: var(--body-size);
  color: var(--text-white);
  font-style: italic;
  margin-top: 5px;
}

.sun-icon {
  width: 50px;
  height: 50px;
  position: relative;
}

.sun-center {
  width: 30px;
  height: 30px;
  background: var(--primary-red);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sun-ray {
  position: absolute;
  width: 3px;
  height: 12px;
  background: var(--accent-orange);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform-origin: 50% 25px;
}

.sun-ray:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.sun-ray:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg); }
.sun-ray:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg); }
.sun-ray:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg); }
.sun-ray:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg); }
.sun-ray:nth-child(6) { transform: translate(-50%, -50%) rotate(225deg); }
.sun-ray:nth-child(7) { transform: translate(-50%, -50%) rotate(270deg); }
.sun-ray:nth-child(8) { transform: translate(-50%, -50%) rotate(315deg); }

.copyright {
  font-size: var(--small-size);
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-section h3 {
    margin-bottom: 15px;
  }

  .footer-section ul li {
    margin-bottom: 15px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 30px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 768px) {

.site-header__logo-icon img {
  width: 70px;
}

  .site-header__container {
    justify-content: space-between;
  }
}

/* Cart Page Styles */
.bde-cart-page {
  padding: var(--section-padding) 0;
  background: var(--background-color);
  min-height: 60vh;
  position: relative;
}

.bde-cart-header {
  text-align: center;
  margin-bottom: var(--gap-large);
}

.bde-cart-header h1 {
  color: var(--primary-red);
  font-size: var(--h1-sixtyfive);
}

/* Cart Items Container */
.bde-cart-items-container {
  position: relative;
}

.bde-cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--gap-medium);
  margin-bottom: var(--gap-large);
}

/* Individual Cart Item */
.bde-cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: var(--gap-medium);
  padding: var(--gap-medium);
  background: var(--text-white);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(76, 30, 15, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.bde-cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 30, 15, 0.15);
}

/* Item Image */
.bde-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bde-item-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.bde-no-image {
  width: 120px;
  height: 120px;
  background: var(--grey-text);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: var(--small-size);
  text-align: center;
}

/* Item Details */
.bde-item-details {
  display: flex;
  flex-direction: column;
  gap: var(--gap-small);
  justify-content: space-between;
}

.bde-item-title {
  font-size: var(--h4-thirtythree);
  color: var(--deep-brown);
  margin: 0;
  line-height: 1.2;
}

.bde-item-variant {
  font-size: var(--small-size);
  color: var(--grey-text);
  margin: 0;
  font-style: italic;
}

.bde-item-price {
  font-size: var(--body-large);
  color: var(--primary-red);
  font-weight: 700;
  margin: 0;
}

/* Quantity Controls */
.bde-quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: var(--gap-small) 0;
}

.bde-quantity-btn {
  background: var(--primary-red);
  color: var(--text-white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: var(--body-size);
  font-weight: 700;
  transition: all 0.2s ease;
  padding: 0;
}

.bde-quantity-btn:hover {
  background: var(--secondary-red);
  transform: scale(1.1);
}

.bde-quantity-btn:active {
  transform: scale(0.95);
}

.bde-item-quantity-input {
  width: 60px;
  height: 32px;
  text-align: center;
  border: 2px solid var(--grey-text);
  border-radius: 8px;
  font-size: var(--body-size);
  font-weight: 600;
  color: var(--deep-brown);
  transition: all 0.2s ease;
}

.bde-item-quantity-input:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(236, 35, 39, 0.1);
}

/* Remove Button */
.bde-remove-item {
  background: none;
  border: none;
  color: var(--grey-text);
  font-size: var(--small-size);
  cursor: pointer;
  text-decoration: underline;
  transition: all 0.2s ease;
  padding: 5px 0;
  align-self: flex-start;
}

.bde-remove-item:hover {
  color: var(--primary-red);
}

/* Item Total */
.bde-item-total {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bde-line-total {
  font-size: var(--h4-thirtythree);
  color: var(--deep-brown);
  font-weight: 700;
  margin: 0;
  text-align: right;
}

/* Cart Footer */
.bde-cart-footer {
  background: var(--text-white);
  padding: var(--gap-medium);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(76, 30, 15, 0.1);
}

.bde-cart-total {
  text-align: center;
  margin-bottom: var(--gap-medium);
  padding-bottom: var(--gap-medium);
  border-bottom: 2px solid var(--background-color);
}

.bde-cart-total h2 {
  font-size: var(--h2-fiftytwo);
  color: var(--primary-red);
  margin: 0;
}

/* Cart Actions */
.bde-cart-actions {
  display: flex;
  gap: var(--gap-medium);
  justify-content: center;
  flex-wrap: wrap;
}

/* Loading Overlay */
.bde-cart-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(251, 253, 241, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 15px;
}

.bde-loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--background-color);
  border-top: 4px solid var(--primary-red);
  border-radius: 50%;
  animation: bde-spin 1s linear infinite;
  margin-bottom: var(--gap-small);
}

@keyframes bde-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.bde-cart-loading p {
  color: var(--deep-brown);
  font-size: var(--body-size);
  font-weight: 600;
}

/* Error Messages */
.bde-cart-error {
  background: var(--secondary-red);
  color: var(--text-white);
  padding: var(--gap-small) var(--gap-medium);
  border-radius: 10px;
  margin-bottom: var(--gap-medium);
  text-align: center;
  font-size: var(--body-size);
  font-weight: 600;
  animation: bde-slide-in 0.3s ease;
}

@keyframes bde-slide-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Empty Cart */
.bde-empty-cart {
  text-align: center;
  padding: var(--gap-large);
  background: var(--text-white);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(76, 30, 15, 0.1);
}

.bde-empty-cart h1 {
  font-size: var(--h2-fiftytwo);
  color: var(--primary-red);
  margin-bottom: var(--gap-medium);
}

.bde-empty-cart p {
  font-size: var(--body-large);
  color: var(--grey-text);
  margin-bottom: var(--gap-large);
}

/* Responsive Design */
@media (max-width: 768px) {
  .bde-cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: var(--gap-small);
  }
  
  .bde-item-image {
    grid-row: 1 / 3;
  }
  
  .bde-item-image img {
    width: 80px;
    height: 80px;
  }
  
  .bde-no-image {
    width: 80px;
    height: 80px;
  }
  
  .bde-item-total {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-start;
    align-items: flex-end;
  }
  
  .bde-quantity-controls {
    flex-wrap: wrap;
  }
  
  .bde-cart-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .bde-cart-actions .red-btn-wrapper {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .bde-cart-page {
    padding: var(--gap-medium) 0;
  }
  
  .bde-cart-item {
    padding: var(--gap-small);
  }
  
  .bde-item-title {
    font-size: var(--h5-twentysix);
  }
  
  .bde-line-total {
    font-size: var(--h5-twentysix);
  }
  
  .bde-cart-total h2 {
    font-size: var(--h3-fortytwo);
  }
}

/* Animation for item removal */
.bde-cart-item.removing {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}