html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

/* CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Safe font stack */
body {
    margin:0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Remove default button styles */
button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Header */
header {
    background: #1f3d2b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

header h1 {
    color: #fff;
    font-size: 22px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

nav a:hover {
    color: #a5d6a7;
}

h1, h2, h3, p {
    margin: 0;
}

/* Sections */
.section {
    padding: 60px 40px;
    text-align: center;
}

/* PRODUCTS SECTION */
.products {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* PRODUCT CARD */
.product-card {
    background: #ffffff;
    width: 360px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

/* IMAGE CONTAINER */
.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    display: block;
    padding: 20px;
}

/* TAGS */
.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e8f5e9;
    color: #1f3d2b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.tag.second {
    top: 55px;
}

/* PRODUCT INFO */
.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1f3d2b;
}

.product-info p {
    font-size: 15px;
    color: #555;
}

/* Card */
.card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

/* Forms */
form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: none;
}

/* Footer */
footer {
    background: #1f3d2b;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    .hero h2 {
        font-size: 28px;
    }
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.25s ease;
    transform: scale(1.3);
    transform-origin: center;
}

.logo:hover img {
    transform: scale(1.35);
}


/* NAVBAR */
.navbar {
    position: fixed;
    top: 25px;              /* floating distance */
    left: 50%;
    transform: translateX(-50%);
    width: 85%;

    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);

    border-radius: 50px;
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.15);
}

.navbar nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    display: inline-block;     /* important for transform */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar nav a:hover {
    color: #11aa16;
    transform: translateY(-2px) scale(1.05);
    text-shadow: 0 0 1px rgba(255,255,255,0.8);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    margin: 0;              /* important */
    padding: 0 8%;
    display: flex;
    align-items: center;
    background: url("images/hero.jpg") center/cover no-repeat;
    color: rgb(10, 198, 66);
}

.hero-top {
    font-size: 48px;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
}

.hero-brand {
    font-size: 68px;
    font-weight: 700;
    display: block;
}

/* LEFT CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.small-text {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 28px;
    opacity: 0.9;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #1f3d2b;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
}

/* RIGHT IMAGE */
.hero-image img {
    width: 450px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-image {
        margin-top: 30px;
    }
}


/* HOME ABOUT SECTION */
.home-about {
    background: #f8fbf9;
    padding: 100px 8%;
}

.home-about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.home-about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    margin: 16px 0;
    color: #111827;
}

.home-about-content p {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .home-about {
        padding: 80px 20px;
    }

    .home-about-content h2 {
        font-size: 34px;
    }
}
/* WHY SECTION */
.why-section {
    background: linear-gradient(135deg, #e8f5e9, #f1f8f4);
    padding: 120px 60px;
    text-align: center;
    margin-bottom: 0;
}

section:last-of-type {
    margin-bottom: 0;
}

/* HEADER */
.why-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.why-small {
    color: #1f3d2b;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.why-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin: 20px 0;
    color: #111827;
    line-height: 1.2;
}

.why-header p {
    color: #555;
    font-size: 17px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.why-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 45px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}
/* ICON CIRCLE */
.why-icon {
    width: 70px;
    height: 70px;
    background: #dff3e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
    transition: transform 0.4s ease;
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #111827;
}

.why-card p {
    font-size: 15px;
    color: #555;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* FLOATING SHAPES */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.shape1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
}

.shape2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}



/* CONTACT SECTION */
.contact-section {
    margin-top: 140px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 80px;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
}

/* LEFT SIDE */
.contact-left {
    flex: 0.9;
    min-width: 300px;
}

