.hero-header {
    background-color: white;
    min-height: 150px;
    height: auto;
    display: flex;
    flex-direction: column; /* Stack logo and nav vertically */
    align-items: center;    /* Center horizontally */
    padding: 20px 40px;     /* Some vertical and horizontal padding */
    box-sizing: border-box;
}

.logo-container {
    width: auto;
    position: static;
    padding: 0;
    margin-bottom: 15px; /* Space between logo and nav */
}

.logo {
    width: 150px;
    height: auto;
    display: block;
}

.hero-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.hero-nav a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: none;
}

.hero-image-below {
    width: 100%;
    overflow: hidden;
}

.hero-image-below img {
    display: block; 
    width: 100%; 
    height: auto;
}

.section-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
}

.bold-break {
  width: 100%;
  border: 3px solid #333;
  margin-top: 0;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.two-column-section {
  display: flex;
  min-height: 600px;
  width: 100%;
}

.left-column {
  flex: 1;
  background-color: #8FBC8F;
  padding: 30px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  max-width: 50%;
}

.left-column h2 {
  font-size: 3.0em;
  margin-top: 20px;
}

.shop-button {
  padding: 12px 25px;
  background-color: white;
  color: #333;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.shop-button:hover {
  background-color: #eee;
}


.right-column {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  background-size: contain; /* or cover, depending on effect */
  background-repeat: no-repeat;
  background-position: center;
}

.hero-section {
    background-image: url("background-main.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 65vh;
    height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    padding-bottom:10px;
}

.tagline {
    margin-top: 10px;
    position: relative;
    text-align: center;
    font-size: 1.2em;
    color: black;
    font-family: "Kalam", cursive;
    font-weight: 400;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle shadow for readability */
}
.story-content-wrapper {
    display: flex;
    align-items: stretch;
    gap: 30px; /* Adds space between the image and text box */
    width: 100%; /* Ensures the wrapper takes full width */
}

.image-section {
    flex: 1; /* Allows the image section to grow and shrink */
    max-width: 50%; /* Limits image section to half the width */
}

.image-section img {
    width: 100%; /* Makes the image fill its container */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes extra space below the image */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-section {
    flex: 1;
    max-width: 50%;
    background-color: #8FBC8F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 25px; /* Adjust padding as needed */
    border-radius: 8px;
    box-sizing: border-box; /* Ensures padding doesn't add to the width */
}

.text-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    text-align: center; /* Centers the heading text */
}

.text-section p {
    font-size: 1.6em;
    margin-bottom: 0;
    line-height: 1.6;
    text-align: center; /* Centers the paragraph text */
}

/* Image Container */
.image-container {
    width: 100%;
    display: flex;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; /* Add hover effect */
}

.image-container img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Banner */
.banner {
    position: relative;
    width: 100%;
    height: 40vh; /* Increase height for more impact */
    min-height: 250px; /* Ensure minimum height for smaller screens */
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the entire banner */
}

/* Banner Overlay Content */
.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white; /* Ensure text is readable against the image */
    width: 100%; /* Full width for better alignment */
    padding: 0 20px; /* Add horizontal padding for text */
}

.overlay-content h1,
.overlay-content h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Stronger shadow for readability */
}

.contact-section {
    background-color: #8FBC8F;
    padding-bottom: 80px;
    text-align: center;
    color: white;
    font-family:'Georgia', Serif;
}

/* Products Grid Section */
.products-section {
    background-color: white;
    font-family: 'Georgia', serif;
    padding: 60px 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

.product-item {
    text-align: center;
    background-color: white;
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease; /* Hover effect */
}

.product-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.product-item img {
    width: 75%;
    height: 200px;
    border-radius: 8px 8px 0 0; /* Rounded corners only at the top */
    margin-bottom: 15px;
}

.product-item a {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    padding: 15px;
}

.product-status.available {
    background-color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.875em;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.lavender-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.content-wrapper {
    display: flex; /* Use flexbox for side-by-side layout */
    align-items: center; /* Vertically align items in the middle */
    gap: 30px; /* Space between the text content and the image */
}

.text-content {
    flex: 1; /* Allows text content to grow and take available space */
    /* If you want it to be a fixed width, you could use something like: flex-basis: 50%; */
}

.image-container {
    flex: 1; /* Allows image container to grow and take available space */
    /* If you want the image to be a fixed width, you could use something like: flex-basis: 40%; */
    text-align: center; /* Center the image if it's smaller than its container */
}

.product-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    /* Removed margin-bottom as gap in content-wrapper handles spacing */
    margin-left: auto;
    margin-right: auto;
    width: 100%; /* Make image take up available space in its container */
    max-width: 300px; /* Adjust this value to control the image width */
}

.lavender-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.lavender-section h2 {
    color: #6a0dad;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left now */
    font-family: 'Playfair Display', serif;
}

.lavender-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align paragraphs to the left */
}

