:root {
        --ijp-dark: #075b2a;
        --ijp-green: #119245;
        --ijp-yellow: #e4dc25;
        --ijp-cream: #f7fbf1;
        --ijp-text: #172217;
        --ijp-muted: #657260;
        --ijp-white: #ffffff;
    }

    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        color: var(--ijp-text);
        background: #ffffff;
        font-family: "Poppins", sans-serif;
    }

    a {
        text-decoration: none;
    }

    img {
        max-width: 100%;
    }

    .ijp-icon {
        width: 1em;
        height: 1em;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        display: inline-block;
        vertical-align: -0.15em;
    }

    .ijp-tag {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        width: fit-content;
        max-width: 100%;
        margin-bottom: 18px;
        padding: 9px 16px;
        border-radius: 999px;
        color: #172217;
        background: var(--ijp-yellow);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .ijp-tag.light {
        color: var(--ijp-dark);
        background: rgba(17, 146, 69, 0.10);
    }

    /* ================= BREADCRUMB ================= */

    .product-breadcrumb {
        position: relative;
        min-height: 480px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .product-breadcrumb-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,
                rgba(0, 62, 28, 0.88) 0%,
                rgba(0, 62, 28, 0.66) 48%,
                rgba(0, 0, 0, 0.28) 100%);
        z-index: 1;
    }

    .product-breadcrumb::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -170px;
        bottom: -230px;
        border-radius: 50%;
        background: rgba(228, 220, 37, 0.22);
        z-index: 1;
    }

    .product-breadcrumb .container {
        position: relative;
        z-index: 2;
    }

    .product-breadcrumb-content {
        max-width: 900px;
        text-align: center;
        margin: 0 auto;
        color: #ffffff;
        padding: 84px 15px;
    }

    .breadcrumb-small-title {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
        padding: 8px 20px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 50px;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .product-breadcrumb-content h1 {
        font-family: "Oswald", sans-serif;
        font-size: clamp(42px, 6vw, 76px);
        font-weight: 700;
        line-height: 1.05;
        margin-bottom: 18px;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .product-breadcrumb-content p {
        max-width: 780px;
        margin: 0 auto 20px;
        color: rgba(255, 255, 255, 0.88);
        font-size: 16px;
        line-height: 1.8;
    }

    .product-breadcrumb .breadcrumb {
        margin-bottom: 0;
    }

    .product-breadcrumb .breadcrumb-item,
    .product-breadcrumb .breadcrumb-item a {
        color: #ffffff;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
    }

    .product-breadcrumb .breadcrumb-item a:hover,
    .product-breadcrumb .breadcrumb-item.active {
        color: #d7ff8f;
    }

    .product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.75);
    }

    /* ================= PRODUCT SECTION ================= */

    .ijp-product-section {
        position: relative;
        overflow: hidden;
        padding: 92px 0;
        background:
            radial-gradient(circle at 0% 0%, rgba(228, 220, 37, 0.14), transparent 32%),
            radial-gradient(circle at 100% 10%, rgba(17, 146, 69, 0.10), transparent 32%),
            linear-gradient(180deg, #ffffff 0%, var(--ijp-cream) 100%);
    }

    .ijp-section-head {
        max-width: 930px;
        margin: 0 auto 34px;
        text-align: center;
    }

    .ijp-section-head h2 {
        margin: 0 0 16px;
        color: var(--ijp-text);
        font-family: "Oswald", sans-serif;
        font-size: clamp(36px, 5vw, 64px);
        line-height: 1.05;
        font-weight: 700;
        letter-spacing: 0.045em;
        text-transform: uppercase;
    }

    .ijp-section-head h2 span {
        color: var(--ijp-green);
    }

    .ijp-section-head p {
        max-width: 800px;
        margin: 0 auto;
        color: var(--ijp-muted);
        font-size: 15px;
        line-height: 1.85;
    }

    .ijp-filter-panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 280px 150px;
        gap: 14px;
        align-items: center;
        padding: 16px;
        margin-bottom: 34px;
        border-radius: 30px;
        background: #ffffff;
        border: 1px solid rgba(7, 91, 42, 0.10);
        box-shadow: 0 18px 45px rgba(7, 91, 42, 0.10);
    }

    .ijp-search-box,
    .ijp-select-box {
        position: relative;
    }

    .ijp-search-box svg,
    .ijp-select-box svg {
        position: absolute;
        left: 17px;
        top: 50%;
        transform: translateY(-50%);
        width: 19px;
        height: 19px;
        color: var(--ijp-green);
        pointer-events: none;
    }

    .ijp-search-box input,
    .ijp-select-box select {
        width: 100%;
        height: 54px;
        border: 1px solid rgba(7, 91, 42, 0.13);
        border-radius: 999px;
        outline: none;
        padding: 0 18px 0 48px;
        background: #f8fcf3;
        color: var(--ijp-text);
        font-size: 14px;
        font-weight: 700;
        transition: all 0.25s ease;
    }

    .ijp-search-box input:focus,
    .ijp-select-box select:focus {
        border-color: var(--ijp-green);
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(17, 146, 69, 0.10);
    }

    .ijp-result-count {
        min-height: 54px;
        padding: 15px 18px;
        border-radius: 999px;
        color: var(--ijp-text);
        background: var(--ijp-yellow);
        font-size: 13px;
        font-weight: 900;
        text-align: center;
        text-transform: uppercase;
    }

    /* ================= PRODUCT CARD ================= */

    .product-card {
        height: 100%;
        padding: 24px;
        border-radius: 34px;
        background: #ffffff;
        border: 1px solid rgba(7, 91, 42, 0.10);
        box-shadow: 0 18px 42px rgba(7, 91, 42, 0.10);
        transition: all 0.35s ease;
        position: relative;
        overflow: hidden;
    }

    .product-card::before {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -80px;
        top: -80px;
        border-radius: 50%;
        background: rgba(228, 220, 37, 0.22);
        transition: all 0.35s ease;
    }

    .product-card::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 5px;
        background: linear-gradient(90deg, var(--ijp-dark), var(--ijp-green), var(--ijp-yellow));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-10px);
        border-color: rgba(17, 146, 69, 0.25);
        box-shadow: 0 32px 70px rgba(7, 91, 42, 0.18);
    }

    .product-card:hover::before {
        width: 260px;
        height: 260px;
        background: rgba(228, 220, 37, 0.30);
    }

    .product-card:hover::after {
        transform: scaleX(1);
    }

    .product-image-wrap {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 235px;
        margin-bottom: 22px;
    }

    .product-image-link {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 26px;
        overflow: hidden;
        background:
            radial-gradient(circle at 90% 0%, rgba(228, 220, 37, 0.20), transparent 34%),
            linear-gradient(135deg, #ffffff 0%, #f7fbf1 100%);
        border: 1px solid rgba(7, 91, 42, 0.12);
        box-shadow: 0 16px 38px rgba(7, 91, 42, 0.12);
        transition: all 0.35s ease;
    }

    .product-card:hover .product-image-link {
        transform: translateY(-5px);
        border-color: rgba(17, 146, 69, 0.28);
        box-shadow: 0 26px 56px rgba(7, 91, 42, 0.18);
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 18px;
        filter: drop-shadow(0 14px 18px rgba(7, 91, 42, 0.14));
        transition: all 0.4s ease;
    }

    .product-card:hover .product-image {
        transform: scale(1.08);
    }

    .product-image-error,
    .modal-product-img.product-image-error {
        object-fit: contain;
        padding: 45px;
        opacity: 0.45;
    }

    .product-body {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .product-category-badge {
        display: inline-flex;
        margin-bottom: 12px;
        padding: 7px 12px;
        border-radius: 999px;
        color: var(--ijp-dark);
        background: rgba(17, 146, 69, 0.10);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .spec-btn {
        width: 100%;
        border: 0;
        margin: 0 0 14px;
        padding: 0;
        color: var(--ijp-text);
        background: transparent;
        font-family: "Oswald", sans-serif;
        font-size: 25px;
        line-height: 1.18;
        font-weight: 700;
        letter-spacing: 0.035em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .spec-btn:hover {
        color: var(--ijp-green);
    }

    .product-short-desc {
        margin: 0 0 18px;
        color: var(--ijp-muted);
        font-size: 13.5px;
        line-height: 1.7;
    }

    .product-card-actions {
        display: grid;
        gap: 10px;
    }

    .view-details-btn,
    .product-enquiry-btn {
        width: 100%;
        min-height: 46px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        font-size: 12.5px;
        font-weight: 900;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .view-details-btn {
        border: 0;
        color: #172217;
        background: var(--ijp-yellow);
    }

    .view-details-btn:hover {
        color: #ffffff;
        background: var(--ijp-dark);
        transform: translateY(-3px);
    }

    .product-enquiry-btn {
        color: #ffffff;
        background: linear-gradient(135deg, var(--ijp-dark), var(--ijp-green));
        border: 1px solid rgba(7, 91, 42, 0.12);
    }

    .product-enquiry-btn:hover {
        color: #172217;
        background: var(--ijp-yellow);
        transform: translateY(-3px);
    }

    .product-empty-result {
        padding: 44px 20px;
        border-radius: 28px;
        background: #ffffff;
        border: 1px dashed rgba(7, 91, 42, 0.25);
        text-align: center;
    }

    .product-empty-result h3 {
        margin-bottom: 8px;
        color: var(--ijp-dark);
        font-family: "Oswald", sans-serif;
        text-transform: uppercase;
    }

    /* ================= PRODUCT MODAL ================= */

    .product-modal .modal-dialog {
        max-width: 1120px;
    }

    .product-modal .modal-content {
        border: 0;
        border-radius: 34px;
        overflow: hidden;
        box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
    }

    .custom-modal-header {
        border: 0;
        padding: 22px 28px;
        color: #ffffff;
        background:
            radial-gradient(circle at top right, rgba(228, 220, 37, 0.22), transparent 34%),
            linear-gradient(135deg, #031f0e 0%, #06401d 48%, #075b2a 100%);
    }

    .custom-modal-header .modal-title {
        color: #ffffff;
        font-family: "Oswald", sans-serif;
        font-size: 28px;
        line-height: 1.15;
        text-transform: uppercase;
        letter-spacing: 0.035em;
    }

    .custom-modal-header .btn-close {
        filter: invert(1);
        opacity: 1;
    }

    .product-modal .modal-body {
        padding: 30px;
        background:
            radial-gradient(circle at 0% 0%, rgba(228, 220, 37, 0.12), transparent 32%),
            linear-gradient(180deg, #ffffff 0%, #f7fbf1 100%);
    }

    .modal-product-media {
        position: sticky;
        top: 20px;
    }

    .modal-product-img-wrap {
        min-height: 360px;
        padding: 24px;
        border-radius: 30px;
        background: #ffffff;
        border: 1px solid rgba(7, 91, 42, 0.10);
        box-shadow: 0 20px 50px rgba(7, 91, 42, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-product-img {
        width: 100%;
        max-height: 330px;
        object-fit: contain;
        filter: drop-shadow(0 16px 22px rgba(7, 91, 42, 0.14));
    }

    .product-highlight-box {
        margin-top: 16px;
        padding: 22px;
        border-radius: 26px;
        color: #ffffff;
        background: linear-gradient(135deg, var(--ijp-dark), var(--ijp-green));
        box-shadow: 0 18px 42px rgba(7, 91, 42, 0.18);
    }

    .product-name {
        margin: 0 0 10px;
        color: #ffffff;
        font-family: "Oswald", sans-serif;
        font-size: 26px;
        line-height: 1.12;
        text-transform: uppercase;
    }

    .product-tagline {
        margin: 0 0 16px;
        color: rgba(255, 255, 255, 0.84);
        font-size: 13.5px;
        line-height: 1.75;
    }

    .product-quick-points {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .product-quick-points span {
        padding: 7px 11px;
        border-radius: 999px;
        color: #172217;
        background: var(--ijp-yellow);
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .modal-content-box {
        display: grid;
        gap: 18px;
    }

    .content-section {
        padding: 22px;
        border-radius: 26px;
        background: #ffffff;
        border: 1px solid rgba(7, 91, 42, 0.10);
        box-shadow: 0 14px 36px rgba(7, 91, 42, 0.08);
    }

    .section-badge {
        display: inline-flex;
        margin-bottom: 12px;
        padding: 7px 13px;
        border-radius: 999px;
        color: var(--ijp-dark);
        background: rgba(17, 146, 69, 0.10);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .modal-desc {
        margin: 0;
        color: var(--ijp-muted);
        font-size: 14px;
        line-height: 1.85;
    }

    .section-head {
        margin-bottom: 15px;
    }

    .spec-title {
        margin: 0 0 5px;
        color: var(--ijp-dark);
        font-family: "Oswald", sans-serif;
        font-size: 25px;
        text-transform: uppercase;
        letter-spacing: 0.035em;
    }

    .section-subtext {
        margin: 0;
        color: var(--ijp-muted);
        font-size: 13px;
        line-height: 1.6;
    }

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

    .feature-card {
        padding: 13px 14px;
        border-radius: 18px;
        color: #4f624c;
        background: #f7fbf1;
        border: 1px solid rgba(7, 91, 42, 0.08);
        font-size: 13px;
        line-height: 1.55;
        font-weight: 700;
        transition: all 0.25s ease;
    }

    .feature-card strong {
        color: var(--ijp-dark);
    }

    .feature-card:hover {
        color: #ffffff;
        background: linear-gradient(135deg, var(--ijp-dark), var(--ijp-green));
        transform: translateY(-4px);
    }

    .feature-card:hover strong {
        color: var(--ijp-yellow);
    }

    .modal-action-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .ijp-btn {
        min-height: 50px;
        padding: 13px 18px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        font-size: 12.5px;
        font-weight: 900;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.25s ease;
        border: 0;
    }

    .modal-action-row .ijp-btn {
        flex: 1 1 180px;
    }

    .ijp-btn-yellow {
        color: #172217;
        background: var(--ijp-yellow);
    }

    .ijp-btn-yellow:hover {
        color: #ffffff;
        background: var(--ijp-dark);
        transform: translateY(-4px);
    }

    .ijp-btn-green {
        color: #ffffff;
        background: var(--ijp-dark);
    }

    .ijp-btn-green:hover {
        color: #172217;
        background: var(--ijp-yellow);
        transform: translateY(-4px);
    }

    .ijp-btn-white {
        color: var(--ijp-dark);
        background: #ffffff;
        border: 1px solid rgba(7, 91, 42, 0.14);
    }

    .ijp-btn-white:hover {
        color: #172217;
        background: var(--ijp-yellow);
        transform: translateY(-4px);
    }

    /* ================= CTA ================= */

    .ijp-cta-section {
        padding: 34px 0 96px;
        background: #ffffff;
    }

    .ijp-cta-box {
        position: relative;
        overflow: hidden;
        padding: 38px;
        border-radius: 38px;
        color: #ffffff;
        background:
            radial-gradient(circle at top right, rgba(228, 220, 37, 0.22), transparent 34%),
            linear-gradient(135deg, #031f0e 0%, #06401d 48%, #075b2a 100%);
        box-shadow: 0 28px 70px rgba(7, 91, 42, 0.20);
        display: grid;
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 30px;
        align-items: center;
    }

    .ijp-cta-box span {
        display: inline-flex;
        margin-bottom: 13px;
        padding: 7px 13px;
        border-radius: 999px;
        color: #172217;
        background: var(--ijp-yellow);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .ijp-cta-box h2 {
        max-width: 850px;
        margin: 0 0 12px;
        color: #ffffff;
        font-family: "Oswald", sans-serif;
        font-size: clamp(32px, 5vw, 52px);
        line-height: 1.12;
        text-transform: uppercase;
    }

    .ijp-cta-box p {
        max-width: 760px;
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
        font-size: 15px;
        line-height: 1.75;
    }

    .ijp-cta-actions {
        display: grid;
        gap: 12px;
    }

    /* ================= RESPONSIVE ================= */

    @media (max-width: 1199px) {
        .ijp-cta-box {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 991px) {
        .ijp-product-section {
            padding: 76px 0;
        }

        .ijp-filter-panel {
            grid-template-columns: 1fr;
        }

        .modal-product-media {
            position: relative;
            top: auto;
        }

        .modal-product-img-wrap {
            min-height: 300px;
        }

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

    @media (max-width: 767px) {
        .product-breadcrumb {
            min-height: 500px;
        }

        .product-breadcrumb-content {
            padding: 58px 10px;
        }

        .product-breadcrumb-content h1 {
            font-size: 36px;
        }

        .product-breadcrumb-content p {
            font-size: 14px;
        }

        .ijp-section-head h2 {
            font-size: 32px;
            line-height: 1.12;
        }

        .ijp-cta-box {
            padding: 24px;
            border-radius: 28px;
            text-align: center;
        }
    }

    @media (max-width: 575px) {
        .product-card {
            padding: 20px;
            border-radius: 26px;
        }

        .product-image-wrap {
            height: 210px;
        }

        .spec-btn {
            font-size: 22px;
        }

        .product-modal .modal-body {
            padding: 18px;
        }

        .custom-modal-header {
            padding: 18px;
        }

        .custom-modal-header .modal-title {
            font-size: 22px;
        }

        .content-section,
        .product-highlight-box {
            padding: 18px;
            border-radius: 22px;
        }

        .modal-action-row .ijp-btn {
            width: 100%;
            flex: 1 1 100%;
        }
    }

    @media (max-width: 420px) {
        .product-breadcrumb-content h1 {
            font-size: 30px;
        }

        .ijp-tag {
            font-size: 10px;
            padding: 8px 12px;
            line-height: 1.4;
        }

        .product-image-wrap {
            height: 195px;
        }
    }

    /* ================= SVG ICON FIX ================= */

svg.ijp-icon {
    width: 1em;
    height: 1em;
    min-width: 1em;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: -0.15em;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    overflow: visible;
}

svg.ijp-icon use {
    pointer-events: none;
}

.topbar-chip .ijp-icon {
    width: 15px;
    height: 15px;
}

.nav-link .ijp-icon,
.nav-link .nav-icon {
    width: 16px;
    height: 16px;
}

.header-enquiry-btn .ijp-icon {
    width: 17px;
    height: 17px;
}

.header-mobile-call .ijp-icon {
    width: 20px;
    height: 20px;
}

.footer-social a .ijp-icon {
    width: 18px;
    height: 18px;
}

.footer-link-list a .ijp-icon {
    width: 15px;
    height: 15px;
}

.footer-contact-item > span .ijp-icon {
    width: 18px;
    height: 18px;
}

.footer-cta-btn .ijp-icon {
    width: 16px;
    height: 16px;
}

.ijp-btn .ijp-icon,
.view-details-btn .ijp-icon,
.product-enquiry-btn .ijp-icon {
    width: 16px;
    height: 16px;
}

/* =====================================================
   PRODUCT PAGE HEADER PADDING / BOOTSTRAP OVERRIDE FIX
   Keep this block at the very bottom of product.css.
===================================================== */

body#top .sticky-header-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #f7fbf1;
}

body#top .sticky-header-wrapper .topbar {
    position: relative !important;
    z-index: 2;
    padding: 8px 0 !important;
    background: #075b2a !important;
}

body#top .sticky-header-wrapper.is-sticky .topbar {
    padding: 4px 0 !important;
}

body#top .sticky-header-wrapper .site-header {
    position: relative !important;
    top: auto !important;
    z-index: 1;
    padding: 12px 0 !important;
    background: rgba(247, 251, 241, 0.96) !important;
    border-bottom: 1px solid rgba(7, 91, 42, 0.08);
    box-shadow: none;
}

body#top .sticky-header-wrapper.is-sticky .site-header {
    padding: 7px 0 !important;
}

body#top .site-header .navbar.navbar-box,
body#top .sticky-header-wrapper .site-header .navbar.navbar-box {
    width: 100%;
    min-height: 82px;
    padding: 10px 14px 10px 18px !important;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 245, 0.96)),
        radial-gradient(circle at top left, rgba(228, 220, 37, 0.28), transparent 36%),
        radial-gradient(circle at bottom right, rgba(17, 146, 69, 0.12), transparent 35%);
    border: 1px solid rgba(17, 146, 69, 0.12);
    box-shadow: 0 18px 44px rgba(7, 91, 42, 0.12);
    transition: all 0.28s ease;
}

body#top .sticky-header-wrapper.is-sticky .site-header .navbar.navbar-box {
    min-height: 66px;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(7, 91, 42, 0.13);
}

body#top .navbar-brand.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 !important;
    margin: 0 18px 0 0 !important;
}

body#top .brand-logo img {
    width: 160px !important;
    max-width: 160px !important;
    height: auto !important;
    display: block;
    transition: all 0.28s ease;
}

body#top .sticky-header-wrapper.is-sticky .brand-logo img {
    width: 132px !important;
    max-width: 132px !important;
}

body#top .navbar .navbar-nav {
    align-items: center;
    gap: 3px;
}

body#top .navbar .nav-link {
    position: relative;
    padding: 12px 10px !important;
    color: #172217;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    border-radius: 999px;
    white-space: nowrap;
    background: transparent;
    transition: all 0.25s ease;
}

body#top .navbar .nav-link:hover,
body#top .navbar .nav-link.active {
    color: #075b2a;
    background: rgba(17, 146, 69, 0.08);
}

body#top .header-enquiry-btn {
    min-height: 48px;
    padding: 12px 20px !important;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    box-shadow: 0 16px 32px rgba(17, 146, 69, 0.26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    white-space: nowrap;
}

@media (max-width: 1399px) {
    body#top .site-header .navbar.navbar-box,
    body#top .sticky-header-wrapper .site-header .navbar.navbar-box {
        min-height: 76px;
        border-radius: 22px;
    }

    body#top .navbar-collapse {
        margin-top: 14px;
        padding: 12px 0 4px;
        border-top: 1px solid rgba(7, 91, 42, 0.10);
        max-height: calc(100vh - 135px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    body#top .navbar .navbar-nav {
        align-items: stretch !important;
        gap: 8px;
        padding-top: 4px;
    }

    body#top .navbar .nav-link {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 13px 15px !important;
        border-radius: 16px;
        background: rgba(7, 91, 42, 0.045);
        font-size: 13px;
    }

    body#top .header-btn-wrap {
        margin-left: 0;
    }

    body#top .header-enquiry-btn {
        width: 100%;
        min-height: 52px;
        margin-top: 4px;
    }
}

