html{

    scroll-behavior:smooth;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    /* Brand Colors */

    --primary:#234b1d;
    --primary-light:#2f6c34;
    --primary-hover:#3f8745;

    --accent:#d8c66a;

    /* Text */

    --text:#333;
    --text-light:#666;
    --text-white:#fff;

    /* Backgrounds */

    --background:#ffffff;
    --background-light:#f7f7f7;
    --card:#ffffff;
    --surface:#faf8f3;

    /* Borders */

    --border:#e5e5e5;

    /* Shadows */

    --shadow-small:0 8px 20px rgba(0,0,0,.08);
    --shadow-medium:0 15px 35px rgba(0,0,0,.12);
    --shadow-large:0 20px 45px rgba(0,0,0,.18);

    /* Radius */

    --radius:18px;

    /* Spacing */

    --space-xs:8px;
    --space-sm:16px;
    --space-md:24px;
    --space-lg:40px;
    --space-xl:60px;
    --space-xxl:100px;

    /* Animation */

    --transition:.3s ease;

    /* How tall the fixed announcement bar + nav currently are.
       They wrap onto extra rows on narrower screens, so this is
       kept in sync for real by js/script.js rather than guessed
       here — this value is just a safe fallback before that runs. */
    --nav-offset:210px;

}

/* Anything a jump-to-section link can land on should clear the
   fixed nav instead of scrolling underneath it. */
[id]{
    scroll-margin-top:var(--nav-offset);
}

body{
    font-family:'Open Sans',sans-serif;
    color:#333;
}

.main-nav{
    position:fixed;

    top:40px;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 70px;

    background:#4d6f43;

    backdrop-filter:none;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:all .35s ease;

    z-index:1000;
}

/* ==========================
   LOGO ANIMATION
========================== */

.logo{

    display:inline-block;

    perspective:1000px;

}

.logo-link{

    display:block;

    line-height:0;

}

.logo-spin{

    display:block;

    animation:logoFloat 5s ease-in-out infinite;

}

.main-nav ul{

    display:flex;

    list-style:none;

    gap:35px;
}

.main-nav ul a{

    color:var(--text-white);

    text-decoration:none;

    font-weight:600;

    padding:10px 16px;

    border-radius:30px;

    transition:all var(--transition);

}

.main-nav ul a:hover{

    background:rgba(255,255,255,.15);

    color:var(--text-white);

}

.hero{

    padding-top:40px;

    height:100vh;

    color:white;

    background-image:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("../images/hero/hero.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-content h1{

    font-family:'Poppins',sans-serif;

    font-size:72px;

    margin-bottom:20px;
}

.hero-content p{

    font-size:28px;

    margin-bottom:40px;
}

.button{

    display:inline-block;

    background:var(--primary-light);

    color:var(--text-white);

    text-decoration:none;

    padding:18px 42px;

    border-radius:999px;

    font-weight:700;

    box-shadow:var(--shadow-medium);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;

}

.button:hover{

    background:var(--primary-hover);

    transform:translateY(-10px) scale(1.08);

    box-shadow:
        0 0 18px rgba(120,255,120,.9),
        0 0 35px rgba(90,255,90,.8),
        0 0 60px rgba(60,220,60,.7),
        0 20px 40px rgba(0,0,0,.35);

    animation:comingPulse 1.8s infinite;

}

/* ==========================================================
   SHOP HERO BUTTONS
========================================================== */

.hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    margin-top:35px;

}

.button-secondary{

    display:inline-block;

    padding:18px 32px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    border:2px solid rgba(255,255,255,.30);

    color:white;

    text-decoration:none;

    font-weight:700;

    backdrop-filter:blur(8px);

    transition:all .35s ease;

}

.button-secondary:hover{

    background:white;

    color:var(--primary);

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.20);

}

/* =======================
   WHY CHOOSE US
======================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.why-us{
    background:var(--background);
    color:var(--text);
    padding:100px 0;
}

.why-us h2{

    font-family:'Poppins',sans-serif;

    text-align:center;

    font-size:48px;

    color:var(--primary);

    margin-bottom:20px;

}

.section-intro{
    text-align:center;
    font-size:20px;
    color:var(--text-light);
    margin-bottom:60px;
}

/* ==========================
   FEATURED PRODUCTS
========================== */

.products{
    padding:100px 8%;
    background:var(--background-light);
}

.products h2{
    font-family:'Poppins',sans-serif;
    text-align:center;
    font-size:48px;
    color:var(--primary);
    margin-bottom:20px;
}