.lavender-section p:last-of-type {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    text-align: left; /* Align details to the left */
}

.java-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.java-section h2 {
    color: #6a0dad;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left now */
    font-family: 'Playfair Display', serif;
}

.java-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align paragraphs to the left */
}

.java-section p:last-of-type {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    text-align: left; /* Align details to the left */
}

.mint-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mint-section h2 {
    color: #6a0dad;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left now */
    font-family: 'Playfair Display', serif;
}

.mint-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align paragraphs to the left */
}

.mint-section p:last-of-type {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    text-align: left; /* Align details to the left */
}

.rose-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.rose-section h2 {
    color: #6a0dad;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left now */
    font-family: 'Playfair Display', serif;
}

.rose-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align paragraphs to the left */
}

.rose-section p:last-of-type {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    text-align: left; /* Align details to the left */
}


.lemon-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.lemon-section h2 {
    color: #6a0dad;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left now */
    font-family: 'Playfair Display', serif;
}

.lemon-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align paragraphs to the left */
}

.lemon-section p:last-of-type {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    text-align: left; /* Align details to the left */
}


.cluck-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cluck-section h2 {
    color: #6a0dad;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left now */
    font-family: 'Playfair Display', serif;
}

.cluck-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align paragraphs to the left */
}

.cluck-section p:last-of-type {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    text-align: left; /* Align details to the left */
}

.addToCartBtn {
    display: inline-block; /* Change to inline-block so it respects text-align: left */
    width: auto; /* Let the button size itself based on content */
    padding: 15px 30px; /* Slightly more padding */
    background-color: #8a2be2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center; /* Keep text centered within the button */
}

.addToCartBtn:hover {
    background-color: #7b1fa2;
}
/* Our Story Section */
.story-section {
    background-color: #8FBC8F;
    padding: 60px 20px;
    font-family: 'Georgia', serif;
    text-align: center;
    color: white;
}

/* Values Section */
.values-section {
    background-color: white;
    padding: 60px 20px;
    font-family: 'Georgia', serif;
    text-align: center;
    color: black;
}

.product-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white; /* Ensure text is readable against the image */
    text-align: center;
}

.product-banner h2 {
    font-family: var(--font-family-accent);
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.product-banner.oat h2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
    margin: 0;
}

.disabled-option {
    color: #999;
    cursor: not-allowed;
}

.coming-soon-badge {
    background-color: var(--secondary-color); 
    color: var(--text-color);
    font-size: 1.4em;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px dashed var(--accent-color);
}

.coming-soon-message {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

/* Coming Soon tag on product grid items */
.product-item.coming-soon {
    opacity: 0.85;
    position: relative; /* Ensure positioning for ::after */
}

.product-item.coming-soon::after {
    content: "Coming Soon";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color); /* Use CSS variable */
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid var(--accent-color); /* Use accent color */
}

.products-hero {
    background-color: #8FBC8F;
    padding: 60px 20px; 
    text-align: center;
    color: white;
    font-family: 'Georgia', Serif;
    margin-bottom: 10px;
}

