    * {
        box-sizing: border-box
    }

    html {
        scroll-behavior: smooth
    }

    body {
        margin: 0;
        font-family: Inter, Arial, sans-serif;
        color: #173d2b;
        background: #fff
    }

    a {
        text-decoration: none;
        color: inherit
    }

    .topbar {
        background: #032d1e;
        color: #fff;
        font-size: 13px
    }

    .top-inner {
        max-width: 1200px;
        margin: auto;
        min-height: 38px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px
    }

    .top-inner strong {
        color: #f2bb2d
    }

    .contact-mini {
        opacity: .95
    }

    .sep {
        margin-left: 20px
    }

    .header {
        height: 86px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 max(24px, calc((100% - 1200px)/2));
        box-shadow: 0 2px 10px #00000010;
        position: sticky;
        top: 0;
        z-index: 20
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px
    }

    .brand-mark {
        font-size: 40px;
        line-height: 1
    }

    .brand b {
        display: block;
        font-size: 32px;
        letter-spacing: 1px;
        color: #16703d
    }

    .brand small {
        display: block;
        font-size: 10px;
        letter-spacing: .7px;
        color: #222;
        font-weight: 700
    }

    .header nav {
        display: flex;
        align-items: center;
        gap: 28px;
        font-size: 12px;
        font-weight: 700;
        color: #202020
    }

    .header nav a {
        padding: 34px 0
    }

    .header nav .active {
        color: #126b3b;
        border-bottom: 3px solid #126b3b
    }

    .quote-nav {
        background: #08723e !important;
        color: #fff !important;
        border-radius: 7px;
        padding: 14px 19px !important
    }

    .menu-btn {
        display: none;
        border: 0;
        background: none;
        font-size: 28px
    }

    .hero {
        height: 450px;
        background-image: url('banner.png');
        background-size: cover;
        background-position: center 62%;
        position: relative;
        color: #fff
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .0) 43%, rgba(0, 0, 0, .08) 80%)
    }

    .hero-content {
        position: relative;
        max-width: 1200px;
        margin: auto;
        padding: 47px 24px
    }

    .eyebrow {
        color: #f3bb23;
        font-weight: 800;
        font-size: 15px;
        margin-bottom: 15px
    }

    .hero h1 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 35px;
        line-height: 1.1;
        margin: 0;
        letter-spacing: .4px
    }

    .hero h1 span {
        color: #71c52d
    }

    .gold-line {
        width: 56px;
        height: 3px;
        background: #f3b72a;
        margin: 17px 0
    }

    .hero p {
        font-size: 14px;
        line-height: 1.55;
        margin: 0 0 24px
    }

    .hero-actions {
        display: flex;
        gap: 14px
    }

    .btn {
        padding: 10px 28px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 800
    }

    .btn b {
        margin-left: 8px
    }

    .btn-green {
        background: #08753f
    }

    .btn-outline {
        border: 1px solid #fff;
        background: #1118
    }

    .trust-strip {
        max-width: 1120px;
        margin: -1px auto 0;
        background: #fff;
        border-radius: 13px;
        box-shadow: 0 4px 17px #00000016;
        position: relative;
        z-index: 5;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        overflow: hidden
    }

    .trust-strip>div {
        min-height: 112px;
        border-right: 1px solid #e6e6e6;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center
    }

    .trust-strip>div:last-child {
        border-right: 0
    }

    .trust-strip i {
        font-style: normal;
        color: #146d3b;
        font-size: 25px
    }

    .trust-strip b {
        display: none
    }

    .trust-strip span {
        font-size: 12px;
        line-height: 1.4;
        color: #222;
        margin-top: 5px
    }

    .section {
        max-width: 1200px;
        margin: auto;
        padding: 30px 24px
    }

    .section-head {
        text-align: center;
        margin-bottom: 20px
    }

    .section-head span,
    .section-title span {
        color: #d5a72c;
        font-weight: 800;
        font-size: 13px;
        position: relative
    }

    .section-head span:before,
    .section-head span:after,
    .section-title span:before {
        content: '';
        display: inline-block;
        width: 30px;
        height: 2px;
        background: #e3b438;
        vertical-align: middle;
        margin: 0 10px
    }

    .section-head h2,
    .section-title h2 {
        margin: 2px 0;
        font-family: 'Barlow Condensed';
        font-size: 28px;
        color: #116d3b
    }

    .section-head p {
        margin: 4px;
        color: #777;
        font-size: 13px
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px
    }

    .product-card {
        border: 1px solid #e7e7e7;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 12px #0000000d;
        background: #fff;
        transition: .25s
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 28px #00000016
    }

    .product-img {
        height: 148px;
        background-size: cover;
        background-position: center
    }

    .img-crumbs {
        background-image: url('https://m4b.in/dynamic/allchem/new-index/1.png')
    }

    .img-panko {
        background-image: url('https://m4b.in/dynamic/allchem/new-index/2.png')
    }

    .img-batter {
        background-image: url('https://m4b.in/dynamic/allchem/new-index/3.png')
    }

    .product-body {
        padding: 22px 22px 15px;
        position: relative
    }

    .round-icon {
        position: absolute;
        top: -18px;
        left: 18px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #08753f;
        color: #fff;
        display: grid;
        place-items: center;
        border: 3px solid #fff
    }

    .product-body h3 {
        font-size: 17px;
        margin: 4px 0 9px;
        color: #166b3b
    }

    .product-body p {
        font-size: 12px;
        line-height: 1.45;
        color: #555;
        margin: 0 0 13px
    }

    .product-body a {
        display: block;
        width: max-content;
        margin: auto;
        border: 1px solid #7e9f8d;
        border-radius: 4px;
        padding: 7px 15px;
        font-size: 10px;
        font-weight: 800
    }

    .about-wrap {
        max-width: none;
        background: #fbfaf8;
        display: grid;
        grid-template-columns: 1.2fr .8fr .95fr;
        padding: 30px max(24px, calc((100% - 1200px)/2));
        gap: 25px;
        border-top: 1px solid #eee
    }

    .section-title {
        margin-bottom: 17px
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .why-grid>div {
        display: flex;
        gap: 9px
    }

    .why-grid i {
        width: 29px;
        height: 29px;
        min-width: 29px;
        border-radius: 50%;
        background: #147543;
        color: #fff;
        display: grid;
        place-items: center;
        font-style: normal;
        font-size: 12px
    }

    .why-grid b {
        font-size: 11px
    }

    .why-grid p,
    .about-copy p {
        font-size: 10px;
        line-height: 1.5;
        color: #555;
        margin: 3px 0
    }

    .about-copy {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        padding: 0 24px
    }

    .established {
        text-align: center;
        margin: 16px auto 0
    }

    .established span {
        display: block;
        font-size: 8px;
        font-weight: 700
    }

    .established strong {
        font-family: 'Barlow Condensed';
        font-size: 30px;
        color: #08723e
    }

    .quote-box {
        background: #034c2d;
        border-radius: 10px;
        padding: 17px 20px;
        color: #fff;
        box-shadow: 0 6px 20px #00000018
    }

    .quote-box h3 {
        text-align: center;
        font-size: 16px;
        margin: 0;
        color: #f2b828
    }

    .quote-box h3 strong {
        font-size: 20px
    }

    .quote-box>p {
        text-align: center;
        font-size: 10px;
        line-height: 1.35
    }

    .quote-box form {
        display: grid;
        gap: 7px
    }

    .quote-box input,
    .quote-box select,
    .quote-box textarea {
        border: 0;
        border-radius: 4px;
        padding: 9px;
        font: 10px Inter
    }

    .quote-box textarea {
        height: 50px;
        resize: vertical
    }

    .two {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px
    }

    .quote-box button {
        border: 0;
        border-radius: 4px;
        background: #f2b52a;
        padding: 10px;
        font-size: 11px;
        font-weight: 800;
        color: #152f22
    }

    .quality {
        background: #f5f8f5;
        max-width: none
    }

    .quality-inner {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px
    }

    .quality-inner span {
        font-size: 11px;
        font-weight: 800;
        color: #d39f20
    }

    .quality-inner h2 {
        font-family: 'Barlow Condensed';
        margin: 2px 0;
        font-size: 27px
    }

    .quality-inner p {
        font-size: 11px;
        color: #666;
        max-width: 650px
    }

    .quality-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        justify-content: flex-end
    }

    .quality-pills b {
        font-size: 9px;
        padding: 8px 11px;
        border: 1px solid #b9d0c3;
        border-radius: 20px;
        color: #166b3b;
        background: #fff
    }

    footer {
        background: #022f20;
        color: #fff
    }

    .footer-grid {
        max-width: 1200px;
        margin: auto;
        padding: 25px 24px 18px;
        display: grid;
        grid-template-columns: 1.2fr .9fr .9fr 1.3fr 1fr;
        gap: 22px
    }

    .footer-grid>div {
        border-right: 1px solid #ffffff18;
        padding-right: 20px
    }

    .footer-grid>div:last-child {
        border: 0
    }

    .footer-grid h3 {
        font-size: 19px;
        margin: 0 0 1px
    }

    .footer-grid h4 {
        font-size: 11px;
        margin: 2px 0 13px
    }

    .footer-grid small,
    .footer-grid p,
    .footer-grid a {
        display: block;
        font-size: 9px;
        line-height: 1.6;
        color: #e1ece7
    }

    .footer-grid a {
        margin-bottom: 3px
    }

    .footer-grid p {
        margin: 11px 0
    }

    .social {
        font-weight: 800;
        color: #fff;
        font-size: 13px
    }

    .certs {
        display: flex;
        gap: 10px
    }

    .certs div {
        background: #fff;
        color: #174b36;
        border-radius: 7px;
        width: 72px;
        height: 62px;
        display: grid;
        place-items: center;
        text-align: center;
        font-size: 8px
    }

    .certs strong {
        font-size: 14px
    }

    .copyright {
        border-top: 1px solid #ffffff20;
        max-width: 1200px;
        margin: auto;
        padding: 10px 24px;
        display: flex;
        justify-content: space-between;
        font-size: 9px;
        color: #dbe5e0
    }

    .toast {
        position: fixed;
        right: 20px;
        bottom: 20px;
        background: #08753f;
        color: #fff;
        padding: 12px 17px;
        border-radius: 7px;
        box-shadow: 0 8px 25px #0004;
        opacity: 0;
        transform: translateY(15px);
        transition: .3s;
        z-index: 50;
        font-size: 12px
    }

    .toast.show {
        opacity: 1;
        transform: none
    }

    @media(max-width:900px) {
        .header {
            height: 72px
        }

        .header nav {
            display: none
        }

        .menu-btn {
            display: block
        }

        .brand b {
            font-size: 25px
        }

        .brand small {
            font-size: 8px
        }

        .hero {
            height: 430px
        }

        .trust-strip {
            margin: 0 15px;
            grid-template-columns: repeat(3, 1fr)
        }

        .trust-strip>div {
            min-height: 90px
        }

        .product-grid {
            grid-template-columns: 1fr 1fr
        }

        .about-wrap {
            grid-template-columns: 1fr 1fr
        }

        .quote-box {
            grid-column: 1/-1
        }

        .about-copy {
            border-right: 0
        }

        .quality-inner {
            display: block
        }

        .quality-pills {
            justify-content: flex-start
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr 1fr
        }

        .footer-grid>div:nth-child(3) {
            border-right: 0
        }
    }

    @media(max-width:600px) {
        .top-inner {
            font-size: 10px
        }

        .top-inner strong {
            display: none
        }

        .header {
            padding: 0 15px
        }

        .hero-content {
            padding: 45px 18px
        }

        .hero h1 {
            font-size: 30px
        }

        .hero p br {
            display: none
        }

        .hero-actions {
            flex-direction: column;
            width: max-content
        }

        .trust-strip {
            grid-template-columns: repeat(2, 1fr)
        }

        .product-grid,
        .about-wrap {
            grid-template-columns: 1fr
        }

        .about-copy {
            border: 0;
            padding: 0
        }

        .why-grid {
            grid-template-columns: 1fr
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr
        }

        .footer-grid>div {
            border-right: 0
        }

        .copyright {
            flex-direction: column;
            gap: 5px
        }

        .two {
            grid-template-columns: 1fr
        }

        .brand-mark {
            font-size: 30px
        }
    }
