:root {
    --emerald: #0B3D2E;
    --forest: #145A43;
    --gold: #C7A76A;
    --cream: #F7F3EA;
    --soft-white: #FCFCF8;
    --charcoal: #202620;
    --muted: #68736C;
    --border: rgba(11, 61, 46, 0.12);
    --shadow: 0 24px 70px rgba(11, 61, 46, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--soft-white);
    color: var(--charcoal);
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* TOP BAR */

.topbar {
    background: #082d23;
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-inner > div {
    display: flex;
    gap: 20px;
}

.social-top a {
    color: rgba(255,255,255,.82);
}

.social-top a:hover {
    color: var(--gold);
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(252,252,248,.96);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.nav-wrap {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--emerald);
}

.brand-emblem {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 23px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--emerald), var(--forest));
    border: 2px solid var(--gold);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 21px;
    letter-spacing: 1.4px;
}

.brand-copy span {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--forest);
}

.nav-cta {
    background: var(--emerald);
    color: white;
    padding: 13px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}


/* HERO */

.premium-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%, rgba(199,167,106,.22), transparent 25%),
        linear-gradient(135deg, #082f24 0%, #0B3D2E 48%, #145A43 100%);
    color: white;
}

.premium-hero-grid {
    min-height: 720px;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-block;
    color: #ead7ac;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}

.eyebrow.dark {
    color: var(--forest);
}

.eyebrow.light {
    color: #ead7ac;
}

.hero-copy h1 {
    max-width: 650px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 6vw, 82px);
    line-height: .98;
    font-weight: 500;
    letter-spacing: -2.5px;
}

.hero-copy h1 span {
    display: block;
    color: var(--gold);
}

.hero-lead {
    max-width: 620px;
    margin-top: 28px;
    color: rgba(255,255,255,.8);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn-primary,
.btn-secondary,
.btn-dark,
.btn-gold,
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}

.btn-primary {
    background: var(--gold);
    color: #17251d;
}

.btn-primary:hover,
.btn-gold:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    color: white;
    border: 1px solid rgba(255,255,255,.35);
}

.btn-dark {
    background: var(--emerald);
    color: white;
}

.btn-gold {
    background: var(--gold);
    color: #15231c;
}

.btn-outline-light {
    color: white;
    border: 1px solid rgba(255,255,255,.4);
}

.recognition-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.recognition-row div {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.recognition-row strong,
.recognition-row span {
    display: block;
}

.recognition-row strong {
    font-size: 16px;
    color: white;
}

.recognition-row span {
    margin-top: 3px;
    font-size: 12px;
    color: rgba(255,255,255,.62);
}

.hero-media {
    position: relative;
}

.hero-media > img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 34px 8px 34px 8px;
    box-shadow: 0 35px 90px rgba(0,0,0,.27);
}

.hero-media:after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 34px 8px 34px 8px;
    pointer-events: none;
}

.hero-card {
    position: absolute;
    left: -35px;
    bottom: 40px;
    z-index: 3;
    background: var(--cream);
    color: var(--emerald);
    width: min(330px, 85%);
    padding: 24px;
    box-shadow: var(--shadow);
}

.hero-card span {
    display: block;
    color: #8a7042;
    font-size: 10px;
    letter-spacing: 1.8px;
    font-weight: 800;
}

.hero-card strong {
    display: block;
    margin-top: 5px;
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.25;
}


/* RECOGNITION */

.recognition-banner {
    background: var(--cream);
    border-bottom: 1px solid rgba(199,167,106,.24);
}

.recognition-banner-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    padding: 52px 0;
    align-items: center;
}

.recognition-banner span {
    color: #8a7042;
    letter-spacing: 2px;
    font-size: 10px;
    font-weight: 800;
}

.recognition-banner h2 {
    margin-top: 6px;
    font-family: Georgia, serif;
    font-size: 34px;
    color: var(--emerald);
    font-weight: 500;
}

.recognition-banner p {
    color: #5e665f;
    font-size: 16px;
}


/* SECTIONS */

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 45px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.wholesale-section h2,
.leadership-copy h2,
.final-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 500;
    color: var(--emerald);
}

.section-heading h2 span,
.wholesale-section h2 span,
.leadership-copy h2 span {
    color: var(--gold);
}

.section-heading p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 16px;
}