@media (max-width: 991px) {
    body#top .sticky-header-wrapper .topbar {
        padding: 6px 0 !important;
    }

    body#top .sticky-header-wrapper.is-sticky .topbar {
        padding: 4px 0 !important;
    }

    body#top .sticky-header-wrapper .site-header {
        padding: 8px 0 !important;
    }

    body#top .sticky-header-wrapper.is-sticky .site-header {
        padding: 6px 0 !important;
    }

    body#top .brand-logo img {
        width: 145px !important;
        max-width: 145px !important;
    }

    body#top .sticky-header-wrapper.is-sticky .brand-logo img {
        width: 122px !important;
        max-width: 122px !important;
    }
}

@media (max-width: 767px) {
    body#top .site-header .navbar.navbar-box,
    body#top .sticky-header-wrapper .site-header .navbar.navbar-box {
        min-height: 66px;
        padding: 9px 10px !important;
        border-radius: 20px;
    }

    body#top .brand-logo {
        max-width: calc(100% - 106px);
    }

    body#top .brand-logo img {
        width: 155px !important;
        max-width: 155px !important;
    }

    body#top .navbar .nav-link {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    body#top .brand-logo img {
        width: 126px !important;
        max-width: 126px !important;
    }

    body#top .sticky-header-wrapper.is-sticky .brand-logo img {
        width: 112px !important;
        max-width: 112px !important;
    }
}