.products-hero h2 {
    background-color:#8FBC8F;
    text-align: center;
    color: white;
    font-family: 'Georgia', Serif;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.products-hero p {
    background-color: #8FBC8F;
    text-align: center;
    color: white;
    font-family: 'Georgia', Serif;
    font-size: 1em;
    margin-bottom: 10px;
}

.products-content {
    background-color: white;
    padding: 60px 20px; /* Consistent padding */
    text-align: center;
    color: black;
    font-family: 'Georgia', Serif;
}

.products-content p {
    text-align: center;
    color: black;
    font-family: 'Georgia', Serif;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* Hero Section */
.policy-hero {
    background-color: white;
    padding: 60px 20px; /* Consistent padding with other sections */
    text-align: center;
    font-family: 'Georgia', serif;
}

.policy-hero h2 {
    font-size: 2em; /* Match other hero sections */
    margin-bottom: 10px;
}

/* Content Section */
.policy-content {
    background-color: white;
    padding: 60px 20px; /* Consistent padding */
    display: flex;
    justify-content: center;
}

.policy-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    width: 100%;
}

/* Headings */
.policy-container h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color); /* Use primary color for consistency */
    text-align: center;
}

.policy-container h4 {
    font-size: 1.25em; /* Slightly larger for better hierarchy */
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--accent-color); /* Use accent color for consistency */
    text-align: left;
}

/* Paragraphs and Links */
.policy-container p {
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-container a {
    color: var(--accent-color); /* Use accent color for consistency */
    text-decoration: underline;
    font-weight: bold;
}

.policy-container a:hover {
    color: darken(var(--accent-color), 10%); /* Darken on hover */
}

@media print {
    .policy-hero, .policy-content {
        background-color: #fff !important;
        padding: 0;
    }
    .policy-container {
        box-shadow: none;
        padding: 0;
    }
}
.policy-container .disclaimer {
    background-color: #FFEBE6;
    padding: 15px;
    border-left: 4px solid #FF4444;
    margin: 20px 0;
}

/* ========================
   CART PAGE STYLES
   ======================== */

/* Hero Section */
.cart-hero {
    background-color: white;
    padding: 60px 20px; /* Consistent padding with other sections */
    text-align: center;
    font-family: 'Georgia', serif;
}

.cart-hero h2 {
    font-size: 2em; /* Match other hero sections */
    margin-bottom: 10px;
}

/* Content Section */
.cart-content {
  background-color: #8FBC8F; /* sage green */
  padding: 20px; /* add some padding so the white box doesn’t touch edges */
}

.cart-style {
  background-color: white; /* white background for the cart */
  padding: 15px;
  border-radius: 8px; /* optional, for a softer look */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* optional, adds subtle depth */
}

.cart-content .cart-style h2 {
    font-size: 1.5em; /* Consistent with other headings */
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color); /* Use primary color for consistency */
    text-align: center;
}

/* Cart Items List */
#cartItemsList {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.cartItemsList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cartItemsList li button {
    background-color: #cc3333;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.cartItemsList li button:hover {
    background-color: #aa1111;
}

/* Cart Subtotal */
.cartSubtotal {
    font-weight: bold;
    font-size: 1.2em;
    text-align: right;
    padding: 15px 0;
    border-top: 2px solid var(--primary-color); /* Use primary color for consistency */
    margin-bottom: 20px;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-page-buttons {
    display: flex;
    gap: 15px; /* Space between buttons */
    margin-top: 20px; /* Space above the buttons */
}

.continue-shopping-btn, .checkout-button {
    min-width: 140px; /* Make buttons a consistent size */
    text-align: center;
    font-family: 'Georgia', serif;
}

.continue-shopping-btn {
    padding: 12px 25px;
    font-family: 'Georgia', serif;
}

.checkout-button {
    padding: 12px 25px;
}

/* Empty Cart Message */
.cartItemsList:empty::after {
    content: "Your cart is empty.";
    display: block;
    text-align: center;
    color: #666;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .cart-actions {
        flex-direction: column;
    }
}

.checkout-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


/* ========================
   FOOTER
   ======================== */