/* PRODUCT CARDS */

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

.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(11,61,46,.06);
    transition: .25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-img-wrap {
    height: 290px;
    background: #eef3ef;
    position: relative;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold);
    color: #19261f;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-card-body {
    padding: 24px;
}

.product-category {
    color: #95763c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.product-card h3 {
    margin-top: 5px;
    font-family: Georgia, serif;
    color: var(--emerald);
    font-size: 24px;
    font-weight: 500;
}

.product-card p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 14px;
}

.product-card small {
    display: block;
    margin-top: 12px;
    color: var(--forest);
    font-weight: 700;
}

.product-actions {
    display: flex;
    gap: 18px;
    margin-top: 18px;
}

.product-link {
    color: var(--emerald);
    font-size: 12px;
    font-weight: 800;
}

.product-link.secondary {
    color: #9a7c43;
}

.section-center {
    text-align: center;
    margin-top: 42px;
}


/* WHOLESALE */

.wholesale-section {
    padding: 100px 0;
    background: var(--emerald);
    color: white;
}

.wholesale-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.wholesale-section h2 {
    color: white;
}

.wholesale-section p {
    margin-top: 22px;
    color: rgba(255,255,255,.76);
    font-size: 16px;
}

.wholesale-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 30px;
}

.wholesale-tags span {
    border: 1px solid rgba(255,255,255,.18);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    color: rgba(255,255,255,.83);
}

.wholesale-image img {
    height: 470px;
    width: 100%;
    object-fit: cover;
    border-radius: 28px 6px 28px 6px;
}


/* LEADERSHIP */

.leadership-section {
    background: var(--cream);
}

.leadership-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
    align-items: center;
}

.leadership-image {
    position: relative;
}

.leadership-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px 38px 8px 38px;
}

.leadership-caption {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background: rgba(8,45,35,.92);
    color: white;
    padding: 18px 20px;
}

.leadership-caption strong,
.leadership-caption span {
    display: block;
}

.leadership-caption strong {
    font-family: Georgia, serif;
    font-size: 19px;
}

.leadership-caption span {
    margin-top: 3px;
    color: #d8c18f;
    font-size: 12px;
}

.large-copy {
    margin-top: 25px;
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.55;
    color: #33473d;
}

.leadership-copy > p:not(.large-copy) {
    margin-top: 20px;
    color: var(--muted);
}

.signature-block {
    padding-top: 26px;
    margin-top: 28px;
    border-top: 1px solid rgba(11,61,46,.15);
}

.signature-block strong,
.signature-block span {
    display: block;
}

.signature-block strong {
    color: var(--emerald);
}

.signature-block span {
    font-size: 12px;
    color: var(--muted);
}


/* PORTFOLIO */

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

.portfolio-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.portfolio-card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.portfolio-body {
    padding: 22px;
}

.portfolio-body span {
    color: #9b7a3f;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 1.7px;
    font-weight: 800;
}

.portfolio-body h3 {
    margin-top: 5px;
    color: var(--emerald);
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 500;
}

.portfolio-body p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}


/* CUSTOMERS */

.customers-section {
    background: #0e4937;
    padding: 95px 0;
    color: white;
}

.customers-section .section-heading h2 {
    color: white;
}

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

.customer-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    padding: 25px;
    border-radius: 18px;
    text-align: center;
}

.customer-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0 auto 15px;
    background: white;
    border-radius: 12px;
}

.customer-card h3 {
    font-family: Georgia, serif;
    font-size: 18px;
}

.customer-card p {
    margin-top: 8px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
}


/* FINAL CTA */

.final-cta {
    background: #072c22;
    padding: 85px 0;
    color: white;
}

.final-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.final-cta span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.final-cta h2 {
    color: white;
    margin-top: 8px;
}

.final-cta p {
    margin-top: 13px;
    color: rgba(255,255,255,.7);
}

.final-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* FOOTER */

.site-footer {
    background: #061f18;
    color: rgba(255,255,255,.7);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .9fr;
    gap: 60px;
    padding-bottom: 55px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    margin-bottom: 18px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    font-size: 18px;
}

.footer-brand span {
    color: var(--gold);
    font-size: 11px;
}

.site-footer h4 {
    color: white;
    margin-bottom: 14px;
}