/* SVG icon consistency for product page */
body#top svg.ijp-icon {
    width: 1em;
    height: 1em;
    min-width: 1em;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: -0.15em;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    overflow: visible;
}



/* =====================================================
   PRODUCT PAGE SVG ICON FIX ONLY
   No header design override here
===================================================== */

body#top svg.ijp-icon {
    width: 1em;
    height: 1em;
    min-width: 1em;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: -0.15em;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    overflow: visible;
}

body#top svg.ijp-icon path,
body#top svg.ijp-icon circle,
body#top svg.ijp-icon line,
body#top svg.ijp-icon polyline,
body#top svg.ijp-icon polygon {
    fill: none !important;
    stroke: currentColor !important;
}

body#top .topbar-chip .ijp-icon {
    width: 15px;
    height: 15px;
    color: currentColor;
}

body#top .nav-link .ijp-icon {
    width: 16px;
    height: 16px;
    color: currentColor;
}

body#top .header-mobile-call .ijp-icon {
    width: 20px;
    height: 20px;
    color: currentColor;
}

body#top .header-enquiry-btn .ijp-icon {
    width: 17px;
    height: 17px;
    color: currentColor;
}

body#top .ijp-btn .ijp-icon,
body#top .view-details-btn .ijp-icon,
body#top .product-enquiry-btn .ijp-icon,
body#top .footer-social .ijp-icon,
body#top .footer-link-list .ijp-icon,
body#top .footer-contact-item .ijp-icon,
body#top .footer-cta-btn .ijp-icon {
    color: currentColor;
}
body#top .topbar-chip .ijp-icon {
    width: 15px;
    height: 15px;
    color: rgb(250 204 21);
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

}