footer {
    background-color: #8FBC8F;
    width: 100%;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    z-index: 10;
    margin-top: auto;
    padding: 20px 0; /* Add some vertical padding to the footer */
    display: flex; /* Use flexbox for the main footer layout */
    justify-content: space-between; /* Distribute space between sections */
    align-items: center; /* Vertically align sections */
    flex-wrap: wrap; /* Allow sections to wrap on smaller screens */
}
footer .footer-left {
    flex: 1; /* Allow it to take up space */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align links to the left */
    padding-left: 20px; /* Some padding from the left edge */
    min-width: 200px; /* Ensure it doesn't get too squished */
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer a {
    text-decoration: none;
    color: white;
    font-family: 'Georgia', serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #3d5c3d;;
}
footer .footer-center {
    flex: 1; /* Allow it to take up space */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content horizontally */
    justify-content: center; /* Centers content vertically */
    padding: 0 15px; /* Add some horizontal padding */
    min-width: 250px; /* Ensure it has some minimum width */
}

footer .footer-center p {
    margin: 3px 0; /* Space out the contact lines */
    font-family: 'Georgia', serif;
    color: white; /* Assuming white text */
    text-align: center; /* Ensures text itself is centered */
}

/* Container for social icons (right aligned) */
footer .footer-right {
    flex: 1; /* Allow it to take up space */
    display: flex;
    justify-content: flex-end; /* THIS IS KEY: Pushes social icons to the right */
    align-items: center;
    padding-right: 20px; /* Some padding from the right edge */
    min-width: 150px; /* Ensure it has some minimum width */
}

/* Social Icons */
footer .social-icons a {
    font-size: 1.6em;
    color: black;
    transition: color 0.3s ease; 
}

footer .social-icons a:hover {
    color: #3d5c3d;
}


footer .newsletter input {
    padding: 10px 12px;
    width: 250px;
    max-width: 100%;
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family-main);
}

footer .newsletter input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(136, 176, 75, 0.2);
}

footer .copyright {
    font-size: 0.875em;
    color: black;
    margin-top: var(--spacing-md);
    opacity: 0.9;
}


.shop-button {
  padding: 8px 16px;
  background-color: white;
  color: #333;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.shop-button:hover {
  background-color: #eee;
}


.right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  background-size: cover; /* or cover, depending on effect */
  background-repeat: no-repeat;
  position: relative;
  padding: 25px; /* Adjust padding as needed */
  border-radius: 8px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .right-column {
    min-height: auto; /* Let height adjust naturally on smaller screens */
    padding: 20px;
  }

.shop-button {
    padding: 12px 24px;
    font-size: 1.1rem;
    width: 100%; /* Make button full-width on smaller devices */
    box-sizing: border-box;
  }
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  user-select: none;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

.image-section {
    flex: 1; /* Allows the image section to grow and shrink */
    max-width: 50%; /* Limits image section to half the width */
}
@media (max-width: 768px) {
  .arrow {
    font-size: 2rem; /* Slightly smaller arrows on tablets */
    padding: 0.25rem 0.5rem;
  }

  .image-section {
    max-width: 100%; /* Let image section take full width on smaller screens */
  }
}