.contact-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-left p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* DISTRIBUTION BOX */
.distribution-box {
    background: #e8f5e9;
    padding: 20px 25px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.distribution-box h3 {
    margin-bottom: 10px;
    color: #1f3d2b;
}

/* CONTACT INFO */
.contact-info {
    margin-bottom: 28px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
}

.info-item:hover {
    transform: translateY(-3px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.info-item small {
    color: #777;
    font-size: 12px;
}

.info-item p {
    margin: 3px 0 0 0;
    font-weight: 500;
}

.info-item:hover .info-icon {
    transform: scale(1.1);
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
}

/* RIGHT SIDE FORM */
.contact-right {
    flex: 1.1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.contact-right form {
    display: flex;
    flex-direction: column;
}

.contact-right label {
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-right input,
.contact-right textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-family: inherit;
}

.contact-right button {
    padding: 15px;
    background: #111827;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-right button:hover {
    background: #000;
}

.contact-link {
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    transition: font-weight 0.2s ease;
}

.contact-link:visited {
    color: inherit;          /* prevents purple visited color */
}

.contact-link:hover {
    color: inherit;          /* no color change */
    text-decoration: none;
    font-weight: 500;   /* no underline */
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .contact-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        flex: none;
    }

    .contact-left h1 {
        font-size: 32px;
    }
}

.error {
    color: red;
    font-size: 13px;
    margin-top: -15px;
    margin-bottom: 15px;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.error.show-error {
    opacity: 1;
}

input.error-border,
textarea.error-border {
    border: 1px solid red;
}

/* SUCCESS POPUP */
/* TOAST SUCCESS */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: #e8f5e9;
    color: #1f3d2b;
    padding: 18px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateX(120%);
    transition: transform 0.4s ease;
    z-index: 2000;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    width: 35px;
    height: 35px;
    background: #2e7d32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* SHAKE ANIMATION */
@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.4s ease;
}

/* INPUT GROUP */
.input-group {
    position: relative;
}

.success-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #1f3d2b;
    font-weight: bold;
    opacity: 0;
    transition: 0.3s ease;
}

textarea + .success-icon {
    top: 20px;
    transform: none;
}

.success-icon.show-success {
    opacity: 1;
}

/* FOOTER */
/* GLASS FOOTER */
.footer {
    background: #aef5b3;
    color: #1a1a1a;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 70px 8% 30px;
    margin-top: 0;
    padding-top: 70px; /* keep your padding */
    display: flow-root;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-brand img {
    height: 85px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    max-width: 280px;
    opacity: 0.75;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #2d2d2d !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.footer-links ul li a::before {
    content: "\203A";
    font-size: 18px;
}

.footer-links ul li a:hover {
    transform: translateY(-4px) scale(1.05);
    color: #0f3d2e;
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
    text-align: center;
}

.footer-brand p {
    margin: 0 auto;
    text-align: center;
}
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color:#2d2d2d !important;
    margin-bottom: 14px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.contact-icon {
    font-size: 18px;
}

.footer-contact-link i {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.footer-contact-link:hover {
    transform: translateY(-4px) scale(1.05);
    color: #0f3d2e;
}

.inner-page {
    padding-top: 120px;
    background: linear-gradient(180deg, #ffffff, #edf7f1);
    min-height: 100vh;
}

.inner-page section:first-of-type {
    margin-top: 120px;
}

/* HERO TEXT REVEAL */
.reveal {
opacity: 0;
    transform: translateY(40px);
}

.reveal.animate {
    animation: revealUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes revealUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.thin { font-weight: 400; }
.bold { font-weight: 700; }

/*Loader*/

.loader {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-circle {
  width: 60px;
  height: 60px;
  border: 4px solid #e0fbe3;
  border-top: 4px solid #aef5b3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}


.vision-section {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.4)
  );
}

/* ABOUT HERO SECTION */

.about-hero {
    position: relative;
    height: 85vh;
    border-radius: 40px;
    margin: 80px auto 80px auto;
    max-width: 1400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px;
    background: url("images/about-bg.jpg") center/cover no-repeat;
}

/* Dark overlay for readability */
.about-overlay {
    position: absolute;
    inset: 0;
}

/* Content */
.about-hero-content {
    position: relative;
    color: rgb(0, 0, 0);
    max-width: 600px;
    z-index: 2;
}

.about-small {
    letter-spacing: 4px;
    font-size: 14px;
    opacity: 0.8;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.15;
    margin: 25px 0;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 520px;
}

.about-title {
    margin: 20px 0;
    line-height: 1.1;
}

/* Tags */
.about-tags {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-tags span {
    padding: 10px 20px;
    border-radius: 50px;
    background: #2e7d32;  /* dark brand green */
    color: white;
    font-size: 14px;
    font-weight: 500;
    border: none;
    box-shadow: 0 5px 15px rgba(46,125,50,0.3);
}

.about-vision {
    position: relative;
    height: 70vh;
    border-radius: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px;
    padding-bottom: 160px; /* 👈 THIS creates space before footer */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: url("images/vision.jpg") center/cover no-repeat;
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: black;
    text-align: right;
}

.vision-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 25px;
}

.vision-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}

@media (max-width: 900px) {

    .about-hero {
        height: auto;
        padding: 40px 30px;
    }

    .about-split {
        flex-direction: column;
    }

    .about-vision {
        height: auto;
        padding: 40px 30px;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-text h2,
    .vision-content h2 {
        font-size: 32px;
    }
}

.about-mission {
    position: relative;
    height: 70vh;
    border-radius: 40px;
    max-width: 1400px;
    margin: 0 auto 80px auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px;
    background: url("images/mission.jpg") center/cover no-repeat;
}

.mission-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: black;
}

.mission-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 25px;
}

.mission-content p {
     font-size: 18px;
    line-height: 1.9;
    color: #333;
}

/*about page footer*/

.about-page .footer {
    margin-top: 80px;
}

/* FEATURED PRODUCTS SECTION */

.featured-products {
    padding: 120px 8%;
    background: #ffffff;
    text-align: center;
}

.featured-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.featured-small {
    letter-spacing: 2px;
    font-size: 14px;
    color: #1f3d2b;
    font-weight: 600;
}

.featured-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 20px 0;
}

.featured-header p {
    color: #555;
}

/* GRID */

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

/* CARD */

.featured-card {
    background: white;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-card img {
     width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.featured-card:hover img {
    transform: scale(1.05);
}

.featured-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.featured-card p {
    font-size: 14px;
    color: #666;
}

.featured-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.featured-btn {
    margin-top: 50px;
}

/* PRODUCT BADGES */

.product-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}

.product-badges span {
    background: #e8f5e9;
    color: #1f3d2b;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f3d2b;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.footer-social-link i {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    background: #1f3d2b;
    color: #fff;
}

/* PREMIUM ABOUT PAGE */
.about-hero {
    position: relative;
    isolation: isolate;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(174,245,179,0.22), rgba(255,255,255,0.08));
    animation: shimmerShift 8s ease-in-out infinite;
    z-index: 1;
}

.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    z-index: 1;
    animation: floatGlow 7s ease-in-out infinite;
}

.about-glow-1 {
    width: 180px;
    height: 180px;
    background: rgba(174, 245, 179, 0.4);
    top: 12%;
    right: 8%;
}

.about-glow-2 {
    width: 120px;
    height: 120px;
    background: rgba(46, 125, 50, 0.28);
    bottom: 12%;
    left: 6%;
    animation-delay: 1.6s;
}

.about-hero-content,
.mission-content,
.vision-content {
    backdrop-filter: blur(2px);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto 80px auto;
    padding: 0 40px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 61, 43, 0.1);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(0,0,0,0.14);
}

.highlight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #1f3d2b;
}