/* =====================================================
   PACKET REPRESENTATION - ONLY IMAGE SLIDER
   Original packet image ratio: 368 x 526
===================================================== */

.ijp-packet-representation {
    margin: 0 0 44px;
}

.ijp-packet-box {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 20px 50px rgba(7, 91, 42, 0.10);
}

.ijp-packet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.ijp-packet-head h2 {
    margin: 0;
    color: var(--ijp-text);
    font-family: "Oswald", sans-serif;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.ijp-packet-head h2 span {
    color: var(--ijp-green);
}

.ijp-packet-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ijp-packet-arrow {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #172217;
    background: var(--ijp-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ijp-packet-arrow:first-child {
    transform: rotate(180deg);
}

.ijp-packet-arrow:hover {
    color: #ffffff;
    background: var(--ijp-dark);
}

.ijp-packet-arrow .ijp-icon {
    width: 18px;
    height: 18px;
}

.ijp-packet-slider {
    overflow: hidden;
}

.ijp-packet-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 0 6px;
    scrollbar-width: none;
}

.ijp-packet-track::-webkit-scrollbar {
    display: none;
}

.ijp-packet-slide {
    flex: 0 0 calc((100% - 72px) / 5);
    aspect-ratio: 368 / 526;
    margin: 0;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 14px 34px rgba(7, 91, 42, 0.10);
    transition: all 0.3s ease;
}

.ijp-packet-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(7, 91, 42, 0.16);
}

.ijp-packet-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
}