.products .section-subtitle{

    text-align:center;

    font-size:20px;

    color:#555;

    max-width:850px;

    margin:-5px auto 70px auto;

    line-height:1.8;

}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
    gap:35px;
}

.product-card{
    display:flex;

    flex-direction:column;

    background:var(--card);

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow-medium);

    transition:var(--transition);
}

.product-card:hover{

    transform: translateY(-10px) scale(1.04);

    box-shadow:
        0 0 30px rgba(255,255,180,.95),
        0 0 60px rgba(255,230,80,.95),
        0 0 100px rgba(255,215,0,.90),
        0 0 150px rgba(255,180,0,.75),
        0 25px 50px rgba(0,0,0,.35);

}

.product-card img{
    transition:.4s;
    width:100%;
    height:260px;
    object-fit:cover;
}

.product-card:hover img{

    transform:scale(1.05);

}

.product-info{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:25px;
}

.product-info h3{
    color:#234b1d;
    margin-bottom:15px;
    font-size:28px;
}

.product-info p{
    line-height:1.7;

    margin-bottom:20px;

    color:#555;

    flex-grow:1;
}

.product-info ul{
    list-style:none;
    margin-bottom:25px;
}

.product-info li{
    padding:6px 0;
}

.button-small{
    display:inline-block;
    background:#2f6c34;
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    font-weight:bold;
    transition:.3s;
}

.button-small:hover{
    background:#3f8745;
}
/* ==========================
   ABOUT
========================== */

.about{

    padding:120px 0;

    background:#f8f6ef;

}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:var(--radius);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    display:block;
}

.about-text{
    color:#333;
}

.about-text h2{
    font-family:'Poppins',sans-serif;
    font-size:48px;
    color:#234b1d;
    margin-bottom:25px;
}

.about-text p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:25px;
}

@media (max-width:900px){

    .about-grid{
        grid-template-columns:1fr;
    }

}
/* ==========================
   GALLERY PREVIEW
========================== */

.gallery-preview{
    padding:120px 0;
    background:white;
}

.gallery-preview h2{
    font-family:'Poppins',sans-serif;
    text-align:center;
    font-size:48px;
    color:#234b1d;
    margin-bottom:20px;
}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    max-width:960px;

    margin:0 auto;

}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:var(--radius);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    transition:var(--transition);
}

.gallery-grid img:hover{
    transform:scale(1.03);
}
/* ==========================
   HAPPY CUSTOMERS GALLERY
========================== */

.customer-gallery-hero{
    padding:60px 0 30px;
    text-align:center;
    background:white;
}

.customer-gallery-hero h1{
    font-family:'Poppins',sans-serif;
    color:var(--primary);
    font-size:42px;
    margin:14px 0;
}

.customer-gallery-hero p{
    color:var(--text-light);
    font-size:18px;
    max-width:640px;
    margin:0 auto;
}

.customer-gallery{
    padding:60px 0 120px;
    background:var(--background-light);
}

.customer-gallery h2{
    font-family:'Poppins',sans-serif;
    text-align:center;
    font-size:40px;
    color:var(--primary);
    margin-bottom:14px;
}

.customer-gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(300px,100%),1fr));
    gap:30px;
    margin-top:50px;
}

.customer-card{
    background:var(--card);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow-medium);
}

.customer-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    background:#000;
}

.customer-card video{
    width:100%;
    height:560px;
    object-fit:contain;
    display:block;
    background:#000;
}

.customer-caption{
    padding:16px 20px;
    color:var(--text-light);
    font-size:15px;
}

.customer-gallery-empty{
    text-align:center;
    color:var(--text-light);
    font-size:17px;
    margin-top:40px;
}

.customer-gallery-empty a{
    color:var(--primary);
    font-weight:600;
}
/* ==========================
   REVIEWS
========================== */

.reviews{
    padding:120px 0;
    background:white;
}

.reviews h2{
    text-align:center;
    font-size:48px;
    color:#234b1d;
    margin-bottom:20px;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
    gap:30px;
}

.review-card{
    background:#faf8f3;
    padding:40px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.review-card p{
    margin:20px 0;
    line-height:1.8;
    color:#444;
}

.review-card h4{
    color:#234b1d;
}
/* ==========================
   DELIVERY
========================== */

.delivery{
    padding:100px 0;
    background:#234b1d;
    color:white;
}

.delivery h2{
    font-family:'Poppins',sans-serif;
    text-align:center;
    font-size:48px;
    margin-bottom:20px;
}

.delivery .section-intro{
    color:#ddd;
}

.delivery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(220px,100%),1fr));
    gap:25px;
    margin-top:50px;
}