@media (max-width: 480px) {
  .arrow {
    font-size: 1.5rem; /* Smaller arrows on phones */
    padding: 0.2rem 0.4rem;
  }

  .left-arrow {
    left: 5px;
  }

  .right-arrow {
    right: 5px;
  }
}
.image-section img {
    width: 100%; /* Makes the image fill its container */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes extra space below the image */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.story-content-wrapper {
    display: flex;
    align-items: stretch;
    max-height: 750px;
    width: 100%;
    margin-bottom: 20px;
    gap:30px;
}

.text-section {
    flex: 1;
    max-width: 50%;
    background-color: #8FBC8F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 25px; /* Adjust padding as needed */
    border-radius: 8px;
    box-sizing: border-box; /* Ensures padding doesn't add to the width */
}

@media (max-width: 768px) {
  .story-content-wrapper {
    flex-direction: column; /* Stack image and text vertically */
    max-height: none; /* Remove fixed max height for flexible height */
  }

  .image-section,
  .text-section {
    max-width: 100%; /* Let both take full width */
    padding: 25px; /* Adjust padding as needed */
    border-radius: 8px;
    box-sizing: border-box;
  }

  .text-section {
    padding: 20px;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .text-section {
    padding: 15px;
    font-size: 0.9rem; /* Slightly smaller text on small screens */
  }

  .image-section img {
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }
}
.text-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    text-align: center; /* Centers the heading text */
}

.text-section p {
    font-size: 1.6em;
    margin-bottom: 0;
    line-height: 1.6;
    text-align: center; /* Centers the paragraph text */
}

/* Image Container */
.image-container {
    flex: 1;
    max-width: 50%;
    justify-content:center;
    display: flex;
    align-items: center;
}

.image-container img {
    display: block;
    max-width: 100%;
    max-height: 750px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.contact-section {
    background-color: #8FBC8F;
    padding-bottom: 80px;
    text-align: center;
    color: white;
    font-family:'Georgia', Serif;
}

/* Products Section */
.products-section {
    background-color: white;
    font-family: 'Georgia', serif;
    padding: 60px 20px;
    position: relative; /* needed for arrow positioning */
}

/* Horizontal scroll container */
.product-list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px; /* space for scrollbar if visible */
}

/* Hide scrollbar for cleaner look */
.product-list::-webkit-scrollbar {
    display: none;
}
.product-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Individual product items */
.product-item {
    flex: 0 0 22%; /* roughly 4 items visible */
    text-align: center;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    max-width: 80%;
    height: 200px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 15px;
}

.product-item a {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    padding: 15px;
}

.product-item p {
    margin-top: 2px;
    margin-bottom: 2px;
    line-height: 1.2;
}

.slash {
  font-family: Georgia, serif;
  display: inline-block;
  position: relative;
  background: linear-gradient(to top right, transparent 47%, red 47%, red 53%, transparent 53%);
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

@media (max-width: 1024px) {
  .product-item {
    flex: 0 0 40%; /* show about 2 items on tablets */
    height: auto;
  }
}

@media (max-width: 600px) {
  .product-item {
    flex: 0 0 70%; /* almost full width on phones */
  }
}

.product-status.available {
    background-color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.875em;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.story-content-wrapper {
    display: flex;
    align-items: stretch; /* Make both children the same height */
    gap: 50; /* Remove gap between them */
}

.text-content, .image-container {
    flex: 1; /* Equal width */
    max-width: 50%; /* Ensure they don't exceed half width each */
    height: 100%; /* Take full height of the parent */
    overflow: hidden; /* Prevent overflow */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Make image cover container without distortion */
    display: block; /* Remove any inline spacing */
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .text-content, .image-container {
    flex: none; /* Remove flex-grow */
    width: 100%; /* Full width for each */
    text-align: center; /* Center text and image */
  }
}

.testimony-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px auto;
    padding: 16px 16px 16px 16px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #fff; /* optional, to see the padding area */
}

.testimony-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 8px 8px; /* round only bottom corners */
}

/* For future shuffle/slider */
.testimony-wrapper .testimony-slide {
    display: none; /* hide all by default */
    width: 100%;
    height: 100%;
}

.testimony-wrapper .testimony-slide.active {
    display: block; /* show active slide */
}
.product-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    /* Removed margin-bottom as gap in content-wrapper handles spacing */
    margin-left: auto;
    margin-right: auto;
    width: 100%; /* Make image take up available space in its container */
    max-width: 300px; /* Adjust this value to control the image width */
}

.lavender-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.lavender-section h2 {
    color: black;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left now */
    font-family: 'Georgia', serif;
}

.lavender-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align paragraphs to the left */
}

.lavender-section p:last-of-type {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    text-align: left; /* Align details to the left */
}

  .product-image {
    max-width: 100%; /* Let image fill container width */
  }

.java-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.java-section h2 {
    color: black;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left now */
    font-family: 'Playfair Display', serif;
}

.price-block p {
    margin-top: 2px;
    margin-bottom: 2px;
    line-height: 1.2;
}

.price-block .new-price {
  font-size: 1.4em;
  font-weight: bold;
  color: #000; /* Keeps it sharp and visible next to the red line */
}

.java-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align paragraphs to the left */
}

.strike {
  font-family: Georgia, serif;
  display: inline-block;
  position: relative;
  background: linear-gradient(to bottom, transparent 45%, red 45%, red 53%, transparent 53%);
}

.java-section p:last-of-type {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    text-align: left; /* Align details to the left */
}

.mint-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mint-section h2 {
    color: black;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left now */
    font-family: 'Playfair Display', serif;
}

.mint-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align paragraphs to the left */
}

.mint-section p:last-of-type {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    text-align: left; /* Align details to the left */
}