.highlight-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

.mission-content,
.vision-content {
    background: rgba(255, 255, 255, 0.72);
    padding: 30px;
    border-radius: 24px;
}

@keyframes shimmerShift {
    0%, 100% { opacity: 0.65; transform: translateX(0); }
    50% { opacity: 0.95; transform: translateX(10px); }
}

@keyframes floatGlow {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-16px) scale(1.05); }
}

/* MOBILE NAV UPGRADE */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.12);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .navbar {
        width: 88%;
        top: 14px;
        padding: 12px 16px;
        border-radius: 20px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .navbar nav.nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        background: rgba(17, 24, 39, 0.95);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 16px;
        padding: 10px 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.25);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.25s ease;
    }

    .navbar nav.nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .navbar nav.nav-links a {
        margin: 0;
        padding: 12px 4px;
        border-bottom: 1px solid rgba(255,255,255,0.22);
        text-align: center;
    }

    .navbar nav.nav-links a:last-child {
        border-bottom: none;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* MOBILE NAV REWORK (Desktop unchanged) */
.menu-close {
    display: none;
}

@media (min-width: 901px) {
    .navbar nav.nav-links {
        display: block;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
    }
}

@media (max-width: 900px) {
    .navbar {
        width: 88%;
        top: 14px;
        padding: 12px 16px;
        border-radius: 20px;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .navbar nav.nav-links {
        position: fixed;
        top: 12px;
        right: 12px;
        bottom: 12px;
        width: min(80vw, 360px);
        max-width: 80vw;
        display: flex;
        flex-direction: column;
        gap: 0;
        background: rgba(17, 24, 39, 0.97);
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 26px;
        padding: 18px 18px 22px;
        box-shadow: 0 24px 50px rgba(0,0,0,0.35);
        transform: translateX(110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease, visibility 0.25s ease;
        z-index: 1200;
    }

    .navbar nav.nav-links.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: flex-end;
        width: 36px;
        height: 36px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.25);
        background: rgba(255,255,255,0.08);
        color: #fff;
        font-size: 22px;
        line-height: 1;
        margin-bottom: 6px;
    }

    .navbar nav.nav-links a {
        margin: 0;
        padding: 14px 8px;
        border-bottom: 1px solid rgba(255,255,255,0.22);
        text-align: center;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .navbar nav.nav-links.open a {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar nav.nav-links.open a:nth-of-type(1) { transition-delay: 0.08s; }
    .navbar nav.nav-links.open a:nth-of-type(2) { transition-delay: 0.13s; }
    .navbar nav.nav-links.open a:nth-of-type(3) { transition-delay: 0.18s; }
    .navbar nav.nav-links.open a:nth-of-type(4) { transition-delay: 0.23s; }

    .navbar nav.nav-links a:last-child {
        border-bottom: none;
    }
}

/* About mission/vision text-only (remove white cards) */
.mission-content,
.vision-content {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

/* MOBILE NAV FINAL (Glass Expand) */
@media (max-width: 900px) {
    .navbar {
        width: 88%;
        top: 14px;
        padding: 12px 16px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0;
    }

    .navbar .logo {
        order: 1;
        z-index: 2;
    }

    .menu-toggle {
        order: 2;
        display: inline-flex;
        margin-left: auto;
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.35);
        outline: none;
        box-shadow: none;
        -webkit-tap-highlight-color: transparent;
        appearance: none;
    }

    .menu-toggle:focus,
    .menu-toggle:active,
    .menu-toggle:focus-visible {
        outline: none;
        box-shadow: none;
        background: rgba(255,255,255,0.12);
    }

    .navbar nav.nav-links {
        order: 3;
        width: 100%;
        position: static;
        margin-top: 10px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0 12px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255,255,255,0.15);
        transform: translateY(-8px);
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, padding 0.25s ease;
        pointer-events: none;
    }

    .navbar nav.nav-links.open {
        max-height: 320px;
        opacity: 1;
        transform: translateY(0);
        padding: 8px 12px;
        pointer-events: auto;
    }

    .navbar nav.nav-links a {
        display: block;
        margin: 0;
        padding: 12px 4px;
        border-bottom: 1px solid rgba(255,255,255,0.22);
        text-align: center;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .navbar nav.nav-links.open a {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar nav.nav-links.open a:nth-of-type(1) { transition-delay: 0.06s; }
    .navbar nav.nav-links.open a:nth-of-type(2) { transition-delay: 0.11s; }
    .navbar nav.nav-links.open a:nth-of-type(3) { transition-delay: 0.16s; }
    .navbar nav.nav-links.open a:nth-of-type(4) { transition-delay: 0.21s; }

    .navbar nav.nav-links a:last-child {
        border-bottom: none;
    }
}

/* MOBILE NAV ALIGNMENT FIX */
@media (max-width: 900px) {
    header.navbar {
        flex-direction: row !important;
        text-align: left !important;
        align-items: center;
        justify-content: space-between;
    }

    .navbar .logo {
        margin-right: auto;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
    }

    .navbar .logo a {
        display: inline-flex;
        align-items: center;
    }

    .navbar .logo img {
        transform-origin: left center;
    }
}

/* ABOUT MOBILE IMAGE LAYOUT FIX */
@media (max-width: 900px) {
    .about-hero,
    .about-mission,
    .about-vision {
        width: calc(100% - 32px);
        margin: 24px auto;
        border-radius: 24px;
        min-height: 420px;
        height: auto;
        padding: 34px 24px;
        background-size: cover;
        background-position: center center;
    }

    .about-vision {
        justify-content: flex-start;
    }

    .vision-content {
        text-align: left;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .mission-content h2,
    .vision-content h2 {
        font-size: 34px;
    }
}

/* REMOVE GREEN ROUND VISUAL EFFECT ON ABOUT */
.about-glow,
.about-glow-1,
.about-glow-2 {
    display: none !important;
}

/* FINAL NAV READABILITY OVERRIDE */
.navbar {
    background: rgba(82, 82, 82, 0.55) !important;
}

@media (max-width: 900px) {
    .navbar nav.nav-links {
        background: rgba(82, 82, 82, 0.45) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
    }
}

/* HOME CTA OUTLINE STYLE */
.btn-home-outline {
    border: 2px solid #2e7d32;
    background: #ffffff;
    color: #1f3d2b;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}

.btn-home-outline:hover {
    background: #f8fff8;
    color: #1f6b24;
}

.hero .btn-home-outline {
    animation: heroButtonPop 0.85s cubic-bezier(0.2, 0.9, 0.2, 1) 0.35s both;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hero .btn-home-outline:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 28px rgba(31, 61, 43, 0.18), 0 0 0 3px rgba(46, 125, 50, 0.12);
}

@keyframes heroButtonPop {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(0.9);
    }
    65% {
        opacity: 1;
        transform: translateY(-4px) scale(1.04);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* PREMIUM PRODUCT IMAGE TREATMENT (HOME + PRODUCTS) */
.product-image,
.featured-media {
    position: relative;
    border-radius: 22px 22px 0 0;
    overflow: hidden;
    background: linear-gradient(145deg, #f3f8f4, #dcefe0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 14px 28px rgba(17, 24, 39, 0.12);
}

.product-image img,
.featured-media img {
    width: 100%;
    height: 320px;
    max-height: none;
    object-fit: cover;
    object-position: center;
    padding: 0;
    margin: 0;
    display: block;
    transition: transform 0.45s ease;
}

.product-card:hover .product-image img,
 .featured-card:hover .product-image img {
    transform: scale(1.05);
}

.featured-card .product-image {
    margin-bottom: 16px;
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.product-badges span,
.tag {
    background: rgba(15, 61, 46, 0.82);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.tag {
    top: 12px;
    left: 12px;
}

.tag.second {
    top: 50px;
}

.featured-card img {
    margin-bottom: 0;
}

/* HOME PRODUCT CARDS = PRODUCTS PAGE (FINAL MATCH) */
 .featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 360px));
    gap: 40px;
    justify-content: center;
    max-width: 100%;
}

.products {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 360px));
    gap: 40px;
    justify-content: center;
}

.featured-card,
.product-card {
    width: 100%;
    max-width: 360px;
}

.featured-card {
    padding: 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.featured-card .product-image {
    margin-bottom: 0;
}

.featured-card .product-info {
    padding: 25px;
}

.featured-card .product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1f3d2b;
}

.featured-card .product-info p {
    font-size: 15px;
    color: #555;
}

/* PRODUCTS PAGE HERO */
.products-hero {
    position: relative;
    max-width: 1400px;
    margin: 30px auto 40px auto;
    padding: 90px 60px;
    border-radius: 34px;
    overflow: hidden;
    background: url("images/product-bg.png") center/cover no-repeat;
}

.products-hero:hover,
.products-hero:focus-within {
    transform: none;
    filter: none;
}

 .products-hero-overlay {
    display: none;
}

.products-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    color: #111111;
    text-align: center;
}

.products-small {
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    opacity: 1;
    color: #111111;
}

.products-hero-content h1 {
    margin: 14px 0 20px;
    font-family: 'Playfair Display', serif;
    font-size: 62px;
    line-height: 1.08;
}

 .products-hero-content p {
    font-size: 18px;
    line-height: 1.85;
    max-width: 620px;
    margin: 0 auto;
    color: #111111;
}

@media (max-width: 900px) {
    .products-hero {
        width: calc(100% - 32px);
        margin: 24px auto 28px auto;
        padding: 58px 24px;
        border-radius: 22px;
    }

    .products-hero-content h1 {
        font-size: 40px;
    }

    .products-hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* WHY OUR SNACKS ARE DIFFERENT */
.products-diff {
    max-width: 1450px;
    margin: 110px auto 36px auto;
    padding: 0 16px;
}

.products-diff-header {
    text-align: center;
    margin-bottom: 28px;
}

.products-diff-header span {
    letter-spacing: 1px;
    font-size: 52px;
    font-weight: 700;
    color: #1f3d2b;
}

.products-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 22px;
}

.products-diff-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 61, 43, 0.12);
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.products-diff-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #1f3d2b;
    margin-bottom: 12px;
}

.products-diff-item p {
    color: #55606f;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .products-diff {
        width: calc(100% - 32px);
        margin: 40px auto 24px auto;
        padding: 0;
    }

    .products-diff-grid {
        grid-template-columns: 1fr;
    }

    .products-diff-item h3 {
        font-size: 34px;
    }
}
.products-diff-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 36px rgba(0,0,0,0.12);
}

.products-diff-header.fade-in.show {
    animation: productsDiffFloat 0.9s ease both;
}

.products-diff-item.fade-in.show {
    animation: productsDiffFloat 0.9s ease both;
}

.products-diff-item.fade-in.show:nth-child(1) { animation-delay: 0.06s; }
.products-diff-item.fade-in.show:nth-child(2) { animation-delay: 0.14s; }
.products-diff-item.fade-in.show:nth-child(3) { animation-delay: 0.22s; }

@keyframes productsDiffFloat {
    0% { opacity: 0; transform: translateY(26px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* SMOOTH PRODUCT CARD FADE */
.product-card.fade-in,
.featured-card.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.product-card.fade-in.show,
.featured-card.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .products,
    .featured-grid {
        grid-template-columns: 1fr;
    }
}








