* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

* {
    -webkit-tap-highlight-color: transparent;
}

:focus:not(:focus-visible) {
    outline: none;
}

body {
    font-family: "Manrope", sans-serif;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1,
h2 {
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    width: max-content;
}

/* Promo Banner Styles */
.promo-banner {
    background-image: url("../assets/images/promo-banner-small.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 10px 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 1rem;
}

.promo-banner-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}



.promo-text {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 500;
    text-align: center;
    font-family: "Lato", sans-serif;
    text-wrap: balance;
    max-width: 210px;
}



.promo-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    padding: 0;
}

    .promo-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

.promo-banner.hidden {
    display: none;
}

@media (min-width: 768px) {
    .promo-banner {
        padding: 12px 2rem;
    }

    .promo-badge {
        font-size: 12px;
    }
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .logo img {
        width: 55px;
    }

.logo-circle {
    width: 48px;
    height: 48px;
    background-color: #5ba15d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

nav {
    display: none;
    gap: 2rem;
}

    nav a {
        color: #2b2b2b;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }

        nav a.active {
            font-weight: 700;
        }

        nav a:hover {
            color: #5ba15d;
        }

.cart-notification {
    position: absolute;
    top: -2px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dc3545;
    border-radius: 50%;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
}

.cta-button {
    display: none;
    background-color: #5ba15d;
    color: white;
    padding: 16px 24px;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Lato", sans-serif;
    font-weight: 700;
}

    .cta-button:hover {
        background-color: #093f0b;
    }

.mobile-menu-btn {
    background: none;
    border: none;
    color: #4b5563;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-menu .cta-button {
        display: block;
        width: 100%;
        margin-top: 0.5rem;
    }

/* Hero Section */
.hero {
    padding: 3rem 0 0;
}

.hero-grid {
    display: grid;
    gap: 40px 3rem;
    align-items: center;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #e4e7e0;
    color: #226124;
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
    border: 1px solid #aabdae;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #093f0b;
    line-height: 1.2;
    font-family: "Manrope", sans-serif;
}

    .hero h1 .highlight {
        color: #f5c542;
    }

.hero p {
    font-size: 18px;
    color: #2b2b2b;
    max-width: 668px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    line-height: 180%;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

    .hero-buttons .cta-button {
        display: block;
    }

.btn-primary {
    background-color: #16a34a;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-primary:hover {
        background-color: #5ba15d;
    }

.btn-secondary {
    background-color: white;
    color: #5ba15d;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: 2px solid #16a34a;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-secondary:hover {
        background-color: #f9fafb;
    }

.trust-badge,
.trust-badge-heritage {
    width: 101px;
    position: absolute;
    bottom: -10px;
    left: -12px;
    background-color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.trust-badge-heritage {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    left: unset;
    right: -12px;
}

.trust-icon {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 14px;
}

.trust-badge-heritage .trust-icon {
    position: relative;
    width: auto;
    right: 0;
    top: 0;
}

.trust-text {
    font-size: 9px;
    color: #000;
    font-weight: 500;
}

.trust-number {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.hero-image img,
.welcome-image > img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    object-fit: cover;
}

.welcome-image img {
    max-height: 350px;
}

/* Welcome Section */
.welcome {
    padding: 1.5rem 0;
    background-color: #faf8f5;
}

.welcome-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.5rem;
}

.about-welcome-grid {
    flex-direction: column;
}

.welcome-image > img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-weight: 500;
}

.welcome h2 {
    font-size: 1.5rem;
    color: #093f0b;
    line-height: 1.2;
    max-width: 720px;
}

.welcome p {
    color: #2b2b2b;
    line-height: 180%;
    font-size: 14px;
    font-family: "Lato", sans-serif;
    font-weight: 600;
}

.welcome-content > p {
    font-size: 14px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    /* justify-content: space-between; */
    gap: 10px;
    padding-top: 1rem;
}

.feature {
    display: flex;
    gap: 12px;
    align-items: start;
}

.feature-icon {
    background-color: #e5e9e3;
    width: 34px;
    height: 34px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

    .feature-icon img {
        width: 1rem;
    }

.feature h3 {
    font: 16px;
    font-weight: 600;
    color: #111827;
    /* margin-bottom: 0.25rem; */
}

.feature p {
    font-size: 12px;
    color: #888888;
}

/* Quality Section */
.quality {
    padding: 20px 0;
    background-color: #faf8f5;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
    margin-bottom: 2rem;
}

    .section-header h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #093f0b;
        font-family: "Poppins", sans-serif;
    }

    .section-header p {
        color: #2b2b2b;
        max-width: 638px;
        text-wrap: balance;
        font-size: 14px;
        font-weight: 600;
    }

.benefits-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat( auto-fit, minmax(min(280px, 100%), max-content) );
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f8f6f2;
    border-radius: 12px;
}

.benefit-card-wrapper > .benefit-card {
    box-shadow: unset;
    border-radius: unset;
    border: unset;
}

.benefit-card-wrapper {
    border-radius: 12px;
    background-color: white;
    transition: background-color 0.5s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f8f6f2;
    overflow: hidden;
}

    .benefit-card-wrapper:hover {
        background-color: #235c3b;
    }

        .benefit-card-wrapper:hover p,
        .benefit-card-wrapper:hover h3 {
            color: white;
        }

        .benefit-card-wrapper:hover .benefit-icon {
            background-color: #059669;
        }

.benefit-icon {
    background-color: #dcfce7;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .benefit-icon img {
        width: 16px;
    }

    .benefit-icon .img2 {
        display: none;
    }

.benefit-card-wrapper:hover .benefit-icon .img1 {
    display: none;
}

.benefit-card-wrapper:hover .benefit-icon .img2 {
    display: block;
}

.benefit-card h3 {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #111827;
    text-wrap: balance;
    font-size: 16px;
    margin-top: auto;
}

.benefit-card p {
    font-size: 13px;
    color: #888888;
}

/* Categories Section */
.categories {
    padding: 1.5rem 0;
    background-color: white;
}

.categories-grid {
    display: grid;
    gap: 1.5rem;
}

.category-card {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: box-shadow 0.3s;
    width: 100%;
    aspect-ratio: 4/3;
    max-height: 250px;
}

    .category-card:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

/* .category-card:hover .category-image {
            transform: scale(1.1);
        } */

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent );
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
}

    .category-content h3 {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .category-content p {
        font-size: 0.875rem;
        color: #e5e7eb;
        margin-bottom: 12px;
    }

.category-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f5a623;
    font-weight: 500;
    transition: gap 0.3s;
}