.rose-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.rose-section h2 {
    color: black;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left now */
    font-family: 'Playfair Display', serif;
}

.rose-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align paragraphs to the left */
}

.rose-section p:last-of-type {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    text-align: left; /* Align details to the left */
}


.lemon-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.lemon-section h2 {
    color: black;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left now */
    font-family: 'Playfair Display', serif;
}

.lemon-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align paragraphs to the left */
}

.lemon-section p:last-of-type {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    text-align: left; /* Align details to the left */
}


.cluck-section {
    font-family: 'Georgia', serif;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px; /* Increased max-width to accommodate two columns */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cluck-section h2 {
    color: black;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left now */
    font-family: 'Playfair Display', serif;
}

.cluck-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align paragraphs to the left */
}

.cluck-section p:last-of-type {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    text-align: left; /* Align details to the left */
}

.quantityInput {
    width: 60px; /* adjust size as needed */
}

.addToCartBtn {
    display: inline-block;
    width: auto;
    padding: 15px 30px;
    background-color: #e0e0e0;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.addToCartBtn:hover {
    background-color: #7b1fa2;
}

.continueShoppingBtn {
    display: inline-block;
    width: auto;
    padding: 15px 30px;
    background-color: #e0e0e0;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.continueShoppingBtn:hover {
    background-color: #7b1fa2;
}

/* Our Story Section */
.story-section {
    background-color: #8FBC8F;
    padding: 60px 20px;
    font-family: 'Georgia', serif;
    text-align: center;
    color: white;
}

/* Values Section */
.values-section {
    background-color: white;
    padding: 60px 20px;
    font-family: 'Georgia', serif;
    text-align: center;
    color: black;
}

.product-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white; /* Ensure text is readable against the image */
    text-align: center;
}

.product-banner h2 {
    font-family: var(--font-family-accent);
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.product-banner.oat h2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
    margin: 0;
}

.disabled-option {
    color: #999;
    cursor: not-allowed;
}

.coming-soon-badge {
    background-color: var(--secondary-color); 
    color: var(--text-color);
    font-size: 1.4em;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px dashed var(--accent-color);
}

.coming-soon-message {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

/* Coming Soon tag on product grid items */
.product-item.coming-soon {
    opacity: 0.85;
    position: relative; /* Ensure positioning for ::after */
}

.product-item.coming-soon::after {
    content: "Coming Soon";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color); /* Use CSS variable */
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid var(--accent-color); /* Use accent color */
}

.products-hero {
    background-color: #8FBC8F;
    padding: 60px 20px; 
    text-align: center;
    color: white;
    font-family: 'Georgia', Serif;
    margin-bottom: 10px;
}

.products-hero h2 {
    background-color:#8FBC8F;
    text-align: center;
    color: white;
    font-family: 'Georgia', Serif;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.products-hero p {
    background-color: #8FBC8F;
    text-align: center;
    color: white;
    font-family: 'Georgia', Serif;
    font-size: 1em;
    margin-bottom: 10px;
}

.products-content {
    background-color: white;
    padding: 60px 20px; /* Consistent padding */
    text-align: center;
    color: black;
    font-family: 'Georgia', Serif;
}

.products-content p {
    text-align: center;
    color: black;
    font-family: 'Georgia', Serif;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* Hero Section */
.policy-hero {
    background-color: white;
    padding: 60px 20px; /* Consistent padding with other sections */
    text-align: center;
    font-family: 'Georgia', serif;
}

.policy-hero h2 {
    font-size: 2em; /* Match other hero sections */
    margin-bottom: 10px;
}

/* Content Section */
.policy-content {
    background-color: white;
    padding: 60px 20px; /* Consistent padding */
    display: flex;
    justify-content: center;
}

.policy-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    width: 100%;
}

/* Headings */
.policy-container h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color); /* Use primary color for consistency */
    text-align: center;
}

.policy-container h4 {
    font-size: 1.25em; /* Slightly larger for better hierarchy */
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--accent-color); /* Use accent color for consistency */
    text-align: left;
}