/* =========================
   OUR CERTIFICATES
========================= */

.certificates-section {
    background: #fff;
    padding: 35px 24px 40px;
    border-top: 1px solid #eeeeee;
}

.certificates-inner {
    max-width: 1200px;
    margin: auto;
}

.certificates-section .section-head {
    text-align: center;
    margin-bottom: 25px;
}

.certificates-section .section-head span {
    color: #d5a72c;
    font-weight: 800;
    font-size: 13px;
}

.certificates-section .section-head h2 {
    margin: 4px 0 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    color: #116d3b;
}

.certificates-section .section-head p {
    margin: 0 auto;
    color: #777;
    font-size: 12px;
    line-height: 1.5;
    max-width: 650px;
}


/* CERTIFICATE GRID */

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* CERTIFICATE CARD */

.certificate-card {
    background: #fbfaf8;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    min-height: 190px;
    padding: 18px 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);

    transition: 0.25s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
    border-color: #d8b13a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* CERTIFICATE LOGO */

.certificate-logo {
    width: 115px;
    height: 90px;
    background: #fff;
    border-radius: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;
    padding: 8px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.certificate-logo img {
    max-width: 100%;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* CERTIFICATE TEXT */

.certificate-card h3 {
    margin: 0 0 4px;

    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;

    color: #116d3b;
}

.certificate-card p {
    margin: 0;
    max-width: 190px;

    font-size: 10px;
    line-height: 1.4;

    color: #666;
}


/* GOLD ACCENT */

.certificate-card:after {
    content: '';
    width: 35px;
    height: 2px;

    background: #f2b52a;

    margin-top: 10px;
}


/* TABLET */

@media (max-width: 900px) {

    .certificate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .certificates-section {
        padding: 30px 18px 35px;
    }

    .certificates-section .section-head h2 {
        font-size: 25px;
    }

    .certificates-section .section-head p {
        font-size: 11px;
    }

    .certificate-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .certificate-card {
        min-height: 175px;
        padding: 15px 10px;
    }

    .certificate-logo {
        width: 95px;
        height: 75px;
    }

    .certificate-logo img {
        max-height: 62px;
    }

    .certificate-card h3 {
        font-size: 15px;
    }

    .certificate-card p {
        font-size: 9px;
    }

}


/* SMALL MOBILE */

@media (max-width: 400px) {

    .certificate-grid {
        grid-template-columns: 1fr;
    }

}