.category-card:hover .category-link {
    gap: 0.75rem;
}

.category-card img {
    transition: scale 0.4s ease-in-out;
}

.category-card:hover > img {
    scale: 1.08;
}

.view-all-btn {
    background-color: #111827;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem auto 0;
    transition: background-color 0.3s;
}

    .view-all-btn:hover {
        background-color: #1f2937;
    }

/* Customer Favourites Section */
.customer-favourites {
    padding: 1.5rem 0;
    background-color: #fafaf9;
}

.favourites-header {
    display: flex;
    flex-direction: column;
    gap: 1rem 2rem;
    margin-bottom: 1rem;
}

.favourites-title {
    font-size: 24px;
    font-weight: bold;
    color: #166534;
    margin-top: 0.5rem;
}

.favourites-subtitle {
    color: #6b7280;
    margin-top: 0.5rem;
    max-width: 558px;
    text-wrap: balance;
    font-size: 14px;
}

.view-all-products-btn {
    background-color: #111827;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
    width: fit-content;
}

    .view-all-products-btn:hover {
        background-color: #1f2937;
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem 0.5rem;
}

.product-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
}

    .product-card:hover {
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

    .product-image-wrapper:hover .product-image {
        transform: scale(1.08);
    }

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.organic-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #235c3b;
    color: white;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-info {
    padding: 1.25rem;
}

.product-category {
    color: #888888;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    /* margin-bottom: 0.5rem; */
}

.product-name {
    font-size: 1rem;
    font-weight: bold;
    color: #093f0b;
    margin-bottom: 4px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    color: #f5a623;
    font-size: 18px;
    font-weight: bold;
}

.product-view-btn {
    background-color: #5ba15d;
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .product-view-btn:hover {
        background-color: #5ba15d;
    }

/* Ready to Experience Section */
.ready-to-experience {
    padding: 4rem 0;
    background-color: #5ba15d;
    color: white;
}

.experience-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    text-wrap: balance;
}

.experience-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

.experience-subtitle {
    font-size: 14px;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.experience-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

    .experience-buttons button {
        width: 100%;
    }

.btn-dark {
    background-color: #093f0b;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-dark:hover {
        background-color: #093f0b;
    }

.btn-light {
    background-color: white;
    color: #166534;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-light:hover {
        background-color: #f9fafb;
    }

.experience-contact {
    font-size: 1rem;
    opacity: 0.95;
}

.experience-phone {
    color: #f2cb8a;
    font-weight: 600;
}

/* Features Strip Section */
.features-strip {
    padding: 2rem 0;
    background-color: #093f0b;
}

.features-strip-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 5rem;
    font-family: "Poppins", sans-serif;
}

.feature-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem 12px;
}

.feature-strip-icon {
    font-size: 2rem;
}