/* Paragraphs and Links */
.policy-container p {
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-container a {
    color: var(--accent-color); /* Use accent color for consistency */
    text-decoration: underline;
    font-weight: bold;
}

.policy-container a:hover {
    color: darken(var(--accent-color), 10%); /* Darken on hover */
}

@media print {
    .policy-hero, .policy-content {
        background-color: #fff !important;
        padding: 0;
    }
    .policy-container {
        box-shadow: none;
        padding: 0;
    }
}
.policy-container .disclaimer {
    background-color: #FFEBE6;
    padding: 15px;
    border-left: 4px solid #FF4444;
    margin: 20px 0;
}

/* ========================
   CART PAGE STYLES
   ======================== */

/* Hero Section */
.cart-hero {
    background-color: var(--secondary-color); /* Use CSS variable for consistency */
    padding: 60px 20px; /* Consistent padding with other sections */
    text-align: center;
    font-family: 'Georgia', serif;
}

.cart-hero h2 {
    font-size: 2em; /* Match other hero sections */
    margin-bottom: 10px;
}

/* Content Section */
.cart-content {
  background-color: #8FBC8F;
  padding: 20px;
  min-height: 100vh; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-style {
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 70%;
  max-width: 600px;
  margin: 20px auto; 
  box-sizing: border-box; 
}

.cart-content .cart-style h2 {
    font-size: 1.5em; /* Consistent with other headings */
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color); /* Use primary color for consistency */
    text-align: center;
}

/* Cart Items List */
.cartItemsList {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.cartItemsList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cartItemsList li button {
    background-color: #cc3333;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.cartItemsList li button:hover {
    background-color: #aa1111;
}

/* Cart Subtotal */
.cartSubtotal {
    font-weight: bold;
    font-size: 1.2em;
    text-align: right;
    padding: 15px 0;
    border-top: 2px solid var(--primary-color); /* Use primary color for consistency */
    margin-bottom: 20px;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-page-buttons {
    display: flex;
    gap: 15px; /* Space between buttons */
    margin-top: 20px; /* Space above the buttons */
}

/* Empty Cart Message */
.cartItemsList:empty::after {
    content: "Your cart is empty.";
    display: block;
    text-align: center;
    color: #666;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .cart-actions {
        flex-direction: column;
    }
}

.checkout-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


/* ========================
   FOOTER
   ======================== */
footer {
    background-color: #8FBC8F;
    width: 100%;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    z-index: 10;
    margin-top: auto;
    padding: 20px 0; /* Add some vertical padding to the footer */
    display: flex; /* Use flexbox for the main footer layout */
    justify-content: space-between; /* Distribute space between sections */
    align-items: center; /* Vertically align sections */
    flex-wrap: wrap; /* Allow sections to wrap on smaller screens */
}
footer .footer-left {
    flex: 1; /* Allow it to take up space */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align links to the left */
    padding-left: 20px; /* Some padding from the left edge */
    min-width: 200px; /* Ensure it doesn't get too squished */
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer a {
    text-decoration: none;
    color: white;
    font-family: 'Georgia', serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #3d5c3d;;
}
footer .footer-center {
    flex: 1; /* Allow it to take up space */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content horizontally */
    justify-content: center; /* Centers content vertically */
    padding: 0 15px; /* Add some horizontal padding */
    min-width: 250px; /* Ensure it has some minimum width */
}

footer .footer-center p {
    margin: 3px 0; /* Space out the contact lines */
    font-family: 'Georgia', serif;
    color: white; /* Assuming white text */
    text-align: center; /* Ensures text itself is centered */
}

/* Container for social icons (right aligned) */
footer .footer-right {
    flex: 1; /* Allow it to take up space */
    display: flex;
    justify-content: flex-end; /* THIS IS KEY: Pushes social icons to the right */
    align-items: center;
    padding-right: 20px; /* Some padding from the right edge */
    min-width: 150px; /* Ensure it has some minimum width */
}

/* Social Icons */
footer .social-icons a {
    font-size: 1.6em;
    color: black;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #3d5c3d;
}


footer .newsletter input {
    padding: 10px 12px;
    width: 250px;
    max-width: 100%;
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family-main);
}

footer .newsletter input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(136, 176, 75, 0.2);
}

footer .copyright {
    font-size: 0.875em;
    color: black;
    margin-top: var(--spacing-md);
    opacity: 0.9;
}