.delivery-card{
    background:rgba(255,255,255,.08);
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
}

.delivery-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.12);
}

.delivery-card h3{
    margin-bottom:15px;
}

.delivery-card p{
    color:#eee;
}

.coming-soon{
    text-align:center;
    margin-top:50px;
    font-size:20px;
    font-weight:bold;
}
/* ==========================
   FAQ
========================== */

.faq{
    padding:120px 0;

    background:#f8f6ef;
}

.faq h2{
    font-family:'Poppins',sans-serif;
    text-align:center;
    font-size:48px;
    color:#234b1d;
    margin-bottom:60px;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
    gap:25px;
}

.faq-item{
    background:#faf8f3;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.faq-item h3{
    color:#234b1d;
    margin-bottom:15px;
    font-size:22px;
}

.faq-item p{
    color:#555;
    line-height:1.7;
}
/* ==========================
   READY TO ORDER
========================== */

.contact-cta{
    background:#234b1d;
    color:white;
    padding:120px 0;
    text-align:center;
}

.contact-cta h2{
    font-family:'Poppins',sans-serif;
    font-size:52px;
    margin-bottom:25px;
}

.contact-cta p{
    max-width:750px;
    margin:0 auto 45px;
    line-height:1.8;
    font-size:20px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.button-secondary{

    display:inline-block;

    padding:18px 40px;

    border:2px solid white;

    border-radius:10px;

    color:white;

    text-decoration:none;

    transition:.3s;

}

.button-secondary:hover{

    background:white;

    color:#234b1d;

}
/* ==========================
   SCROLL ANIMATIONS
========================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:opacity .8s ease, transform .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade-in{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-in.show{

    opacity:1;

    transform:translateY(0);

}
/* ==========================
   FOOTER
========================== */

footer{

    background:#1b351d;

    color:white;

    padding:70px 0 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

footer h3{

    font-family:'Poppins',sans-serif;

    margin-bottom:20px;

}

footer ul{

    list-style:none;

}

footer li{

    margin-bottom:10px;

}

footer a{

    color:white;

    text-decoration:none;

}

footer a:hover{

    color:#d8c66a;

}

.copyright{

    text-align:center;

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:20px;

    color:#bbb;

}

/* ===========================
   Announcement Bar
=========================== */

.announcement-bar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:40px;

    background:#d8c66a;

    color:#234b1d;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    font-size:15px;

    z-index:2000;

    letter-spacing:.3px;

}
/* ===========================
   HERO ANIMATIONS
=========================== */

.hero{

    animation:heroZoom 18s ease-in-out infinite alternate;

}

@keyframes heroZoom{

    from{

        background-size:cover;

        transform:scale(1);

    }

    to{

        background-size:cover;

        transform:scale(1.05);

    }

}

.hero-content{

    animation:fadeUp 1.2s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
.hero-trust span{

    transition:.3s;

}

.hero-trust span:hover{

    background:rgba(255,255,255,.25);

    transform:translateY(-3px);

}
/* ===========================
   PRODUCT PRICING
=========================== */

.product-price{

    margin:25px 0;

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

}

.starting{

    display:block;

    color:#777;

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.price{

    display:block;

    font-size:42px;

    color:#2f6c34;

    font-family:'Poppins',sans-serif;

    font-weight:700;

    margin-top:5px;

}

.coming-soon{

    display:inline-block;

    background:#d8c66a;

    color:#234b1d;

    padding:8px 16px;

    border-radius:999px;

    font-weight:bold;

    font-size:14px;

}
.stock-badge{

    display:inline-block;

    margin:18px 0 22px;

    padding:10px 18px;

    background:#e6f7ea;

    color:#1f7a34;

    border:1px solid #b8e6c4;

    border-radius:999px;

    font-weight:bold;

    font-size:15px;

}
.product-info .button-small{

    margin-top:auto;

}
/* ==========================================================
   RESPONSIVE DESIGN
========================================================== */

/* ==========================================================
   Tablets & Phones
========================================================== */

@media (max-width:1200px){

}

@media (max-width:992px){
/* Footer Mobile */

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

    gap:40px;

}

.footer-logo{

    margin:0 auto 20px;

}

footer ul{

    padding:0;

}
}

@media (max-width:768px){

    /* ---------- Navigation ---------- */

    .main-nav{

        padding:12px 20px;

        top:40px;

        flex-direction:column;

        gap:12px;

        
    }

.hero-badges{

    display:none;

    }
    
    .logo img{

        height:55px;

    }

    .main-nav ul{

        display:flex;

        flex-wrap:wrap;

        justify-content:center;

        gap:10px;

    }

    .main-nav a{

        padding:8px 10px;

        font-size:.95rem;

    }

    /* ---------- Homepage Hero ---------- */

    .hero-content h1{

        font-size:42px;

    }

    .hero-content p{

        font-size:24px;

    }

    /* ---------- Shop Hero ---------- */

    .shop-hero-overlay{

        padding:200px 8% 90px;

    }

}

@media (max-width:576px){

}

/* ==========================================================
   SHOP HERO
========================================================== */

.shop-hero{

    position:relative;

    min-height:90vh;

    display:flex;

    align-items:center;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/hero/hero.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}

.shop-hero-overlay{

    width:100%;

    padding:220px 8% 120px;

}

.shop-hero-content{

    max-width:760px;

    color:white;

}

/* ==========================================================
   PRODUCT AVAILABILITY
========================================================== */

.availability-box{

    display:inline-flex;

    opacity:0;

    transform:translateY(30px);

    animation:availabilityReveal .9s ease .5s forwards;

    flex-direction:column;

    gap:14px;

    margin-top:35px;

    padding:22px 28px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:20px;

    box-shadow:0 18px 40px rgba(0,0,0,.18);

}

.availability-item{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:1.05rem;

    color:white;

    font-weight:600;

    letter-spacing:.2px;

}

.availability-item strong{

    color:#ffffff;

}

/* ==========================================================
   STATUS DOTS
========================================================== */

.status-dot{

    width:14px;

    height:14px;

    border-radius:50%;

    flex-shrink:0;

}

/* ---------- Live Mealworms ---------- */

.status-live{

    background:#37d64a;

    box-shadow:
        0 0 10px rgba(55,214,74,.75),
        0 0 22px rgba(55,214,74,.45);

    animation:livePulse 1.4s infinite;

}

/* ---------- Coming Soon ---------- */

.status-coming{

    background:#d8c66a;

    box-shadow:
        0 0 6px rgba(216,198,106,.45);

    animation:comingPulse 3.2s infinite;

}

.availability-item:nth-child(2) .status-coming{

    animation-delay:.3s;

}

.availability-item:nth-child(3) .status-coming{

    animation-delay:1.6s;

}

/* ==========================================================
   STATUS DOT ANIMATIONS
========================================================== */

@keyframes livePulse{

    0%{

        transform:scale(1);

        box-shadow:
            0 0 10px rgba(55,214,74,.75),
            0 0 22px rgba(55,214,74,.45);

    }

    50%{

        transform:scale(1.35);

        box-shadow:
            0 0 18px rgba(55,214,74,1),
            0 0 42px rgba(55,214,74,.9),
            0 0 70px rgba(55,214,74,.55);

    }

    100%{

        transform:scale(1);

        box-shadow:
            0 0 10px rgba(55,214,74,.75),
            0 0 22px rgba(55,214,74,.45);

    }

}

@keyframes comingPulse{

    0%{

        transform:scale(1);

        box-shadow:
            0 0 6px rgba(216,198,106,.35);

    }

    50%{

        transform:scale(1.12);

        box-shadow:
            0 0 12px rgba(216,198,106,.6);

    }

    100%{

        transform:scale(1);

        box-shadow:
            0 0 6px rgba(216,198,106,.35);

    }

}

/* ==========================================================
   AVAILABILITY BOX REVEAL
========================================================== */

@keyframes availabilityReveal{

    0%{

        opacity:0;

        transform:translateY(30px);

    }

    100%{

        opacity:1;

        transform:translateY(0);

    }

}

.shop-hero-content h1{

    font-family:'Poppins',sans-serif;

    font-size:clamp(3.2rem,6vw,5.3rem);

    line-height:1.1;

    margin:25px 0;

    color:white;

}

.shop-hero-content p{

    font-size:1.2rem;

    line-height:1.9;

    max-width:680px;

    margin-bottom:40px;

    color:rgba(255,255,255,.92);

}

.hero-tag{

    display:inline-block;

    padding:10px 24px;

    background:var(--accent);

    color:var(--primary);

    border-radius:999px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    font-size:.85rem;

}

.hero-badges{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:45px;

}

.hero-badges span{

    padding:12px 22px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    border-radius:999px;

    backdrop-filter:blur(10px);

    font-weight:600;

    color:white;

}

/* ==========================================================
   PRODUCT SECTIONS
========================================================== */

.product-section{

    padding:120px 8%;

    background:#ffffff;

}

.product-section.alternate{

    background:#f7f8f4;

}

.product-layout{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.product-image{

    position:relative;

    overflow:visible;

    isolation:isolate;

}

.product-image::before{

    content:"";

    position:absolute;

    inset:-25px;

    background:radial-gradient(
        circle,
        rgba(214,181,74,.28) 0%,
        rgba(214,181,74,.12) 40%,
        transparent 75%
    );

    filter:blur(25px);

    opacity:0;

    transform:scale(.9);

    transition:all .45s ease;

    z-index:-1;

}

.product-image:hover::before{

    opacity:1;

    transform:scale(1);

}

.product-image img{

    width:100%;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    filter .45s ease,
    box-shadow .45s cubic-bezier(.22,.61,.36,1);

}

.product-image:hover img{

    transform:translateY(-10px) scale(1.02);

    box-shadow:0 35px 80px rgba(0,0,0,.22);

}

/* ==========================================================
   FEATURED PRODUCT BADGE
========================================================== */

.featured-product{

    position:relative;

}

.featured-badge{

    position:absolute;

    top:20px;

    right:20px;

    z-index:10;

    background:linear-gradient(135deg,#d8c66a,#f7e28b);

    color:#234b1d;

    font-weight:800;

    font-size:1rem;

    padding:12px 22px;

    border-radius:999px;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

    letter-spacing:.8px;

    transition:all .35s ease;

    transform:rotate(4deg);

}

.featured-product:hover .featured-badge{

    transform:rotate(4deg) translateY(-4px) scale(1.05);

    box-shadow:0 18px 40px rgba(0,0,0,.22);

}

/* ==========================================================
   FEATURED BADGE SHIMMER
========================================================== */

.featured-badge{

    overflow:hidden;

}

.featured-badge::after{

    content:"";

    position:absolute;

    top:0;

    left:-150%;

    width:50%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.75),
        transparent
    );

    transform:skewX(-25deg);

    animation:badgeShimmer 4s infinite;

}

@keyframes badgeShimmer{

    0%{

        left:-150%;

    }

    20%{

        left:150%;

    }

    100%{

        left:150%;

    }

}

.product-content h2{

    font-family:'Poppins',sans-serif;

    font-size:3rem;

    color:var(--primary);

    margin:18px 0;

}

.product-content p{

    font-size:1.1rem;

    line-height:1.9;

    color:#555;

    margin-bottom:30px;

}

.product-content ul{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}

.product-content li{

    font-size:1.05rem;

    margin-bottom:14px;

    color:#333;

}

.product-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:999px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    font-size:.82rem;

}

.available{

    background:#d9f3d6;

    color:#1f6d2c;

}

.product-coming-soon{

    background:#ffe7ad;

    color:#8a5b00;

}

.price{

    font-size:1.2rem;

    margin-bottom:35px;

    color:#666;

}

.price span{

    display:block;

    margin-top:8px;

    font-size:3rem;

    font-weight:800;

    color:var(--primary);

}

/* ==========================================================
   COMING SOON PLACEHOLDER
========================================================== */

.coming-soon-card{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    min-height:420px;

    border:3px dashed rgba(47,108,52,.25);

    border-radius:24px;

    background:linear-gradient(145deg,#fafcf8,#f3f6ef);

    transition:all .35s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.coming-soon-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.camera-icon{

    font-size:5rem;

    margin-bottom:25px;

}

.coming-soon-card h3{

    font-family:'Poppins',sans-serif;

    font-size:2rem;

    color:var(--primary);

    margin-bottom:15px;

}

.coming-soon-card p{

    max-width:320px;

    line-height:1.8;

    color:#666;

}

/* ==========================================================
   PRODUCT PRICE BOX
========================================================== */

.price-box{

    display:inline-flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:linear-gradient(145deg,#2f6c34,#234b1d);

    color:white;

    border-radius:20px;

    padding:22px 38px;

    margin:35px 0;

    box-shadow:0 18px 45px rgba(35,75,29,.28);

    position:relative;

    overflow:hidden;

    cursor:pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;

}

.price-box:hover{

    transform:translateY(-12px) scale(1.08);

    box-shadow:
        0 0 25px rgba(140,255,140,.95),
        0 0 55px rgba(90,255,90,.90),
        0 0 95px rgba(60,220,60,.80),
        0 20px 45px rgba(0,0,0,.35);

    animation:comingPulse 1.8s infinite;

}

.price-label{

    font-size:.9rem;

    text-transform:uppercase;

    letter-spacing:2px;

    opacity:.85;

}

.price-value{

    font-family:'Poppins',sans-serif;

    font-size:3.4rem;

    font-weight:800;

    line-height:1;

    margin-top:8px;

}

/* ==========================================
   COMING SOON PRICE OVERLAY
========================================== */

.price-box{

    position:relative;

    overflow:hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;

}

.coming-soon-overlay{

    position:absolute;

    top:50%;

    left:-18%;

    width:136%;

    padding:10px 0;

    transform:translateY(-50%) rotate(-12deg);

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        90deg,
        #b8860b,
        #ffd54a,
        #b8860b
    );

    color:#ffffff;

    font-family:'Poppins',sans-serif;

    font-size:1rem;

    font-weight:800;

    letter-spacing:3px;

    text-transform:uppercase;

    text-shadow:0 0 12px rgba(255,248,200,.95);

    box-shadow:
        0 0 20px rgba(255,215,0,.95),
        0 0 45px rgba(255,215,0,.75),
        0 0 70px rgba(255,215,0,.55);

    animation:comingPulse 3.2s infinite;

    z-index:10;

}

.product-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.button-secondary{

    display:inline-block;

    background:white;

    color:var(--primary);

    border:2px solid var(--primary);

    padding:18px 34px;

    border-radius:999px;

    text-decoration:none;

    font-weight:700;

    transition:all .3s ease;

}

.button-secondary:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-4px);

}

/* ==========================================================
   WHY CHOOSE CAUDLE CRITTERS
========================================================== */

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));

    gap:30px;

}