/* Large tablet */
@media (max-width: 1199px) {
    .ijp-packet-slide {
        flex: 0 0 calc((100% - 54px) / 4);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .ijp-packet-slide {
        flex: 0 0 calc((100% - 36px) / 3);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ijp-packet-box {
        padding: 20px;
        border-radius: 24px;
    }

    .ijp-packet-head {
        flex-direction: column;
        text-align: center;
        margin-bottom: 18px;
    }

    .ijp-packet-controls {
        justify-content: center;
    }

    .ijp-packet-slide {
        flex: 0 0 calc((100% - 18px) / 2);
        border-radius: 16px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .ijp-packet-slide {
        flex: 0 0 72%;
    }

    .ijp-packet-arrow {
        width: 42px;
        height: 42px;
    }
}

/* Very small mobile */
@media (max-width: 360px) {
    .ijp-packet-slide {
        flex: 0 0 78%;
    }
}

/* =====================================================
   PRODUCT PAGE WHATSAPP STICKY FINAL FIX
   Paste at the very bottom of product.css
===================================================== */

.ij-wa-widget {
    position: fixed !important;
    right: 24px !important;
    bottom: 24px !important;
    left: auto !important;
    z-index: 9999999 !important;
    font-family: "Poppins", sans-serif;
}

.ij-wa-float {
    position: relative !important;
    width: 64px !important;
    height: 64px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #075b2a, #119245) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 18px 40px rgba(7, 91, 42, 0.35) !important;
    z-index: 2 !important;
}

.ij-wa-float:hover {
    transform: translateY(-5px) scale(1.04);
}

.ij-wa-float svg {
    width: 32px !important;
    height: 32px !important;
    position: relative;
    z-index: 2;
}

.ij-wa-float svg,
.ij-wa-popup svg {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.ij-wa-pulse {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    background: rgba(17, 146, 69, 0.24);
    animation: ijWaPulse 1.7s infinite;
    pointer-events: none !important;
}

@keyframes ijWaPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }

    70% {
        transform: scale(1.22);
        opacity: 0;
    }

    100% {
        transform: scale(1.22);
        opacity: 0;
    }
}

.ij-wa-popup {
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    bottom: 82px !important;
    width: 340px !important;
    max-width: calc(100vw - 34px) !important;
    overflow: hidden !important;
    border-radius: 26px !important;
    background: #ffffff !important;
    border: 1px solid rgba(7, 91, 42, 0.12) !important;
    box-shadow: 0 28px 70px rgba(7, 91, 42, 0.25) !important;
    transform: translateY(18px) scale(0.94) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: all 0.28s ease !important;
}

.ij-wa-popup.show {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.ij-wa-popup::before {
    content: "";
    position: absolute;
    right: 24px;
    bottom: -9px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    transform: rotate(45deg);
    border-right: 1px solid rgba(7, 91, 42, 0.12);
    border-bottom: 1px solid rgba(7, 91, 42, 0.12);
}

.ij-wa-close {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    z-index: 99 !important;
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.18) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}

.ij-wa-close:hover {
    color: #075b2a !important;
    background: #e4dc25 !important;
}

.ij-wa-close svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    stroke-width: 2.5 !important;
}

.ij-wa-header {
    padding: 24px 22px !important;
    color: #ffffff !important;
    background:
        radial-gradient(circle at top right, rgba(228, 220, 37, 0.22), transparent 38%),
        linear-gradient(135deg, #003918 0%, #075b2a 55%, #119245 100%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.ij-wa-logo {
    width: 62px !important;
    height: 62px !important;
    min-width: 62px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    padding: 7px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ij-wa-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.ij-wa-header h4 {
    margin: 0 0 4px !important;
    color: #ffffff !important;
    font-family: "Oswald", sans-serif !important;
    font-size: 23px !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.ij-wa-header p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
}

.ij-wa-body {
    padding: 22px !important;
    background: #ffffff !important;
}

.ij-wa-message {
    margin-bottom: 16px !important;
    padding: 17px 18px !important;
    border-radius: 20px 20px 20px 4px !important;
    background: #f7fbf1 !important;
    border: 1px solid rgba(7, 91, 42, 0.10) !important;
}

.ij-wa-message span {
    display: block !important;
    margin-bottom: 5px !important;
    color: #075b2a !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.ij-wa-message p {
    margin: 0 !important;
    color: #172217 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    font-weight: 700 !important;
}

.ij-wa-chat-btn,
.ij-wa-call-btn {
    width: 100% !important;
    min-height: 48px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    font-size: 12.5px !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.ij-wa-chat-btn {
    color: #ffffff !important;
    background: linear-gradient(135deg, #075b2a, #119245) !important;
    margin-bottom: 10px !important;
}

.ij-wa-call-btn {
    color: #075b2a !important;
    background: #e4dc25 !important;
}

.ij-wa-chat-btn:hover,
.ij-wa-call-btn:hover {
    color: #ffffff !important;
    background: #031f0e !important;
    transform: translateY(-3px);
}

.ij-wa-chat-btn svg,
.ij-wa-call-btn svg {
    width: 17px !important;
    height: 17px !important;
}

@media (max-width: 575px) {
    .ij-wa-widget {
        right: 16px !important;
        bottom: 16px !important;
    }

    .ij-wa-float {
        width: 58px !important;
        height: 58px !important;
    }

    .ij-wa-float svg {
        width: 29px !important;
        height: 29px !important;
    }

    .ij-wa-popup {
        width: 315px !important;
        bottom: 76px !important;
        border-radius: 22px !important;
    }

    .ij-wa-header {
        padding: 20px 18px !important;
    }

    .ij-wa-logo {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
    }

    .ij-wa-header h4 {
        font-size: 20px !important;
    }

    .ij-wa-body {
        padding: 18px !important;
    }
}