.site-footer a {
    color: rgba(255,255,255,.7);
    display: block;
    margin: 7px 0;
    font-size: 13px;
}

.site-footer p {
    margin: 6px 0;
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom-inner {
    min-height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}


/* WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 200;
    background: #1f8f5f;
    color: white;
    padding: 13px 17px;
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(0,0,0,.2);
    font-size: 12px;
    font-weight: 800;
}


/* MESSAGE */

.messages-wrap {
    padding-top: 20px;
}

.message {
    padding: 14px 18px;
    border-radius: 10px;
}

.message.success {
    background: #e8f5ec;
    color: #155c36;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .main-nav {
        display: none;
    }

    .premium-hero-grid,
    .wholesale-grid,
    .leadership-grid,
    .recognition-banner-grid {
        grid-template-columns: 1fr;
    }

    .premium-hero-grid {
        min-height: auto;
        padding: 65px 0;
    }

    .hero-media {
        max-width: 700px;
    }

    .hero-card {
        left: 20px;
    }

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

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

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

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


@media (max-width: 650px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .topbar {
        display: none;
    }

    .nav-wrap {
        min-height: 74px;
    }

    .nav-cta {
        display: none;
    }

    .brand-emblem {
        width: 42px;
        height: 42px;
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .premium-hero-grid {
        gap: 45px;
    }

    .hero-copy h1 {
        font-size: 48px;
    }

    .hero-media > img {
        height: 420px;
    }

    .recognition-row {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 75px 0;
    }

    .product-grid,
    .portfolio-grid,
    .customer-grid {
        grid-template-columns: 1fr;
    }

    .leadership-image img {
        height: 520px;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        text-align: center;
    }
}
/* INNER PAGE HERO */

.page-hero {
    background:
        radial-gradient(circle at 85% 20%, rgba(199,167,106,.22), transparent 28%),
        linear-gradient(135deg, #082f24, #0B3D2E 55%, #145A43);
    color: white;
    padding: 95px 0;
}

.page-hero-inner {
    max-width: 850px;
}

.page-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6vw, 72px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -2px;
}

.page-hero h1 span {
    display: block;
    color: var(--gold);
}

.page-hero p {
    max-width: 720px;
    margin-top: 24px;
    font-size: 17px;
    color: rgba(255,255,255,.78);
}


/* DISTRIBUTION PAGE */

.distribution-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
    align-items: start;
}

.distribution-title {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--emerald);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 500;
}

.distribution-title span {
    color: var(--gold);
}

.distribution-intro {
    max-width: 680px;
    color: var(--muted);
    margin-top: 20px;
}

.quote-form {
    margin-top: 38px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--emerald);
    font-size: 12px;
    font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(11,61,46,.18);
    border-radius: 11px;
    background: white;
    color: var(--charcoal);
    font: inherit;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 125px;
    resize: vertical;
}

.form-submit {
    border: 0;
    cursor: pointer;
    margin-top: 24px;
}

.form-errors {
    margin-top: 18px;
    background: #fff1f1;
    color: #8c3030;
    padding: 12px 15px;
    border-radius: 8px;
}

.contact-panel {
    background: var(--emerald);
    color: white;
    border-radius: 28px 7px 28px 7px;
    padding: 40px;
    position: sticky;
    top: 120px;
}

.contact-panel h3 {
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 500;
}