.feature-strip-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* Footer */
footer {
    background-color: #222222;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    gap: 3rem;
    padding-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-icon {
    font-size: 1.5rem;
}

.footer-logo-text {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-tagline {
    color: #d1d5db;
}

.footer-description {
    color: #bec1ce;
    font-size: 0.9rem;
    line-height: 2;
    max-width: 218px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

    .social-link:hover {
        background-color: #5ba15d;
        color: white;
        transform: translateY(-2px);
    }

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #f2f2f2;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

    .footer-link:hover {
        color: #16a34a;
    }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-contact p {
        color: #d1d5db;
        font-size: 0.95rem;
    }

.whatsapp-btn {
    background-color: #5ba15d;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    width: fit-content;
    margin-top: 0.5rem;
}

    .whatsapp-btn:hover {
        background-color: #5ba15d;
    }

/* About us section */
.about-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 0;
}

    .about-header h2 {
        font-size: 1.5rem;
        color: #093f0b;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
    }

    .about-header p {
        max-width: 620px;
        text-wrap: balance;
        font-size: 14px;
        font-weight: 600;
    }

.aboutus-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
/* Responsive Design */
@media (min-width: 640px) {
    .logo-text {
        display: block;
    }

    .welcome h2 {
        font-size: 2rem;
    }

    .logo img {
        width: 88px;
    }

    .feature {
        align-items: center;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

        .feature-icon img {
            width: auto;
        }

    .feature h3 {
        font: 18px;
    }

    .feature p {
        font-size: 14px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-banner {
        background-image: url("../assets/images/promo-banner.jpg");
    }

    .promo-text {
        max-width: unset;
    }
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    nav {
        display: flex;
    }

    .cta-button {
        display: block;
    }

    .hero {
        padding: 1rem 0 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .badge {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image img {
        max-height: unset;
    }
    .trust-badge {
        width: 219px;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 28px;
        padding-right: 48px;
        border-radius: 12px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .trust-badge-heritage {
        width: max-content;
        padding: 16px 32px;
    }

    .trust-icon {
        position: absolute;
        top: 14px;
        right: 14px;
        width: auto;
    }

    .trust-text {
        font-size: 12px;
        color: #000;
        font-weight: 500;
    }

    .trust-number {
        font-size: 24pxrem;
        font-weight: bold;
        color: #000;
    }

    .welcome-grid {
        gap: 2rem;
    }

    .welcome-content {
        gap: 1.5rem;
    }

    .welcome h2 {
        font-size: 2.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

        .section-header h2 {
            font-size: 2.5rem;
        }

        .section-header p {
            font-size: 1rem;
        }

    .welcome {
        padding: 3.5rem 0;
    }

    .welcome-content > p {
        margin-bottom: 16px;
        font-size: 16px;
    }

    .welcome-image img {
        display: block;
    }

    .quality {
        padding: 70px 0;
    }

    .categories {
        padding: 4.5em 0;
    }

    .benefit-icon {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }

        .benefit-icon img {
            width: 32px;
        }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .favourites-header {
        margin-bottom: 2.5rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .favourites-title {
        font-size: 2.5rem;
    }

    .favourites-subtitle {
        font-size: 16px;
    }

    .customer-favourites {
        padding: 4.5rem 0;
    }

    .experience-title {
        font-size: 3rem;
    }

    .experience-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .experience-buttons {
        margin-bottom: 32px;
    }

        .experience-buttons button {
            width: auto;
        }

    .feature-strip-text {
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        text-align: left;
    }

    /* about us page  */
    .about-header {
        padding: 70px 0;
    }

        .about-header h2 {
            font-size: 3.5rem;
            color: #093f0b;
            font-family: "Poppins", sans-serif;
            font-weight: 600;
        }

        .about-header p {
            font-size: 16px;
        }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .trust-badge {
        width: 219px;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 28px;
        padding-right: 48px;
        border-radius: 12px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .welcome h2 {
        font-size: 3rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

        .section-header h2 {
            font-size: 3rem;
        }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* .features-strip-grid {
                grid-template-columns: repeat(5, 1fr);
            } */
}

@media (min-width: 1280px) {
    .welcome-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0rem 4rem;
    }

    .welcome-image img {
        max-height: unset;
    }

    .section-header {
        align-items: center;
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .aboutus-benefits-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 500px;
    }

    .valued-customer-grid {
        align-items: center;
    }
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Manual Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.cta-button:hover,
li.category-item:hover {
    animation: pulse 0.3s ease-in-out;
}

.product-view-btn:hover {
    animation: pulse 0.3s ease-in-out;
}

.btn-dark:hover {
    animation: pulse 0.3s ease-in-out;
}

.btn-light:hover {
    animation: pulse 0.3s ease-in-out;
}

/* Button Responsiveness */
@media (min-width: 1024px) {
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-dark,
    .btn-light,
    .cta-button,
    .view-all-btn,
    .view-all-products-btn,
    .whatsapp-btn {
        padding: 1.35rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 479px) {
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-dark,
    .btn-light,
    .cta-button,
    .view-all-btn,
    .view-all-products-btn,
    .whatsapp-btn {
        padding: 1rem 1rem;
        font-size: 14px;
    }
}
