* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY  */
body {
    font-family: 'Poppins', serif;
    color: #333;
    background: #f3fcf7;
    line-height: 1.5;
}

/* HEADER / NAV */
header {
    padding: 15px 20px;
    background-color: #f3fcf7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.logo {
    color: #06c167;
    font-weight: 700;
    font-size: 3rem;

}

/*  Default (Mobile)  */
.navbar .menu-btn {
    display: block;
    /* hamburger visible */
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    left: 80px;
}

.nav-links {
    display: none;
    /* hide links on mobile */
}

.menu-btn {
    font-size: 2rem;
    padding: 4px 15px;
    color: #06c167;
    border: 4px solid #06c167;
    border-radius: 5px;
    background: none;
    cursor: pointer;
}

.menu-btn:hover {
    background-color: #06c167;
    color: #fff;
    transition: 0.3s;
}

/* HERO SECTION */

.hero {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.hero h2 {
    font-size: 5rem;
    margin-bottom: 15px;
    color: #222;
}

.hero p {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 60px;
}

.btn-primary {
    background-color: #00b050;
    height: 5rem;
    width: 90%;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 600px;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #00923f;
}

.hero figure {
    margin-top: 30px;
    position: relative;
    width: 90%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    clip-path: polygon(0 0, 100% 0%, 100% 93%, 0% 100%);
}

.hero .Box-1,
.hero .Box-2,
.hero .Box-3 {
    position: absolute;

    border-radius: 15px;
    padding: 15px 20px;
}

.hero .Box-1 {
    bottom: 55px;
    right: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    height: 10%;
    width: auto;
    padding: 12px 30px;
    gap: 12px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #00b050;
}

.hero .Box-2 {
    bottom: -10px;
    right: 45px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    height: 10%;
    width: auto;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.hero .Box-2 img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    left: -10px;
}

.hero .Box-3 {
    bottom: -55px;
    right: -10px;
}

.brands {
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.brands .logo {
    margin-bottom: 10px;
    text-align: center;
    width: 8rem;
    margin-right: 50px;
    display: inline-block;
}

.brands img {
    opacity: 0.8;
    transition: 0.3s;
}

.brands img:hover {
    opacity: 1;
}

/*  FEATURE CARDS  */
.features {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.features .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.feature-card {
    flex: 1 1 calc(50% - 20px);
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8fdf9;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    background-color: #e9fbf0;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
}

/* OUR BENEFITS */
.our-benefits .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    position: relative;
}

.benefits__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin-bottom: 25px;
}

.benefits__image {
    width: 100%;
    display: block;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.benefits__pattern {
    position: absolute;
    top: 8%;
    left: -8%;
    width: 118%;
    max-width: 390px;
    height: 96%;
    background-color: #e6dfdf;

    z-index: 1;
    opacity: 1;
}

.benefits__content {
    margin-top: 50px;
    text-align: center;
    max-width: 500px;
}

.benefits__subtitle {
    color: #000804;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefits__title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
    padding-left: 5px;
    padding-right: 5px;
}

.benefits__list {
    list-style: none;
    margin-top: 10px;
}

.benefits__list li {
    position: relative;
    margin-left: 15px;
    margin-bottom: 15px;
    padding-left: 80px;
    text-align: left;
    font-size: 20px;
}

.benefits__list li::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-image: url('Icon\ awesome-check.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* OUR STARS SECTION */
.our-stars .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    position: relative;
}

.stars__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin-bottom: 25px;
}

.stars__image {
    width: 100%;
    display: block;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.stars__pattern {
    position: absolute;
    top: 8%;
    left: -8%;
    width: 118%;
    max-width: 390px;
    height: 96%;
    background-color: #e6dfdf;

    z-index: 1;
    opacity: 1;
}

.stars__content {
    margin-top: 50px;
    text-align: center;
    max-width: 500px;
}

.stars__subtitle {
    color: #000804;
    font-weight: 600;
    margin-bottom: 10px;
}

.stars__title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
    padding-left: 15px;
    padding-right: 15px;
}

.stars__stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.stars__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stars__item h3 {
    color: #00b050;
    font-size: 3rem;
}

.stars__label {
    color: #666;
    font-size: 14px;
}

.stars__cta {
    background-color: #00b050;
    height: 5rem;
    width: 90%;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 5rem;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 600px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 50px;
}

.stars__cta:hover {
    background-color: #00923f;
    transform: translateY(-2px);
}

/* OUR FEATURES SECTION */
.our-features {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.our-features .container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-image: linear-gradient(to left, #f1f4f5, #f9f9f9);
}

.our-features__content {
    text-align: center;
    margin-bottom: 40px;
}

.our-features__subtitle {
    color: #4caf50;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.our-features__title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.food-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.food-card img {
    width: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
    border-radius: 10px 10px 0 0;
}

.food-card .content {
    background-color: #f0f5e8;
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    border: 5px solid #a5d6a7;
    border-radius: 0 0 10px 10px;

    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.food-card .content:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 15;
}

.food-card .content h3 {
    font-size: 50px;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
}

.food-card .content p {
    font-size: 25px;
    color: #777;
    margin-bottom: 40px;
}

.food-card .content .btn {
    display: inline-block;
    align-self: flex-start;
    padding: 10px 15px;

    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    background-color: #ead9d9;
    border-radius: 5px;
    transition: color 0.3s;
    margin-bottom: 0;
}

.food-card .content .btn:hover {
    color: #388e3c;
}

.food-card:last-child {
    margin-bottom: 0;
}

/* PRODUCTS SECTION */
.products {
    padding: 30px 20px;
    text-align: center;
}

.products .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.our-products__subtitle {
    color: #000804;
    font-weight: 600;
    margin-bottom: 10px;
}

.our-products__title {
    font-size: 2.5rem;

    line-height: 1.2;
    padding-left: 15px;
    padding-right: 15px;

    margin-bottom: 80px;
}

.product-card {
    background: #f9f9f9;
    padding: 40px 80px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: #a0ada5 2px solid;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: #00923f 2px solid;
}

.product-card .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #00b050;
    margin-bottom: 10px;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.product-card .price {
    color: #00b050;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 5px;
}

.new-price {
    font-weight: bold;
}

.product-card .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #00b050;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-card .btn:hover {
    background-color: #009141;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 176, 80, 0.3);
}

/* CTA SECTION */
.cta {
    background: url('Image-07.png') center/cover no-repeat;
    padding: 60px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    padding: 50px;
}

/* FOOTER */
.footer {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.footer-logo {
    color: #00b050;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-container p {
    color: #555;
    font-size: 20px;
    margin-bottom: 20px;
    padding: 20px 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #fff;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Facebook */
.social-icons a:hover .fa-facebook-f {
    color: #1877f2;
}

/* Instagram */
.social-icons a:hover .fa-instagram {
    color: #ea9aa8;
}

/* Twitter */
.social-icons a:hover .fa-twitter {
    color: #1da1f2;
}

.footer-links {
    margin-top: 50px;
}

.footer-links h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #00b050;
}

.footer-subscribe form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-subscribe input {
    background-color: #e5f1ea;
    height: 4rem;
    width: 90%;
    color: #fff;
    border: none;

    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 600px;

    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}

.footer-subscribe input:hover {
    background-color: #ffffff;
}

.footer-subscribe button {
    background-color: #00b050;
    height: 4rem;
    width: 90%;
    color: #fff;
    border: none;

    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 600px;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

.footer-subscribe button:hover {
    background-color: #00923f;
}

.lower-footer {
    margin-top: 30px;
    font-size: 13px;
    color: #777;
}

/* Tablet and Desktop Styles */

@media screen and (min-width: 768px) {

    /* --- HEADER / NAV --- */
    header {
        padding: 18px 50px;
    }

    .navbar .menu-btn {
        display: none;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 40px;
        margin-right: 20px;
    }

    .nav-links li a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        font-size: 1.1rem;
        transition: color 0.3s;
    }

    .nav-links li a:hover {
        color: #06c167;
    }

    /* HERO SECTION */
    .hero {
        padding: 0px 50px 0px 50px;
    }

    .hero main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        height: 34rem;
        margin: 0 auto;
        text-align: left;
        gap: 200px;
    }

    .hero-content {
        flex: 1;
        max-width: 50%;
        padding-left: 20px;
    }

    .hero h2 {
        font-size: 5rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        color: #666;
    }

    .btn-primary {
        max-width: 250px;
        width: 100%;
        height: 55px;
        font-size: 1.1rem;
        padding: 10px 20px;
        margin-bottom: 0;
    }

    .hero figure {
        flex: 1;
        max-width: 34%;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        position: relative;
        z-index: 1;
        top: 40px;
    }

    .hero img {
        max-width: 100%;
    }

    .hero .Box-1 {
        bottom: 300px;
        right: 200px;
        padding: 15px 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        height: auto;
        width: 280px;
    }

    .hero .Box-2 {
        bottom: 340px;
        left: 250px;
        padding: 6px 7px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        height: auto;
        width: 280px;
    }

    .hero .Box-2 h3 {
        font-size: 16px;
    }

    .hero .Box-2 img {
        left: 0;
        width: 45px;
        height: 45px;
    }

    .hero .Box-3 {
        bottom: 0px;
        left: 200px;
    }

    .brands {
        display: flex;
        max-width: 1200px;
        margin: 0px auto;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
        background-color: #ffffff;
    }

    .brands .logo {
        margin-bottom: 0;
        margin-right: 0;
        width: auto;
    }

    .brands img {
        width: 100px;
    }

    /* FEATURE CARDS */
    .features {
        padding: 80px 40px;
    }

    .features .container {
        max-width: 1200px;
        flex-wrap: nowrap;
        gap: 30px;
    }

    .feature-card {
        flex: 1;
        max-width: 280px;
        padding: 40px 20px;
        display: flex;
        flex-direction: row;
        gap: 20px;
        height: 150px;
        text-align: center;
    }

    .feature-card .icon img {
        width: 50px;
        height: 50px;
    }

    /*  OUR BENEFITS */
    .our-benefits .container {
        flex-direction: row;
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 40px;
        gap: 80px;
        align-items: flex-start;
        text-align: left;
        background-color: #fff;
    }

    .benefits__image-wrapper {
        flex: 1;
        max-width: 500px;
        margin-bottom: 0;
    }

    .benefits__image {
        max-width: 100%;
        width: 500px;
        height: 500px;
    }

    .benefits__pattern {
        top: 10%;
        left: -5%;
        width: 120%;
        max-width: 550px;
        height: 100%;
    }

    .benefits__content {
        flex: 1;
        margin-top: 120px;
        max-width: 50%;
        padding: 0;
        text-align: left;
    }

    .benefits__title {
        font-size: 3.8rem;
        margin-bottom: 60px;

        padding-left: 0;
        padding-right: 0;
    }

    .benefits__list {
        margin-top: 20px;
    }

    .benefits__list li {
        font-size: 1.1rem;
        padding-left: 45px;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .benefits__list li::before {
        left: 0;
        width: 20px;
        height: 20px;
    }

    /*  OUR STARS SECTION */
    .our-stars {
        background-color: #fff;
    }

    .our-stars .container {
        display: flex;
        flex-direction: row;
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 40px;
        gap: 80px;
        align-items: center;
        text-align: left;
    }

    .star-content {
        flex: 1;
        max-width: 50%;
        padding: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
    }

    .stars__content {
        margin-top: 0;
        padding: 0;
        text-align: left;
    }

    .stars__title {
        font-size: 2.8rem;
        padding-left: 0;
        padding-right: 0;
    }

    .stars__stats {
        display: flex;
        flex-direction: row;
        gap: 50px;
        margin-top: 50px;
        text-align: left;
    }

    .stars__item {
        align-items: flex-start;
    }

    .stars__item h3 {
        font-size: 3.5rem;
    }

    .stars__label {
        color: #666;
        font-size: 1rem;
    }

    .stars__cta {
        max-width: 250px;
        height: 55px;
        font-size: 1.1rem;
        line-height: 55px;
        margin-top: 40px;
        align-self: flex-start;
    }

    .stars__image-wrapper {
        order: 2;
        flex: 1;
        max-width: 500px;
        margin-bottom: 0;
    }

    .stars__image {
        max-width: 100%;
        width: 500px;
        height: 500px;
    }

    .stars__pattern {
        top: 10%;
        left: -5%;
        width: 120%;
        max-width: 550px;
        height: 100%;
    }

    /* OUR FEATURES SECTION */

    .our-features {
        padding: 100px 40px;
        background-color: #fff;
    }

    .our-features .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
    }

    .our-features__content {
        width: 100%;
        margin-bottom: 60px;
        text-align: center;
        background-color: #fff;
    }

    .our-features__title {
        font-size: 3rem;
    }

    .food-card {
        width: calc(50%);
        max-width: none;
        margin-bottom: 0;
        box-shadow: none;
        border-radius: 0;
        overflow: hidden;
        display: flex;
        min-height: 350px;
    }

    .food-card:nth-child(2),
    .food-card:nth-child(3) {
        flex-direction: row;
    }

    .food-card:nth-child(4),
    .food-card:nth-child(5) {
        flex-direction: row-reverse;
    }

    .food-card img {
        width: 50%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .food-card .content {
        width: 50%;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-grow: 1;
    }

    .food-card:nth-child(2) .content,
    .food-card:nth-child(5) .content {
        background-color: #f1f4f5;
    }

    .food-card:nth-child(3) .content,
    .food-card:nth-child(4) .content {
        background-color: #e5f1ea;
    }

    .food-card .content h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .food-card .content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    /*  PRODUCTS SECTION  */

    .products {
        padding: 80px 40px;
    }

    .our-products__content {
        text-align: left;
    }

    .our-products__subtitle {
        margin-left: 15px;
    }

    .our-products__title {
        margin-bottom: 0px;
        font-size: 3.5rem;
    }

    .products .container {
        flex-wrap: nowrap;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }

    .products_group {
        display: flex;
        justify-content: space-around;
        gap: 20px;
    }

    .product-card {
        flex: 1;
        max-width: 250px;
        padding: 20px;
        margin-bottom: 0;
        background: #fff;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .product-card img {
        max-width: 100%;
        height: auto;
    }

    .product-card .price {
        font-size: 1.2rem;
    }

    .product-card .btn {
        width: 100%;
    }

    /*  CTA SECTION */
    .cta {
        padding: 100px 20px;
        margin: 150px;
        border: #00923f 5px solid;
    }

    .cta-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .cta h2 {
        font-size: 3rem;
        padding: 0;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .cta .btn-primary {
        margin-top: 10px;
    }

    /* FOOTER */
    .footer {
        padding: 80px 40px;
    }

    .footer-container {
        flex-direction: row;
        max-width: 1200px;
        margin: 0 auto 50px;
        text-align: left;
        gap: 50px;
        justify-content: space-between;
    }

    .footer-about {
        flex: 2;
        max-width: 300px;
    }

    .footer-logo {
        margin-top: 0;
        text-align: left;
    }

    .footer-container p {
        padding: 0;
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-links {
        flex: 1;
        margin-top: 0;
    }

    .footer-links h3 {
        text-align: left;
        margin-bottom: 20px;
    }

    .footer-links ul li a {
        display: block;
    }

    .footer-subscribe {
        flex: 2;
        max-width: 350px;
        text-align: left;
    }

    .footer-subscribe form {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: stretch;
    }

    .footer-subscribe input {
        width: 100%;
        max-width: none;
        height: 50px;
        font-size: 1rem;
        text-align: left;
        padding-left: 15px;
        border-radius: 5px 0 0 5px;
        color: #333;
    }

    .footer-subscribe input:hover {
        background-color: #e5f1ea;
    }

    .footer-subscribe button {
        width: 150px;
        max-width: none;
        height: 50px;
        font-size: 1rem;
        margin-bottom: 0;
        border-radius: 0 5px 5px 0;
    }

    .lower-footer {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
}


/* ═══════════════════════════════════════════
   PREMIUM OVERRIDES & IMPROVEMENTS
═══════════════════════════════════════════ */

/* Global */
body {
    font-family: 'Inter', 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* ── Mobile Nav (Checkbox Hack) ── */
.menu-toggle-checkbox {
    display: none;
}

.navbar-mobile {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.nav-menu {
    display: none;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: rgba(243, 252, 247, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(6, 193, 103, 0.15);
    box-shadow: 0 10px 40px rgba(6, 193, 103, 0.08);
    z-index: 999;
}

.menu-toggle-checkbox:checked~.nav-menu {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
}

.nav-links {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    list-style: none;
}

.nav-links li {
    text-align: center;
    margin: 12px 0;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #06c167;
}

/* ── Header — Logo LEFT, Nav RIGHT ── */
header {
    background-color: rgba(243, 252, 247, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    min-height: 70px;
    border-bottom: 1px solid rgba(6, 193, 103, 0.12);
    box-shadow: 0 2px 20px rgba(6, 193, 103, 0.06);
}

/* ── Logo ── */
.logo {
    background: linear-gradient(135deg, #06c167 0%, #00923f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    font-size: 2rem;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.15);
}

/* ── Hero ── */
.hero h2 {
    background: linear-gradient(135deg, #111 0%, #333 40%, #06c167 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero p {
    color: #6b7280;
    line-height: 1.75;
}

/* Pulsing CTA Button */
.btn-primary {
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    animation: subtlePulse 2.5s ease-in-out infinite;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

@keyframes subtlePulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(6, 193, 103, 0.25);
    }

    50% {
        box-shadow: 0 6px 30px rgba(6, 193, 103, 0.5);
    }
}

/* ── Section Subtitle Pill Badges ── */
.benefits__subtitle,
.stars__subtitle,
.our-features__subtitle,
.our-products__subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #e6fbf0, #d0f5e4);
    color: #06c167;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(6, 193, 103, 0.25);
    margin-bottom: 14px;
}

/* ── Feature Cards ── */
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(6, 193, 103, 0.10);
    border-color: rgba(6, 193, 103, 0.2);
}

.feature-card .icon {
    transition: all 0.3s ease;
}

.feature-card:hover .icon {
    background-color: #c8f5df;
    box-shadow: 0 0 0 6px rgba(6, 193, 103, 0.12);
}

/* ── Benefits & Stars ── */
.benefits__pattern,
.stars__pattern {
    background: linear-gradient(135deg, #d0f5e4, #b8eed4);
    border-radius: 12px;
}

.benefits__title,
.stars__title {
    font-weight: 800;
    color: #111;
}

.benefits__list li {
    color: #374151;
    font-weight: 500;
}

/* ── Product Cards ── */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 16px !important;
    background: #ffffff;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: transparent !important;
    box-shadow: 0 24px 48px rgba(6, 193, 103, 0.13);
}

.product-card h3 {
    font-weight: 700;
    color: #111;
}

.product-card .btn {
    border-radius: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, #06c167, #00923f);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 193, 103, 0.35);
}

/* ── Food Cards ── */
.food-card {
    transition: all 0.4s ease;
    overflow: hidden;
}

.food-card .content {
    transition: all 0.3s ease;
}

.food-card .content .btn {
    background: linear-gradient(135deg, #e6fbf0, #d0f5e4);
    color: #06c167;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid rgba(6, 193, 103, 0.2);
    transition: all 0.3s ease;
}

.food-card .content .btn:hover {
    background: linear-gradient(135deg, #06c167, #00923f);
    color: white;
    box-shadow: 0 8px 20px rgba(6, 193, 103, 0.35);
    transform: translateY(-2px);
}

/* ── Stars CTA ── */
.stars__cta {
    background: linear-gradient(135deg, #06c167, #00923f);
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(6, 193, 103, 0.25);
}

.stars__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(6, 193, 103, 0.45);
}

/* ── Footer ── */
.footer-logo {
    background: linear-gradient(135deg, #06c167 0%, #00923f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 800;
}

.social-icons a {
    background: #f3fcf7;
    border: 1px solid rgba(6, 193, 103, 0.15);
    color: #555;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #06c167, #00923f);
    color: #fff !important;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(6, 193, 103, 0.3);
}

.social-icons a:hover i {
    color: #fff !important;
}

/* ── Animations ── */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════ */

/* ── Small Phones (≤ 480px) ── */
@media screen and (max-width: 480px) {
    header {
        padding: 0 16px;
        min-height: 64px;
    }

    .logo {
        font-size: 1.7rem;
    }

    .hero {
        padding: 30px 16px;
    }

    .hero h2 {
        font-size: 2.6rem;
        line-height: 1.15;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .hero figure {
        width: 100%;
    }

    .hero img {
        max-width: 100%;
    }

    .btn-primary {
        width: 100%;
        max-width: 100%;
        font-size: 1rem;
        height: 52px;
    }

    .hero .Box-1,
    .hero .Box-2,
    .hero .Box-3 {
        display: none;
    }

    .brands {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 20px 16px;
    }

    .brands .logo {
        width: 70px;
        margin-right: 0;
        -webkit-text-fill-color: unset;
        background: none;
    }

    .brands img {
        width: 70px;
    }

    .features {
        padding: 40px 16px;
    }

    .features .container {
        max-width: 100%;
        gap: 14px;
    }

    .feature-card {
        flex: 1 1 calc(50% - 14px);
        max-width: none;
        padding: 20px 14px;
        flex-direction: column;
        gap: 10px;
    }

    .feature-card h3 {
        font-size: 0.9rem;
    }

    .feature-card p {
        font-size: 0.78rem;
    }

    .our-benefits .container {
        padding: 40px 16px;
    }

    .benefits__image-wrapper {
        max-width: 100%;
    }

    .benefits__title {
        font-size: 2rem;
    }

    .benefits__list li {
        font-size: 0.95rem;
        padding-left: 40px;
    }

    .our-stars .container {
        padding: 40px 16px;
    }

    .stars__title {
        font-size: 2rem;
    }

    .stars__stats {
        gap: 24px;
    }

    .stars__item h3 {
        font-size: 2.2rem;
    }

    .stars__cta {
        width: 100%;
        max-width: 100%;
        font-size: 1rem;
        height: 52px;
        line-height: 52px;
    }

    .our-features {
        padding: 40px 16px;
    }

    .our-features .container {
        max-width: 100%;
        padding: 0;
    }

    .our-features__title {
        font-size: 1.8rem;
    }

    .food-card {
        border-radius: 10px;
        margin-bottom: 16px;
    }

    .food-card .content h3 {
        font-size: 1.5rem;
    }

    .food-card .content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .products {
        padding: 40px 16px;
    }

    .products .container {
        max-width: 100%;
    }

    .our-products__title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0;
    }

    .products_group {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .product-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .cta {
        padding: 50px 20px;
        margin: 0;
    }

    .cta h2 {
        font-size: 1.8rem;
        padding: 0;
        margin-bottom: 20px;
    }

    .footer {
        padding: 40px 16px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-logo {
        font-size: 1.8rem;
    }

    .footer-links {
        margin-top: 0;
    }

    .footer-subscribe form {
        flex-direction: column;
    }

    .footer-subscribe input,
    .footer-subscribe button {
        width: 100%;
        max-width: 100%;
    }
}

/* ── Mid Phones (481px – 767px) ── */
@media screen and (min-width: 481px) and (max-width: 767px) {
    header {
        padding: 0 24px;
        min-height: 70px;
    }

    .logo {
        font-size: 2rem;
    }

    .hero {
        padding: 40px 24px;
    }

    .hero h2 {
        font-size: 3.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .hero .Box-1,
    .hero .Box-2,
    .hero .Box-3 {
        display: none;
    }

    .brands {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 20px 24px;
        flex-wrap: wrap;
    }

    .brands .logo {
        width: 80px;
        margin-right: 0;
    }

    .brands img {
        width: 80px;
    }

    .features {
        padding: 50px 24px;
    }

    .features .container {
        max-width: 100%;
        flex-wrap: wrap;
        gap: 16px;
    }

    .feature-card {
        flex: 1 1 calc(50% - 16px);
        max-width: none;
        flex-direction: column;
        padding: 24px 16px;
    }

    .our-benefits .container,
    .our-stars .container {
        padding: 50px 24px;
    }

    .benefits__title,
    .stars__title {
        font-size: 2.4rem;
    }

    .our-features {
        padding: 50px 24px;
    }

    .our-features .container {
        max-width: 100%;
        padding: 0;
    }

    .products {
        padding: 50px 24px;
    }

    .products .container {
        max-width: 100%;
    }

    .products_group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .product-card {
        max-width: 100%;
        padding: 20px;
    }

    .our-products__title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .cta {
        margin: 0;
        padding: 60px 24px;
    }

    .cta h2 {
        font-size: 2rem;
        padding: 0;
        margin-bottom: 20px;
    }

    .footer {
        padding: 50px 24px;
    }
}

/* ── Tablet (768px – 1024px) ── */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    header {
        padding: 0 32px;
    }

    .logo {
        font-size: 2.2rem;
    }

    .nav-links {
        gap: 22px;
    }

    .nav-links li a {
        font-size: 0.95rem;
    }

    .hero {
        padding: 0 32px;
    }

    .hero h2 {
        font-size: 3.5rem;
    }

    .hero main {
        gap: 60px !important;
        height: auto !important;
        padding: 50px 0;
    }

    .features .container {
        max-width: 100%;
        gap: 20px;
    }

    .feature-card {
        max-width: none;
        flex: 1;
        padding: 28px 16px;
        flex-direction: column;
    }

    .our-benefits .container,
    .our-stars .container {
        padding: 60px 32px;
        gap: 50px;
    }

    .benefits__image,
    .stars__image {
        width: 380px;
        height: 380px;
    }

    .benefits__title {
        font-size: 2.8rem;
        margin-bottom: 30px;
    }

    .stars__title {
        font-size: 2.2rem;
    }

    .our-features {
        padding: 60px 32px;
    }

    .our-features .container {
        max-width: 100%;
    }

    .products {
        padding: 60px 32px;
    }

    .products .container {
        max-width: 100%;
    }

    .products_group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-card {
        flex: 1 1 calc(50% - 20px);
        max-width: 280px;
    }

    .cta {
        margin: 40px auto !important;
        max-width: 90% !important;
        border-radius: 20px !important;
        border: none !important;
        overflow: hidden;
    }

    .cta h2 {
        font-size: 2.2rem;
        padding: 0;
    }

    .footer {
        padding: 60px 32px;
    }

    .footer-container {
        flex-wrap: wrap;
        gap: 30px;
    }
}

/* ── Desktop (> 1024px) ── */
@media screen and (min-width: 1025px) {
    header {
        padding: 0 60px;
    }

    .logo {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 36px;
    }

    .nav-links li a {
        font-size: 1rem;
    }

    .features .container {
        max-width: 1200px;
    }

    .feature-card {
        flex-direction: row;
        text-align: left;
    }

    .cta {
        margin: 80px auto !important;
        max-width: 960px !important;
        border-radius: 24px !important;
        border: none !important;
        overflow: hidden;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    }
}

/* ── 768px+ — Desktop nav ── */
@media screen and (min-width: 768px) {
    .navbar-mobile {
        display: none;
    }

    .nav-menu {
        display: block !important;
        position: static;
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border: none;
        width: auto;
        top: auto;
    }

    .nav-links {
        display: flex !important;
        flex-direction: row;
        padding: 0;
        gap: 28px;
        margin-right: 0;
    }

    .nav-links li {
        margin: 0;
        text-align: left;
    }

    .nav-links li a {
        font-size: 0.95rem;
        font-weight: 600;
        color: #374151;
        position: relative;
        padding-bottom: 4px;
    }

    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #06c167, #00923f);
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .nav-links li a:hover::after {
        width: 100%;
    }

    .nav-links li a:hover {
        color: #06c167;
    }
}