.contact-detail {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-detail span {
    display: block;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 1.8px;
    font-weight: 800;
}

.contact-detail strong {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.contact-whatsapp {
    width: 100%;
    margin-top: 28px;
}

.delivery-zone-section {
    padding: 90px 0;
    background: #0b3d2e;
    color: white;
}

.delivery-zone-section .section-heading h2 {
    color: white;
}

.delivery-zone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.delivery-zone-card {
    padding: 26px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
}

.delivery-zone-card h3 {
    font-family: Georgia, serif;
    font-size: 22px;
}

.delivery-zone-card p {
    margin-top: 9px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

.delivery-zone-card span {
    display: block;
    margin-top: 13px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}


/* INNER PAGE RESPONSIVE */

@media (max-width: 900px) {

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

    .contact-panel {
        position: static;
    }

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


@media (max-width: 650px) {

    .page-hero {
        padding: 70px 0;
    }

    .page-hero h1 {
        font-size: 46px;
    }

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

    .form-group.full {
        grid-column: auto;
    }

    .delivery-zone-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   ZIMFAB PRODUCT PLACEHOLDER
   ========================================================= */

.product-placeholder {
    width: 100%;
    min-height: 280px;
    background: linear-gradient(
        135deg,
        #f7f3ea 0%,
        #fcfcf8 50%,
        #eef4f0 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}

.placeholder-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #0b3d2e;
    color: #c7a76a;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(11, 61, 46, 0.15);
}

.placeholder-title {
    color: #0b3d2e;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.placeholder-text {
    color: #6b746f;
    font-size: 0.9rem;
}
/* =========================================================
   ZIMFAB PRODUCT CATEGORY FILTER
   ========================================================= */

.zimfab-category-filter {
    padding: 55px 0 25px;
    background: #fcfcf8;
}

.product-filter-heading {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.product-filter-heading h2 {
    color: #0b3d2e;
    margin-bottom: 10px;
}

.product-filter-heading p {
    color: #67716c;
    margin-bottom: 0;
}

.product-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.product-filter-btn {
    border: 1px solid rgba(11, 61, 46, 0.16);
    background: #ffffff;
    color: #0b3d2e;
    border-radius: 999px;
    padding: 10px 19px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-filter-btn:hover {
    transform: translateY(-2px);
    border-color: #c7a76a;
    box-shadow: 0 7px 20px rgba(11, 61, 46, 0.09);
}

.product-filter-btn.active {
    background: #0b3d2e;
    color: #ffffff;
    border-color: #0b3d2e;
}

.zimfab-product-hidden {
    display: none !important;
}

@media (max-width: 768px) {

    .zimfab-category-filter {
        padding-top: 38px;
    }

    .product-filter-buttons {
        gap: 8px;
    }

    .product-filter-btn {
        padding: 9px 14px;
        font-size: 0.84rem;
    }
}
/* =========================================================
   ZIMFAB HERO SLIDER
   ========================================================= */

.zimfab-hero-slider {
    position: relative;
    width: 100%;
    min-height: 460px;
    overflow: hidden;
    border-radius: 28px;
    background: #0b3d2e;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.zimfab-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.zimfab-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.zimfab-hero-slide img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
}

.zimfab-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(11, 61, 46, 0.05) 20%,
            rgba(11, 61, 46, 0.72) 100%
        );
}

.zimfab-slide-caption {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 34px;
    z-index: 4;
    color: #ffffff;
    max-width: 520px;
}

.zimfab-slide-caption h3 {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    margin: 0 0 10px;
}

.zimfab-slide-caption p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.9);
}

.zimfab-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #0b3d2e;
    font-size: 1.35rem;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.15);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.zimfab-slider-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.zimfab-slider-prev {
    left: 15px;
}

.zimfab-slider-next {
    right: 15px;
}

.zimfab-slider-dots {
    position: absolute;
    z-index: 8;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.zimfab-slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.zimfab-slider-dot.active {
    background: #c7a76a;
    transform: scale(1.35);
}

@media (max-width: 768px) {

    .zimfab-hero-slider,
    .zimfab-hero-slide img {
        min-height: 360px;
    }

    .zimfab-slide-caption {
        left: 22px;
        right: 22px;
        bottom: 35px;
    }

    .zimfab-slider-arrow {
        width: 38px;
        height: 38px;
    }
}
/* =========================================================
   ZIMFAB MANAGEMENT CONTACTS
   ========================================================= */

.zimfab-management-contacts {
    padding: 80px 0;
    background: #f7f3ea;
}

.manager-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.manager-section-heading h2 {
    color: #0b3d2e;
    margin-bottom: 12px;
}

.manager-section-heading p {
    color: #66716b;
    margin-bottom: 0;
}

.manager-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.manager-contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(11, 61, 46, 0.08);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(11, 61, 46, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.manager-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(11, 61, 46, 0.12);
}

.manager-avatar {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b3d2e;
    color: #c7a76a;
    font-size: 1.5rem;
    font-weight: 800;
}

.manager-contact-content {
    flex: 1;
}

.manager-contact-content h3 {
    margin: 0 0 5px;
    color: #0b3d2e;
    font-size: 1.15rem;
}

.manager-role {
    color: #202620;
    font-weight: 700;
    margin-bottom: 5px;
}

.manager-meta {
    color: #738078;
    font-size: 0.92rem;
    margin-bottom: 3px;
}

.manager-phone {
    margin-top: 12px;
}

.manager-phone a {
    color: #0b3d2e;
    font-weight: 700;
    text-decoration: none;
}

.manager-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 16px;
}

.manager-call-btn,
.manager-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 9px 15px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.manager-call-btn {
    background: #0b3d2e;
    color: #ffffff;
}

.manager-whatsapp-btn {
    background: #145a43;
    color: #ffffff;
}

.manager-call-btn:hover,
.manager-whatsapp-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    color: #ffffff;
}

@media (max-width: 768px) {

    .zimfab-management-contacts {
        padding: 55px 0;
    }

    .manager-contact-grid {
        grid-template-columns: 1fr;
    }

    .manager-contact-card {
        padding: 22px;
    }
}

/* ZIMFAB HERO IMAGE POSITION FIX */
.zimfab-hero-slider img {
    object-fit: cover;
    object-position: center 15%;
}

/* =========================================================
   ZIMFAB MOBILE-FIRST RESPONSIVE IMPROVEMENTS
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Better tap targets */
a,
button,
.btn,
.product-filter-btn {
    min-height: 44px;
}

/* Product cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #fcfcf8;
}

.product-card .product-actions,
.product-card .card-actions {
    margin-top: auto;
}

/* Portfolio images */
.portfolio-card img,
.portfolio-item img {
    width: 100%;
    object-fit: cover;
}

/* Forms */
input,
select,
textarea {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .container {
        width: min(100% - 32px, 1200px);
        margin-inline: auto;
    }

    .zimfab-hero-slider {
        min-height: auto;
    }

    .zimfab-hero-slider img {
        min-height: 420px;
        object-fit: cover;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    body {
        font-size: 15px;
        line-height: 1.6;
    }

    .container {
        width: min(100% - 24px, 100%);
        margin-inline: auto;
    }

    /* Top bar */
    .topbar,
    .top-bar {
        font-size: 12px;
    }

    /* Header */
    header,
    .site-header,
    .navbar {
        position: relative;
    }

    .navbar-brand,
    .brand {
        max-width: 70%;
    }

    /* Hero */
    .zimfab-hero-slider {
        border-radius: 0;
        min-height: 0;
    }

    .zimfab-hero-slider img {
        width: 100%;
        min-height: 360px;
        max-height: 460px;
        object-fit: cover;
        object-position: center 18%;
    }

    .hero-content,
    .slide-content,
    .zimfab-slide-content {
        padding: 24px 18px;
    }

    .hero-content h1,
    .slide-content h1,
    .zimfab-slide-content h1 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
        line-height: 1.08;
    }

    .hero-content p,
    .slide-content p,
    .zimfab-slide-content p {
        font-size: 1rem;
    }

    /* Sections */
    section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    h2 {
        font-size: clamp(1.6rem, 7vw, 2.1rem);
        line-height: 1.2;
    }

    /* Products */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-card {
        border-radius: 16px;
        overflow: hidden;
    }

    .product-card img {
        aspect-ratio: 4 / 3;
        padding: 14px;
        object-fit: contain;
    }

    .product-placeholder {
        min-height: 220px;
    }

    /* Product category buttons */
    .product-filters,
    .filter-buttons {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 8px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .product-filters::-webkit-scrollbar,
    .filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .product-filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
    }

    /* Buttons */
    .btn,
    .button,
    .cta-button {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 13px 18px;
    }

    .product-actions,
    .card-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Portfolio */
    .portfolio-grid,
    .customer-grid,
    .featured-grid {
        grid-template-columns: 1fr !important;
    }

    .portfolio-card img,
    .portfolio-item img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    /* Leadership */
    .leadership-grid,
    .leadership-section .row {
        grid-template-columns: 1fr !important;
    }

    /* Distribution/contact */
    .contact-grid,
    .distribution-grid,
    .manager-grid {
        grid-template-columns: 1fr !important;
    }

    textarea {
        min-height: 130px;
    }

    /* Footer */
    footer {
        text-align: center;
    }

    footer .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    /* WhatsApp floating button */
    .whatsapp-float,
    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        z-index: 9999;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .container {
        width: min(100% - 20px, 100%);
    }

    .zimfab-hero-slider img {
        min-height: 330px;
    }

    .hero-content h1,
    .slide-content h1,
    .zimfab-slide-content h1 {
        font-size: 1.85rem;
    }

    .product-card img {
        aspect-ratio: 1 / 1;
    }

    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* =========================================================
   ZIMFAB ORDER CTA
   ========================================================= */

.zimfab-order-cta {
    padding: 70px 0;
    background: #f7f3ea;
}

.zimfab-order-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at top right,
            rgba(199,167,106,.22),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #0b3d2e 0%,
            #145a43 100%
        );

    box-shadow: 0 18px 45px rgba(11,61,46,.16);
}

.zimfab-order-copy {
    max-width: 650px;
}

.zimfab-order-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #c7a76a;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.zimfab-order-box h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(2rem,4vw,3rem);
    line-height: 1.1;
}