.feature-card{

    background:white;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:all .35s ease;

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.feature-icon{

    font-size:3rem;

    margin-bottom:20px;

}

.feature-icon-img{
    width:56px;
    height:auto;
    display:block;
    margin:0 auto;
}

.feature-card h3{

    color:var(--primary);

    margin-bottom:15px;

    font-family:'Poppins',sans-serif;

}

.feature-card p{

    color:#666;

    line-height:1.8;

}

/* ==========================================================
   SHOP PAGE RESPONSIVE
========================================================== */

@media (max-width: 992px){

    .product-layout{

        grid-template-columns:1fr;

        gap:50px;

    }

    /* Alternate sections become image first on mobile */

    .product-section.alternate .product-image{

        order:-1;

    }

    .shop-hero{

        background-attachment:scroll;

    }

    .shop-hero-content{

        text-align:center;

        margin:auto;

    }

    .hero-badges{

        justify-content:center;

    }

    .product-content{

        text-align:center;

    }

    .product-content ul{

        display:inline-block;

        text-align:left;

    }

    .product-buttons{

        justify-content:center;

    }

}

@media (max-width:600px){

    .shop-hero{

        min-height:75vh;

    }

    .shop-hero-overlay{

    padding:240px 8% 90px;

    }

    .shop-hero-content h1{

        font-size:2.8rem;

    }

    .product-content h2{

        font-size:2.2rem;

    }

    .price-value{

        font-size:2.8rem;

    }

    .feature-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   KEYFRAMES
========================================== */

@keyframes logoFloat{

    0%{
        transform:translateY(0px) rotate(0deg);
    }

    25%{
        transform:translateY(-4px) rotate(-2deg);
    }

    50%{
        transform:translateY(-8px) rotate(0deg);
    }

    75%{
        transform:translateY(-4px) rotate(2deg);
    }

    100%{
        transform:translateY(0px) rotate(0deg);
    }

}

@keyframes coinFlip{

    0%{

        transform:rotateY(0deg);

    }

    100%{

        transform:rotateY(360deg);

    }

}

.product-image:hover img{

    transform:
        translateY(-8px)
        scale(1.03);

    filter:brightness(1.04);

    box-shadow:
        0 45px 90px rgba(0,0,0,.35),
        0 0 120px 45px rgba(216,198,106,.28);

}

.shop-hero{

    position:relative;

}

.shop-hero-overlay{

    position:relative;

    z-index:2;

}

.shop-hero {
    position: relative;
    overflow: hidden;
}

/* =========================================
   HOME PAGE PRODUCT CARDS
   ========================================= */

.home-product-card{

    box-shadow:0 10px 28px rgba(0,0,0,.10);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}

.home-product-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 16px 35px rgba(0,0,0,.14),
        0 0 14px rgba(225,195,70,.18);

}

/* =========================================
   FARM GALLERY - MOBILE
   ========================================= */

@media (max-width: 768px){

    .gallery-grid{

        grid-template-columns:1fr;

        max-width:520px;

        gap:20px;

    }

}

/* =========================================
   LIVE MEALWORM PRICE + STOCK
   ========================================= */

.live-product-price{
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:18px;
}

.live-price{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

/* =========================================
   FACEBOOK QUICK LINK ICON
   ========================================= */

.facebook-link{
    display:inline-flex;
    align-items:center;
    gap:7px;
}

.facebook-icon{
    width:32px;
    height:32px;
    object-fit:none;
    object-position:-32px -16px;
    flex-shrink:0;
}
/* =========================================================
   CART — button, drawer, lines, and add-to-cart controls
   ========================================================= */

.cart-button{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:1200;

    width:62px;
    height:62px;

    border:none;
    border-radius:50%;

    background:var(--primary);
    color:var(--text-white);

    font-size:26px;
    line-height:1;

    cursor:pointer;

    box-shadow:var(--shadow-medium);

    transition:transform var(--transition), background var(--transition);
}

.cart-button:hover{
    background:var(--primary-hover);
    transform:translateY(-3px);
}

.cart-button.bump{
    animation:cart-bump .45s ease;
}

@keyframes cart-bump{
    0%  { transform:scale(1); }
    35% { transform:scale(1.22); }
    70% { transform:scale(.94); }
    100%{ transform:scale(1); }
}

.cart-badge{
    position:absolute;
    top:-4px;
    right:-4px;

    min-width:24px;
    height:24px;
    padding:0 6px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:var(--accent);
    color:var(--primary);

    font-size:13px;
    font-weight:700;
}

.cart-backdrop{
    position:fixed;
    inset:0;
    z-index:1300;
    background:rgba(0,0,0,.45);
}

.cart-drawer{
    position:fixed;
    top:0;
    right:0;
    z-index:1400;

    width:min(420px,100%);
    height:100%;

    display:flex;
    flex-direction:column;

    background:var(--background);

    box-shadow:var(--shadow-large);

    transform:translateX(105%);
    transition:transform .32s ease;
}

.cart-drawer.open{
    transform:translateX(0);
}

.cart-head{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:22px var(--space-md);

    background:var(--primary);
    color:var(--text-white);
}

.cart-head h2{
    font-family:'Poppins',sans-serif;
    font-size:21px;
    margin:0;
}

.cart-close{
    border:none;
    background:none;
    color:var(--text-white);
    font-size:34px;
    line-height:1;
    cursor:pointer;
    padding:0 4px;
}

.cart-lines{
    flex:1;
    overflow-y:auto;
    padding:var(--space-sm) var(--space-md);
}

.cart-empty{
    text-align:center;
    padding:60px 0;
    color:var(--text-light);
}

.cart-empty p{
    margin-bottom:var(--space-sm);
}

.cart-line{
    display:grid;
    grid-template-columns:70px 1fr auto;
    gap:14px;

    padding:18px 0;
    border-bottom:1px solid var(--border);
}

.cart-line-img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:12px;
}

.cart-line-name{
    font-family:'Poppins',sans-serif;
    font-weight:600;
    color:var(--primary);
}

.cart-line-variant{
    font-size:14px;
    color:var(--text-light);
    margin-bottom:10px;
}

.cart-line-right{
    text-align:right;
}

.cart-line-price{
    font-weight:700;
    color:var(--text);
}

.cart-line-remove{
    margin-top:8px;
    border:none;
    background:none;
    color:var(--text-light);
    font-size:13px;
    cursor:pointer;
    text-decoration:underline;
    padding:0;
}

.cart-line-remove:hover{
    color:#b3261e;
}

/* Quantity stepper — used in the drawer and on product pages */

.qty-control{
    display:inline-flex;
    align-items:center;
    border:1px solid var(--border);
    border-radius:10px;
    overflow:hidden;
}

.qty-btn{
    width:32px;
    height:34px;
    border:none;
    background:var(--background-light);
    color:var(--primary);
    font-size:17px;
    cursor:pointer;
    transition:background var(--transition);
}

.qty-btn:hover{
    background:var(--accent);
}

.qty-input,
.qty-input-add{
    width:52px;
    height:34px;
    border:none;
    border-left:1px solid var(--border);
    border-right:1px solid var(--border);
    text-align:center;
    font-size:15px;
    font-family:inherit;
    color:var(--text);
    -moz-appearance:textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button,
.qty-input-add::-webkit-outer-spin-button,
.qty-input-add::-webkit-inner-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.cart-foot{
    padding:var(--space-md);
    border-top:1px solid var(--border);
    background:var(--surface);
}

.cart-total-row{
    display:flex;
    justify-content:space-between;
    align-items:center;

    font-family:'Poppins',sans-serif;
    font-size:19px;

    margin-bottom:10px;
}

.cart-total-row strong{
    color:var(--primary);
    font-size:23px;
}

.cart-note{
    font-size:13px;
    color:var(--text-light);
    line-height:1.5;
    margin-bottom:var(--space-sm);
}

.cart-contact{
    display:flex;
    flex-direction:column;
    gap:6px;
    margin-bottom:var(--space-sm);
}

.cart-contact label{
    font-size:13px;
    font-weight:600;
    color:var(--text-light);
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-top:6px;
}

.cart-contact label:first-child{
    margin-top:0;
}

.cart-optional{
    text-transform:none;
    font-weight:400;
    letter-spacing:0;
}

.cart-contact input{
    width:100%;
    height:44px;
    padding:0 12px;
    border:1px solid var(--border);
    border-radius:10px;
    background:var(--background);
    font-family:inherit;
    font-size:15px;
    color:var(--text);
}

.cart-checkout{
    display:block;
    width:100%;
    text-align:center;
    border:none;
    cursor:pointer;
    font-size:17px;
}

.cart-checkout:disabled{
    opacity:.5;
    cursor:not-allowed;
}

.cart-error{
    margin-top:12px;
    padding:12px;
    border-radius:10px;
    background:#fdecea;
    color:#b3261e;
    font-size:14px;
    line-height:1.5;
}

/* ---------- Add-to-cart block on product sections ---------- */

.add-to-cart{
    margin-top:var(--space-md);
    padding:var(--space-md);
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius);
}

.add-row{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    align-items:flex-end;
}

.add-field{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.add-field label{
    font-size:13px;
    font-weight:600;
    color:var(--text-light);
    text-transform:uppercase;
    letter-spacing:.5px;
}

.variant-select{
    min-width:230px;
    height:46px;
    padding:0 12px;
    border:1px solid var(--border);
    border-radius:10px;
    background:var(--background);
    font-family:inherit;
    font-size:15px;
    color:var(--text);
    cursor:pointer;
}

.add-to-cart .qty-control{
    height:46px;
}

.add-to-cart .qty-btn{
    height:46px;
    width:38px;
}

.add-to-cart .qty-input-add{
    height:46px;
}

.add-button{
    height:46px;
    padding:0 30px;
    border:none;
    border-radius:10px;
    background:var(--primary);
    color:var(--text-white);
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:background var(--transition), transform var(--transition);
}

.add-button:hover{
    background:var(--primary-hover);
    transform:translateY(-2px);
}

.add-hint{
    margin-top:12px;
    font-size:13px;
    color:var(--text-light);
}

@media (max-width:600px){

    .cart-button{
        right:16px;
        bottom:16px;
        width:56px;
        height:56px;
        font-size:23px;
    }

    .add-row{
        flex-direction:column;
        align-items:stretch;
    }

    .variant-select,
    .add-button{
        width:100%;
    }

}

/* =========================================================
   CRAWLING MEALWORMS (shop page only)
   =========================================================
   The worms sit on a layer that spans the whole page (not
   just one screen's worth) above each section's background
   colour but below all the text and photos, so they appear
   to crawl underneath the content and scroll normally along
   with the page instead of staying pinned to the screen.

   That is what the z-index values below are doing:
     section backgrounds .... 0  (normal flow)
     worm layer ............. 1
     text, photos, buttons .. 2
     nav and announcement ... 1000+
   ========================================================= */

.worm-layer{
    position:absolute;
    top:0;
    left:0;
    width:100%;

    pointer-events:none;    /* never blocks clicks */

    z-index:1;
}

/* Lift the readable content above the worms */

.shop-page .container,
.shop-page .copyright,
.shop-page .shop-hero-content{
    position:relative;
    z-index:2;
}

/* Someone who asked for reduced motion gets no worms at all.
   worms.js also checks this, but belt and braces. */

@media (prefers-reduced-motion: reduce){

    .worm-layer{
        display:none;
    }

}