.zimfab-order-box p {
    margin: 0;
    max-width: 580px;
    color: rgba(255,255,255,.86);
    font-size: 1.05rem;
    line-height: 1.7;
}

.zimfab-order-actions {
    min-width: 245px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.zimfab-order-btn {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.zimfab-order-btn:hover {
    transform: translateY(-2px);
}

.zimfab-products-btn {
    background: #c7a76a;
    color: #0b3d2e;
}

.zimfab-call-btn {
    background: #ffffff;
    color: #0b3d2e;
}

.zimfab-whatsapp-btn {
    background: #25d366;
    color: #ffffff;
}


/* MOBILE */

@media (max-width: 767px) {

    .zimfab-order-cta {
        padding: 40px 0;
    }

    .zimfab-order-box {
        display: block;
        padding: 30px 20px;
        border-radius: 18px;
    }

    .zimfab-order-box h2 {
        font-size: 1.9rem;
        line-height: 1.12;
    }

    .zimfab-order-box p {
        font-size: .98rem;
    }

    .zimfab-order-actions {
        width: 100%;
        min-width: 0;
        margin-top: 25px;
    }

    .zimfab-order-btn {
        width: 100%;
        min-height: 54px;
        padding: 14px 16px;
        font-size: 1rem;
    }
}


/* SMALL PHONES */

@media (max-width: 380px) {

    .zimfab-order-box {
        padding: 26px 16px;
    }

    .zimfab-order-box h2 {
        font-size: 1.7rem;
    }

    .zimfab-order-btn {
        font-size: .94rem;
    }
}

/* =========================================================
   ZIMFAB MOBILE NAVIGATION
   ========================================================= */

.nav-wrap {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(11, 61, 46, 0.18);
    border-radius: 12px;
    background: #FCFCF8;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0B3D2E;
    border-radius: 10px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel {
    display: none;
}

@media (max-width: 900px) {

    .site-header .main-nav,
    .site-header .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
    }

    .mobile-nav-panel {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        z-index: 9999;
        background: #FCFCF8;
        border: 1px solid rgba(11, 61, 46, 0.12);
        border-radius: 16px;
        padding: 10px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    }

    .mobile-nav-panel.is-open {
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-panel a {
        display: block;
        width: 100%;
        padding: 14px 15px;
        color: #202620;
        text-decoration: none;
        font-weight: 600;
        border-radius: 10px;
    }

    .mobile-nav-panel a:hover,
    .mobile-nav-panel a:focus {
        background: #F7F3EA;
        color: #0B3D2E;
    }

    .mobile-nav-panel .mobile-quote-link {
        margin-top: 6px;
        background: #0B3D2E;
        color: #ffffff;
        text-align: center;
    }

    .mobile-nav-panel .mobile-quote-link:hover,
    .mobile-nav-panel .mobile-quote-link:focus {
        background: #145A43;
        color: #ffffff;
    }
}

@media (max-width: 420px) {

    .brand-copy strong {
        font-size: 0.95rem;
    }

    .brand-copy span {
        font-size: 0.7rem;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }
}



/* ZIMFAB MOBILE DROPDOWN REFINEMENT START */

@media (max-width: 900px) {

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .nav-wrap {
        position: relative;
    }

    .mobile-nav-panel {
        left: auto;
        right: 0;
        width: min(320px, calc(100vw - 32px));
        top: calc(100% + 10px);
        padding: 8px;
        background: #FCFCF8;
        border: 1px solid rgba(11, 61, 46, 0.12);
        border-radius: 14px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
        overflow: hidden;
    }

    .mobile-nav-panel.is-open {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-nav-panel a {
        padding: 12px 14px;
        border-radius: 9px;
        font-size: 0.95rem;
        line-height: 1.25;
    }

    .mobile-nav-panel a:not(.mobile-quote-link) {
        border-bottom: 1px solid rgba(11, 61, 46, 0.06);
    }

    .mobile-nav-panel a:last-of-type {
        border-bottom: none;
    }

    .mobile-nav-panel .mobile-quote-link {
        margin-top: 6px;
        padding: 12px 14px;
        background: #0B3D2E;
        color: #fff;
        border-radius: 10px;
        text-align: center;
        font-weight: 700;
    }

    .mobile-menu-toggle {
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 480px) {

    .mobile-nav-panel {
        width: min(290px, calc(100vw - 24px));
        right: 0;
    }

    .mobile-nav-panel a {
        padding: 11px 12px;
        font-size: 0.93rem;
    }
}

/* ZIMFAB MOBILE DROPDOWN REFINEMENT END */



/* ZIMFAB MOBILE DROPDOWN FINAL START */

@media (max-width: 900px) {

    .nav-wrap {
        position: relative !important;
    }

    .mobile-nav-panel {
        display: none !important;
        position: absolute !important;

        top: calc(100% + 8px) !important;
        right: 0 !important;
        left: auto !important;

        width: 285px !important;
        max-width: calc(100vw - 28px) !important;

        padding: 8px !important;

        background: #FCFCF8 !important;
        border: 1px solid rgba(11, 61, 46, 0.14) !important;
        border-radius: 14px !important;

        box-shadow:
            0 18px 40px rgba(0, 0, 0, 0.18) !important;

        z-index: 99999 !important;
    }

    .mobile-nav-panel.is-open {
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
    }

    .mobile-nav-panel a {
        width: 100% !important;
        padding: 12px 14px !important;

        border-radius: 8px !important;

        font-size: 15px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;

        color: #202620 !important;
        background: transparent !important;
    }

    .mobile-nav-panel a:hover,
    .mobile-nav-panel a:focus {
        background: #F7F3EA !important;
        color: #0B3D2E !important;
    }

    .mobile-nav-panel .mobile-quote-link {
        margin-top: 5px !important;

        background: #0B3D2E !important;
        color: #FFFFFF !important;

        text-align: center !important;
        font-weight: 700 !important;
    }

    .mobile-nav-panel .mobile-quote-link:hover,
    .mobile-nav-panel .mobile-quote-link:focus {
        background: #145A43 !important;
        color: #FFFFFF !important;
    }
}

@media (max-width: 420px) {

    .mobile-nav-panel {
        width: 270px !important;
    }
}

/* ZIMFAB MOBILE DROPDOWN FINAL END */



/* ZIMFAB FOOTER AND CTA FINAL FIX START */

/* -----------------------------------------
   PRODUCT PAGE CTA ALIGNMENT
   ----------------------------------------- */

.wholesale-cta,
.products-cta,
.cta-actions,
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.wholesale-cta a,
.products-cta a,
.cta-actions a,
.hero-actions a {
    flex-shrink: 0;
    text-decoration: none;
}

/* Catch the product-page CTA section even if it uses generic wrappers */
.page-hero .btn,
.product-hero .btn,
section .btn {
    white-space: nowrap;
}

/* -----------------------------------------
   FOOTER BOTTOM
   ----------------------------------------- */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-inner span {
    display: block;
}

.mindtree-credit {
    margin-left: auto;
    text-align: right;
}

@media (max-width: 900px) {

    .wholesale-cta,
    .products-cta,
    .cta-actions,
    .hero-actions {
        gap: 10px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .mindtree-credit {
        margin-left: 0;
        text-align: left;
    }
}

@media (max-width: 600px) {

    .wholesale-cta,
    .products-cta,
    .cta-actions,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .wholesale-cta a,
    .products-cta a,
    .cta-actions a,
    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .footer-bottom-inner {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

/* ZIMFAB FOOTER AND CTA FINAL FIX END */
