:root {
			--primary: #2c3860;
			--primary-dark:#9c9f07;
			--text: #262626;
			--muted: #666;
			--border: #e8e8e8;
			--soft: #fafafa;
		}

		/* =========================================================
			PRODUCT LISTING PAGE
			========================================================= */

 a.mediaBrochureLink {
    background: #9c9f07;
}


/* =========================================================
   PRODUCT LISTING PAGE
========================================================= */

.productListingPage {
    padding: 16px 0 30px;
}
tbody, td, tfoot, th, thead, tr {
    border: 1px solid #eee;
    padding: 7px;
    font-size: 15px;
}
table{width: 100%;}
.productHeader {
    width: 100%;
    display: flow-root;
    margin-bottom: 18px;
}

.productHeaderTitle {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}


.productHeader .productMedia {
    position: relative;
    z-index: 9;
    float: right;
    max-width: 420px;
    margin: 0 0 15px 15px;
}

.productHeader ul {
    margin: 12px 0;
    padding: 0;
}


/*
.productHeader li::before {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23333" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0"/></svg>');
    position: absolute;
    top: 3px;
    left: 0;
} */

.scrolbar-width-list{max-height: 570px;overflow-y: auto;padding-right: 15px;}
.scrolbar-width-list p{text-align: justify;}
/* =========================================================
   PRODUCTS CHIPS
========================================================= */

.productTabWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.productTabWrapper::-webkit-scrollbar {
    display: none;
}

.productTabWrapper a {
    flex: 0 0 auto;
    padding: 8px 13px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: #fff;
    color: #444;
    font-size: 12px;
    font-weight: 600;
}
.productHeader li {
    padding-left: 20px;
    display: inline-block;
    position: relative;
}
.productTabWrapper a.active,
.productTabWrapper a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff5f6;
}


/* =========================================================
   PRODUCT ITEM
========================================================= */

.productItem2026 {
    padding: 20px 0;
    border-bottom: 1px solid #e9e9e9;
    scroll-margin-top: 10px;
}

.productItem2026:last-child {
    border-bottom: 0;
}


/* =========================================================
   PRODUCT GALLERY
========================================================= */

.productMedia {
    width: 100%;
}

.productMediaBox {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
}

.productMediaLink {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}

.productMediaLink.video-active {
    cursor: pointer;
}

.mainProductImg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.memediaHidden {
    display: none !important;
}

.mediaVideoPlay {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: red;
    color: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .25);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.mediaVideoPlay svg {
    width: 28px;
    height: 28px;
}


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

.mediaQuoteWrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.mediaQuoteBtn,
.mediaBrochureLink {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: white;
    padding: 8px 14px;
    text-align: center;
    background: #2c3860;
    text-transform: capitalize;
    border: 0;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.mediaQuoteBtn:active,
.mediaBrochureLink:active {
    background: #9c9f07;
    color: #fff;
}


/* =========================================================
   THUMB SLIDER
========================================================= */

.mediaThumbWrapper {
    --thumb-width: 60px;
    --thumb-height: 54px;
    --thumb-gap: 7px;
    --visible-thumbs: 4;

    position: relative;
    width: calc((var(--thumb-width) * var(--visible-thumbs)) + (var(--thumb-gap) * (var(--visible-thumbs) - 1)));
    max-width: calc(100% - 44px);
    margin: 14px auto 0;
}

.mediaThumbGallery {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--thumb-gap);
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.mediaThumbGallery::-webkit-scrollbar {
    display: none;
}

.mediaThumb {
    position: relative;
    width: var(--thumb-width);
    height: var(--thumb-height);
    flex: 0 0 var(--thumb-width);
    overflow: hidden;
    padding: 3px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    scroll-snap-align: start;
}

.mediaThumb.active {
    border-color: var(--primary);
}

.mediaThumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 3px;
}

.video-thumb::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 20px;
    border-radius: 5px;
    background:
        red
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393'/%3E%3C/svg%3E")
        center / 14px no-repeat;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.mediaThumbArrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 22px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #222;
    cursor: pointer;
    transform: translateY(-50%);
}

.mediaThumbArrow svg {
    width: 18px;
    height: 18px;
}

.mediaThumbPrev {
    left: -25px;
}

.mediaThumbNext {
    right: -25px;
}

.mediaThumbArrow:disabled {
    opacity: .25;
    cursor: default;
}

.mediaThumbArrow.is-hidden {
    display: none !important;
}

.mediaThumbGallery.is-static {
    justify-content: center;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.productContent {
    margin-top: 20px;
}

.productItemTitle,
.productName {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}


/* =========================================================
   PRODUCT PRICE / MOQ / QUICK LINKS
========================================================= */

.companyProLink {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
}


/* PRICE */

.productPrice {
    grid-column: 1 / -1;
    padding: 14px 15px 12px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, #fff5f6 0%, #fff 72%);
    color: var(--primary);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}

.productPrice::before {
    content: "Price";
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.productPrice span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}


/* MOQ */

.minimumOrder {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    border-right: 1px solid var(--border);
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
    font-weight: 400;
    white-space: nowrap;
}

.minimumOrder strong {
    flex: 0 0 auto;
    color: var(--text);
    font-size: 11px;
    font-weight: 700;
}


/* QUICK LINKS */

.quickLinks {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    background: #fff;
}

.quickLinks a {
    position: relative;
    min-width: 0;
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 6px;
    border: 0;
    border-right: 1px solid var(--border);
    background: #fff;
    color: #555;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    text-align: center;
    white-space: normal;
    transition: .2s ease;
}

.quickLinks a:last-child {
    border-right: 0;
}

.quickLinks a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    left: 50%;
    height: 2px;
    background: var(--primary);
    transition: .2s ease;
}

.quickLinks a:hover,
.quickLinks a:focus,
.quickLinks a.active {
    color: var(--primary);
    background: #fff7f8;
}

.quickLinks a:hover::after,
.quickLinks a:focus::after,
.quickLinks a.active::after {
    right: 10px;
    left: 10px;
}


/* =========================================================
   QUICK SPECIFICATIONS
========================================================= */

.quickSpecifications {
    width: 100%;
    max-width: 100%;
    margin-bottom: 14px;
}

.productTable {
    width: 100%;
    margin: 0;
    border: 1px solid var(--border);
    border-collapse: collapse;
}

.productTable th,
.productTable td {
    padding: 7px 8px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
    vertical-align: top;
}

.productTable th {
    width: 115px;
    color: #454545;
    font-weight: 600;
    background: var(--soft);
}

.productTable td {
    color: #565656;
    font-weight: 400;
    word-break: break-word;
}

.productTable tr:last-child th,
.productTable tr:last-child td {
    border-bottom: 0;
}


/* =========================================================
   SCROLL TARGETS
========================================================= */

#packaging-delivery,
#company-information,
#company-infrastructure,
#product-faq {
    scroll-margin-top: 75px;
}


/* =========================================================
   PRODUCT DESCRIPTION
========================================================= */

.productDescription {
    width: 100%;
    max-width: 720px;
    margin-top: 12px;
    color: #444;
    font-size: 14px;
    line-height: 1.65;
}

.productDescription p {
    margin: 0 0 8px;
}

.productDescription ul {
    margin: 8px 0 12px;
    padding: 0;
}

.productDescription li {
    position: relative;
    margin-bottom: 4px;
    padding-left: 20px;
    font-weight: 400;
    list-style: none;
    line-height: 24px;
    font-size: 16px;
    color: #363636;
    letter-spacing: 0.5px;
}
.productDescription strong {
    font-size: 16px;
}
.productDescription li::before {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23333" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0"/></svg>');
    position: absolute;
    top: 3px;
    left: 0;
}


/* =========================================================
   BUTTONS
========================================================= */

.btnWrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.interestBtn,
.viewDetailsBtn {
    width: max-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 14px;
    text-align: center;
    text-transform: capitalize;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.interestBtn {
    border: 0;
    background: var(--primary);
    color: #fff;
}

.interestBtn:active {
    background: var(--primary-dark);
}

.viewDetailsBtn {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

.viewDetailsBtn:hover,
.viewDetailsBtn:focus {
    background: var(--primary);
    color: #fff;
}


/* =========================================================
   375+
========================================================= */

@media (min-width: 375px) {

    .productMediaBox {
        height: 330px;
    }

    .mediaThumbWrapper {
        --thumb-width: 66px;
        --thumb-height: 58px;
        --thumb-gap: 8px;
    }
}


/* =========================================================
   576+
========================================================= */

@media (min-width: 576px) {

    .productListingPage {
        padding: 24px 0 70px;
    }

    .productHeaderTitle {
        font-size: 28px;
    }

    .productMediaBox {
        height: 390px;
    }

    .mediaThumbWrapper {
        --thumb-width: 72px;
        --thumb-height: 62px;
        --thumb-gap: 10px;
        max-width: none;
    }

    .mediaThumbPrev {
        left: -28px;
    }

    .mediaThumbNext {
        right: -28px;
    }

    .productItemTitle,
    .productName {
        font-size: 24px;
    }

    .productPrice {
        padding: 15px 17px 13px;
        font-size: 25px;
    }

    .minimumOrder {
        gap: 6px;
        padding: 11px 14px;
        font-size: 12px;
    }

    .minimumOrder strong {
        font-size: 12px;
    }

    .quickLinks a {
        min-height: 44px;
        padding: 8px;
        font-size: 12px;
    }

    .productTable th,
    .productTable td {
        padding: 8px 10px;
        font-size: 14px;
    }

    .productTable th {
        width: 145px;
    }

    .interestBtn,
    .viewDetailsBtn {
        width: auto;
        min-width: 220px;
    }
}


/* =========================================================
   768+
========================================================= */

@media (min-width: 768px) {

    .productMediaBox {
        height: 390px;
    }

    .mediaThumbWrapper {
        --thumb-width: 82px;
        --thumb-height: 70px;
        --thumb-gap: 12px;
    }

    .minimumOrder {
        padding: 11px 15px;
        font-size: 13px;
    }

    .minimumOrder strong {
        font-size: 13px;
    }

    .quickLinks a {
        font-size: 13px;
    }
}


/* =========================================================
   992+
========================================================= */

@media (min-width: 992px) {

    .productListingPage {
        padding: 28px 0 20px;
    }

    .productHeaderTitle {
        font-size: 32px;
    }

  .productItem2026{
    position: relative;
    padding: 30px 0;
    overflow: visible !important;
}

.productItem2026 > .row{
    position: relative;
    align-items: stretch;
    overflow: visible !important;
}

.productItem2026 > .row > [class*="col-"]{
    position: relative;
    overflow: visible !important;
}

.productItemTitle{
        position: sticky;
        top: 63px;
        z-index: 99;
        margin: 0 0 14px;
        background: #fff;
        font-size: 24px;
}
.productItemTitle a{
    color: var(--text);
}
.productItemTitle a:hover,.productItemTitle a:focus{
    color: var(--primary-dark);
}
.productMediaBox{
    height: 420px;
}
.accordion-header {
    padding: 0;
    margin: 0px;
}
.mediaThumbWrapper {
        --thumb-width: 95px;
        --thumb-height: 82px;
        --thumb-gap: 15px;
    }

    .mediaThumbPrev {
        left: -34px;
    }

    .mediaThumbNext {
        right: -34px;
    }

    .productContent {
        margin-top: 0;
        padding-left: 20px;
    }

    .companyProLink {
        border-radius: 8px;
    }

    .productPrice {
        padding: 15px 17px 13px;
        font-size: 27px;
    }

    .minimumOrder {
        gap: 7px;
        padding: 11px 17px;
        font-size: 16px;
    }

    .minimumOrder strong {
        font-size: 16px;
    }

    .quickLinks a {
        min-height: 46px;
        padding: 9px 10px;
        font-size: 16px;
    }

    .productTable th,
    .productTable td {
        font-size: 16px;
    }

    .productTable th {
        width: 220px;
    }

    .productDescription {
        font-size: 16px;
    }

    .mediaThumb:hover {
        border-color:#9c9f07;
    }

    .mediaQuoteBtn:hover,
    .mediaBrochureLink:hover {
        background: #9c9f07;
        color: #fff;
    }

    .interestBtn:hover {
        background: #9c9f07;
    }

    #packaging-delivery,
    #company-information,
    #company-infrastructure,
    #product-faq {
        scroll-margin-top: 110px;
    }
}
#packaging-delivery, #company-information, #company-infrastructure, #product-faq {
        width: 100%;
        float: left;
    }
.productFaqSection {
        background: #f9f9f9;
    }
/* =========================================================
   PACKAGING & DELIVERY
========================================================= */

.packagingDeliverySection {
    padding: 24px 0 45px;
    border-top: 0px solid var(--border);
   background: #f9f9f9;
    width: 100%;
    float: left;
}

.packagingDeliveryHeader {
    margin-bottom: 15px;
}

.packagingDeliveryTitle {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

/* .packagingDeliveryHeader p {
    max-width: 800px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
} */

.packagingDeliveryTable {
    width: 100%;
    margin: 0;
    border: 1px solid var(--border);
    border-collapse: collapse;
    background: #fff;
}

.packagingDeliveryTable th,
.packagingDeliveryTable td {
    padding: 9px 10px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
}

.packagingDeliveryTable th {
    width: 45%;
    background: var(--soft);
    color: #444;
    font-weight: 600;
}

.packagingDeliveryTable td {
    color: #565656;
    font-weight: 400;
}

.packagingDeliveryTable tr:last-child th,
.packagingDeliveryTable tr:last-child td {
    border-bottom: 0;
}

.packagingPhotoGallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
}

.packagingPhotoItem {
    position: relative;
    height: 200px;
    display: block;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--soft);
}

.packagingPhotoItem img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.packagingPhotoItem::after {
    content: "";
    position: absolute;
    inset: 40% 0 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .72));
    pointer-events: none;
}

.packagingPhotoItem span {
    position: absolute;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 2;
    color: #fff;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
}

.packagingQuickInfo {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
}

.packagingQuickItem {
    position: relative;
    padding: 14px 16px 14px 24px;
}

.packagingQuickItem:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.packagingQuickItem::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 12px;
    width: 3px;
    border-radius: 3px;
    background: var(--primary);
}

.packagingQuickItem span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.4;
}

.packagingQuickItem strong {
    display: block;
    color: var(--text);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

@media (min-width: 576px) {

    .packagingDeliverySection {
        padding: 28px 0 55px;
    }

    .packagingDeliveryTitle {
        font-size: 24px;
    }

    /* .packagingDeliveryHeader p {
        font-size: 14px;
    } */

    .packagingDeliveryTable th,
    .packagingDeliveryTable td {
        /* padding: 10px 12px; */
             padding: 10px 12px;
        line-height: 23px;
        font-size: 16px;
        color: #363636;
    }

    .packagingDeliveryTable th {
        width: 220px;
    }

    .packagingPhotoGallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 18px;
    }

    .packagingPhotoItem {
        height: 190px;
    }

    .packagingPhotoItem:last-child {
        grid-column: 1 / -1;
    }

    .packagingQuickItem strong {
        font-size: 16px;
    }
}

@media (min-width: 768px) {

    .packagingDeliverySection {
        padding: 32px 0 60px;
    }

    .packagingPhotoItem {
        height: 210px;
    }

    .packagingQuickInfo {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 18px;
    }

    .packagingQuickItem:not(:last-child) {
        border-right: 1px solid var(--border);
        border-bottom: 0;
    }
}

@media (min-width: 992px) {

    .packagingDeliverySection {
        padding: 35px 0 70px;
    }

    .packagingDeliveryTitle {
        font-size: 26px;
    }

    .packagingPhotoGallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        margin-top: 20px;
    }

    .packagingPhotoItem,
    .packagingPhotoItem:last-child {
        height: 220px;
        grid-column: auto;
    }

    .packagingPhotoItem:hover img {
        transform: scale(1.04);
    }

    .packagingQuickInfo {
        margin-top: 20px;
    }

    .packagingQuickItem {
        padding: 17px 20px 17px 24px;
    }

    .packagingQuickItem::before {
        top: 17px;
        bottom: 17px;
    }
}


/* =========================================================
   COMPANY PROFILE
========================================================= */

.companyProfileSection {
    padding: 25px 0 50px;
    border-top: 0px solid var(--border);
    background: #fff;
}

.companyProfileHeader {
    margin-bottom: 18px;
}

.companyProfileTitle {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.companyProfileHeader p {
    max-width: 820px;
    margin: 0;
    color: var(--muted);
    /* font-size: 13px;
    line-height: 1.6; */
}


/* =========================================================
   COMPANY PROFILE VIDEO
========================================================= */

.companyProfileVideo {
    position: relative;
    cursor: pointer;
}

.companyProfileVideo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .06);
    transition: background .25s ease;
}

.companyVideoPlay {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 58px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background:red;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .22);
    transform: translate(-50%, -50%);
    transition: transform .25s ease, background .25s ease;
}

.companyVideoPlay svg {
    width: 24px;
    height: 24px;
}

.companyProfileMedia {
    position: relative;
}

.companyProfileImage {
    height: 280px;
    display: block;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--soft);
}

.companyProfileImage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.companyProfileImageInfo {
    position: relative;
    z-index: 2;
    margin: -28px 14px 0;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .07);
}

.companyProfileImageInfo strong {
    display: block;
    margin-bottom: 2px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.companyProfileImageInfo span {
    display: block;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.4;
}

.companyProfileFeatures {
    margin: 18px 0 0;
    padding: 0;
}

.companyProfileFeatures li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 24px;
    color: #444;
    font-size: 15px;
    line-height: 1.5;
    list-style: none;
}

.companyProfileFeatures li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff5f6;
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
}

.companyInfoGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.companyInfoCard {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 13px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.companyInfoIcon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff5f6;
    color: var(--primary);
    transition: background .2s ease, color .2s ease;
}

.companyInfoIcon svg {
    width: 21px;
    height: 21px;
    display: block;
}

.companyInfoContent {
    flex: 1;
    min-width: 0;
}

.companyInfoContent span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.3;
}
.companyProfileDescription h3, .companyProfileDescription .title3 {
    font-size: 20px;
    margin: 10px 0px;
    font-weight: 700;
    overflow: hidden;
}
.companyInfoContent strong {
    display: block;
    color: var(--text);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    word-break: break-word;
}

.companyInfoContent .companyVerified {
    color: #198754;
}

.companyProfileDescription {
    margin-top: 18px;
}

.companyProfileDescription .title3 {
    margin: 0 0 7px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.4;
        text-align: left;
    font-weight: 700;
}

/* .companyProfileDescription p {
    margin: 0 0 10px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
} */

.companyProfileDescription p:last-child {
    margin-bottom: 0;
}

.companyProfileAction {
    margin-top: 17px;
}

.companyProfileBtn {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 15px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    transition: .2s ease;
}

.companyProfileBtn svg {
    width: 15px;
    height: 15px;
    transition: transform .2s ease;
}

.companyProfileBtn:hover {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    color: #fff;
}

.companyProfileBtn:hover svg {
    transform: translateX(3px);
}

@media (min-width: 576px) {

    .companyProfileSection {
        padding: 30px 0 55px;
    }

    .companyProfileTitle {
        font-size: 24px;
    }

    /* .companyProfileHeader p {
        font-size: 14px;
    } */

    .companyProfileImage {
        height: 340px;
    }

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

    .companyInfoCard {
        min-height: 74px;
        padding: 13px;
    }

    .companyInfoIcon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .companyInfoIcon svg {
        width: 22px;
        height: 22px;
    }

    .companyInfoContent strong {
        font-size: 16px;
    }

    .companyProfileDescription .title3 {
        font-size: 19px;
    }
}

@media (min-width: 768px) {

    .companyProfileSection {
        padding: 35px 0 60px;
    }

    .companyProfileImage {
        height: 390px;
    }
}

@media (min-width: 992px) {

    .companyProfileSection {
        padding: 40px 0 70px;
    }

    .companyProfileHeader {
        margin-bottom: 20px;
    }

    .companyProfileTitle {
        font-size: 26px;
    }

    .companyProfileVideo:hover::after {
        background: rgba(0, 0, 0, .14);
    }

    .companyProfileVideo:hover .companyVideoPlay {
        background: var(--primary-dark);
        transform: translate(-50%, -50%) scale(1.08);
    }

    .companyProfileImage {
        height: 380px;
    }

    .companyProfileContent {
        padding-left: 10px;
    }

    .companyProfileImage:hover img {
        transform: scale(1.035);
    }

    .companyInfoCard {
        min-height: 76px;
    }

    .companyInfoCard:hover {
        border-color: #ddd;
        box-shadow: 0 5px 16px rgba(0, 0, 0, .04);
    }

    .companyInfoCard:hover .companyInfoIcon {
        background: var(--primary);
        color: #fff;
    }

    .companyProfileDescription {
        margin-top: 20px;
    }

    .companyProfileDescription .title1 {
        font-size: 20px;
    }
}


/* =========================================================
   COMPANY INFRASTRUCTURE
========================================================= */

.infraShowcaseHeader {
    margin-bottom: 20px;
}

.infraShowcaseTitle {
    margin: 0;
    color: var(--text);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.infraShowcaseHeader p {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--muted);
    /* font-size: 13px;
    line-height: 1.65; */
}

.infraGalleryGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.infraGalleryItem {
    position: relative;
    height: 250px;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #e9ecef;
}

.infraGalleryItem img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.infraGalleryItem::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, .18) 25%,
        rgba(0, 0, 0, .82) 100%
    );
}

.infraGalleryInfo {
    position: absolute;
    right: 16px;
    bottom: 15px;
    left: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.infraGalleryInfo span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}

.infraGalleryInfo strong {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

@media (min-width: 576px) {

    .infraShowcaseTitle {
        font-size: 24px;
    }

    /* .infraShowcaseHeader p {
        font-size: 14px;
    } */

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

    .infraGalleryItem {
        height: 260px;
    }
}

@media (min-width: 768px) {

    .infraGalleryItem {
        height: 290px;
    }
}

@media (min-width: 992px) {

    .infraShowcaseHeader {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 24px;
    }

    .infraShowcaseHeader p {
        width: 48%;
        margin: 0;
    }

    .infraShowcaseTitle {
        font-size: 24px;
    }

    .infraGalleryGrid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .infraGalleryItem {
        height: 300px;
    }

    .infraGalleryItem:hover img {
        transform: scale(1.05);
    }
}


/* =========================================================
   PRODUCT FAQ
========================================================= */

.productFaqSection {
    padding: 30px 0 55px;
    border-top: 0px solid var(--border);
    background: #fffaf2;
}

.faqIntro {
    position: relative;
}

.faqEyebrow {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.faqTitle {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}


.faqHelpCard {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 18px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--soft);
}

.faqHelpIcon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #fff;
    color: var(--primary);
}

.faqHelpCard span {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 15px;
}

.faqHelpCard strong {
    display: block;
    color: var(--text);
    font-size: 18px;
    line-height: 1.4;
}

.faqEnquiryBtn {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
    border: 0;
    background: var(--primary);
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.faqEnquiryBtn svg {
    width: 15px;
    height: 15px;
}

.productFaqAccordion {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.productFaqAccordion .accordion-item {
    overflow: hidden;
    border: 1px solid var(--border) !important;
    border-radius: 10px;
    background: #fff;
}

.productFaqAccordion .accordion-button {
min-height: 55px;
        padding: 5px 48px 5px 14px;
    gap: 10px;
    background: #fff;
    color: var(--text);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
    box-shadow: none;
}

.productFaqAccordion .accordion-button:not(.collapsed) {
    background: #fff7f8;
    color: var(--text);
    box-shadow: none;
}

.productFaqAccordion .accordion-button:focus {
    border: 0;
    box-shadow: none;
}

.faqNumber {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background:#efefef;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.productFaqAccordion .accordion-button:not(.collapsed) .faqNumber {
    background: var(--primary);
    color: #fff;
}

/* .productFaqAccordion .accordion-button::after {
    position: absolute;
    right: 14px;
    width: 25px;
    height: 25px;
    background-size: 15px;
} */

.productFaqAccordion .accordion-body {
    padding: 0 14px 15px 52px;
    color: #555;
    font-size: 13px;
    line-height: 1.65;
}

@media (min-width: 576px) {

    .productFaqSection {
        padding: 35px 0 60px;
    }

    .faqTitle {
        font-size: 24px;
    }


    .productFaqAccordion .accordion-button {
min-height: 55px;
        padding: 10px 10px 10px 10px;
        font-size: 16px;        background: #ffeac400;
    }
.accordion-item {
    margin-bottom: 0px;}

    .productFaqAccordion .accordion-body {
        padding: 14px 16px 17px 25px;
        font-size: 16px;
    }
.accordion-button:not(.collapsed):after {  filter: invert(1);
}
    .faqNumber {
            width: 32px;
        height: 32px;
        flex-basis: 32px;
        text-align: center;
        padding: 10px;
        font-weight: 900;
    }
}

@media (min-width: 992px) {

    .productFaqSection {
        padding: 45px 0 75px;
    }

    .faqIntro {
        position: sticky;
        top: 25px;
        padding-right: 15px;
    }

    .faqTitle {
        font-size: 28px;
    }

    .faqHelpCard {
        margin-top: 22px;
    }

    .productFaqAccordion {
        gap: 10px;
    }

    .productFaqAccordion .accordion-item {
        transition: border-color .2s ease, box-shadow .2s ease;
    }

    .productFaqAccordion .accordion-item:hover {
        border-color: #ddd;
        box-shadow: 0 5px 18px rgba(0, 0, 0, .035);
    }

    .faqEnquiryBtn {
        width: auto;
        padding: 0 18px;
    }

    .faqEnquiryBtn:hover {
        background: var(--primary-dark);
    }
}


.productHeaderTitle, .productHeader h2, .productHeader h3, .productHeader h4 {
    margin: 10px 0px;
    color: var(--primary-orange);
    font-size: 22px;
}

    /* video award */

    .award-video-hero {
        padding: 40px 0;
        background: #edfeff;
    }

    .award-video-wrap {
        display: grid;
        grid-template-columns: 30% 70%;
        gap: 16px;
        max-height: 620px;
    }


    /* AWARD */
    .award-panel,
    .video-panel {
        min-width: 0;
    }

    .award-image {
        position: relative;
        height: 100%;
        min-height: 520px;
        max-height: 520px;
        overflow: hidden;
        border-radius: 22px;
        background: #111;
        box-shadow: 0 15px 35px rgba(15, 32, 48, .12);
    }

    .video-panel1 .video-box {
        position: relative;
        height: 250px;
    }

    .award-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s ease;
    }

    .award-image:hover img {
        transform: scale(1.04);
    }

    .award-image::after {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg,
                rgba(6, 15, 24, .02) 30%,
                rgba(6, 15, 24, .88) 100%);
        content: "";
    }

    .award-overlay {
        position: absolute;
        z-index: 2;
        right: 25px;
        bottom: 28px;
        left: 25px;
    }

    .award-overlay>span {
        display: inline-block;
        margin-bottom: 8px;
        padding: 6px 11px;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 30px;
        background: rgba(255, 255, 255, .12);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        backdrop-filter: blur(6px);
    }

    .award-overlay .title2 {
        margin: 0 0 10px;
        color: #fff;
        font-size: 22px;
        font-weight: 600;
        line-height: 1.2;
    }

    .award-overlay p {
        margin: 0;
        color: rgba(255, 255, 255, .76);

    }

    /* VIDEO GRID */
    .video-panel {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 16px;
    }


    /* TABLET */
    @media (max-width: 991px) {
        .award-video-wrap {
            grid-template-columns: 1fr;
            max-height: none;
        }

        .award-image {
            min-height: 300px;
        }

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

        .video-tile {
            min-height: 240px;
        }
    }

    /* MOBILE */
    @media (max-width: 767px) {
        .award-video-hero {
            padding: 15px 0;
        }

        .award-image {
            min-height: 280px;
            border-radius: 16px;
        }

        .award-overlay {
            right: 18px;
            bottom: 20px;
            left: 18px;
        }

        .award-overlay h2 {
            font-size: 23px;
        }

        .video-panel {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .video-tile {
            min-height: 220px;
            border-radius: 16px;
        }

        .video-caption {
            right: 16px;
            bottom: 15px;
            left: 16px;
        }
    }

    /* video */
    .vid-bx {
        overflow: hidden;
        position: relative;
        border-radius: 10px;
        box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
        transition: 0.1s linear;
        margin-bottom: 10px;
    }

    .videosections .row.g-2.mb-5 {
        width: 100%;
        float: left;
    }

    a.vid-bx video {
        width: 100%;
    }

    .vid-bx:hover {
        transform: scale(1.03);
    }

    .vid-bx .tt {
        position: absolute;
        z-index: 1;
        bottom: 0;
        text-align: center;
        width: 100%;
        padding: 15px 10px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
        color: white;
    }

    .vid-bx svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        color: white;
        transition: 1s ease-in-out;
        opacity: 0;
    }

    .vid-bx:hover svg {
        opacity: 0.9;
    }

    .vid-bx video {
        max-width: 100%;
        width: 100%;
        border-radius: 10px;
    }

    .videosections {
        background: #f8f8f8;
        width: 100%;
        padding: 50px 0px 20px;
        float: left;
    }

    .owl-carousel {
        display: block;
    }

    .owl-carousel .feature_item:not(:first-child),
    .owl-carousel .testimonial-block-three:not(:first-child) {
        display: none;
    }

    .owl-carousel img {
        width: 100%;
    }

    /* Video Section */
    .video-section {
        padding: 50px 0;
    }

    .video-section .section-title p {
        max-width: 720px;
        font-size: 15px;
        color: #555;
    }

    /* Video Box */
    .col-lg-6 .video-box {
        height: 308px;
    }

    .video-box {
        position: relative;
        height: 225px;
        overflow: hidden;
        border-radius: 14px;
        background: #000;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    }

    .video-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Play Button */
    .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 52px;
        height: 52px;
        line-height: 52px;
        text-align: center;
        border-radius: 50%;
        background: #d9141b;
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        animation: pulse 1.5s infinite;
    }

    .play-btn span {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    /* Pulse Animation */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(217, 20, 27, 0.6);
        }

        100% {
            box-shadow: 0 0 0 35px rgba(217, 20, 27, 0);
        }
    }

    /* Video Title */
    .video-title {
        text-align: center;
        margin-top: 16px;
        color: #ffff;
    }

    .video-title a {
        font-size: 17px;
        font-weight: 600;
        color: #0e1c41;
        text-decoration: none;
    }

    .video-title a:hover {
        color: #d9141b;
    }

    .col-lg-6 .video-title {
        text-align: center;
        margin-top: 10px;
        background: #fff0;
    }

    .video-ne .video-title a {
        font-size: 17px;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
    }

    .float-start {
        float: left;
    }

    .w-100 {
        width: 100%;
    }

    .formative_breadcrumb.hidden-xs {
        float: left;
        width: 100%;
    }

    .formative_right_products .productHeaderTitle {
        padding: 0px;
        margin: 0 0 10px;
        line-height: 30px;
        background: #30388f00;
        font-size: 25px;
        color:#9c9f07;
        font-weight: 600;
    }

    .productHeader ul, .productDescription ul {
        display: block;
    }


.productHeader li{
        padding-left: 0px;
    position: relative;
    list-style: circle;
    margin-left: 18px;
    display: list-item;
    margin-bottom: 5px !important;
}


    html,
body {
    overflow-x: clip !important;
}

/* =========================================================
   PRODUCT STICKY
========================================================= */

@media (min-width: 992px) {
    .productItem2026,
    .productItem2026 > .row,
    .productItem2026 > .row > [class*="col-"] {
        position: relative;
        overflow: visible !important;
    }

    .productItem2026 > .row {
        display: flex;
        align-items: stretch !important;
    }

    .productItem2026 .productMedia {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 20px !important;
        z-index: 10;
        height: fit-content;
        align-self: flex-start;
    }
}

.panel-default>.panel-heading {
    padding: 0;
}



.product-preview-modal .modal-dialog{
    width:1140px;
    max-width:calc(100% - 30px);
    margin:30px auto;
}

.product-preview-modal .modal-content{
    position:relative;
    border:0;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
}

.product-preview-modal .modal-body{
    padding:0;
}

.popup-row{
    margin-left:0;
    margin-right:0;
}

.popup-row > [class*="col-"]{
    padding-left:0;
    padding-right:0;
}


/* CLOSE */
.preview-modal-close{
    position:absolute;
    top:10px;
    right:12px;
    z-index:100;
    width:36px;
    height:36px;
    line-height:32px;
    border-radius:50%;
    background:#fff !important;
    color:#222;
    opacity:1;
    font-size:28px;
    font-weight:400;
    text-shadow:none;
    box-shadow:0 3px 12px rgba(0,0,0,.12);border: 1px solid #ccc;
}

.preview-modal-close:hover{
    opacity:1;
}


/* =====================================================
   LEFT GALLERY
===================================================== */

.popup-gallery{
    height:575px;
    display:flex;
    gap:14px;
    padding:22px;
    background:#fafafa;
}


/* THUMBS */
.popup-thumbs-wrap{
    width:76px;
    flex:0 0 76px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:7px;
}

.popup-thumbs{
    width:100%;
    max-height:495px;
    display:flex;
    flex-direction:column;
    gap:7px;
    overflow-y:auto;
    overflow-x:hidden;
}

.popup-thumbs::-webkit-scrollbar{
    width:0;
}

.popup-thumb{
    position:relative;
    width:72px;
    height:72px;
    flex:0 0 72px;
    padding:3px;
    border:1px solid #ddd;
    border-radius:7px;
    background:#fff;
    cursor:pointer;
}

.popup-thumb.active{
    border-color:var(--primary);
    box-shadow:inset 0 0 0 1px var(--primary);
}

.popup-thumb img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.popup-thumb.video:after{
    content:"▶";
    position:absolute;
    top:50%;
    left:50%;
    width:28px;
    height:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:5px;
    background:red;
    color:#fff;
    font-size:10px;
    transform:translate(-50%,-50%);
}


/* THUMB ARROWS */
.popup-mediaThumbArrow{
    width:32px;
    height:28px;
    flex:0 0 28px;
    padding:0;
    border:0;
    background:transparent;
    color:#333;
    font-size:24px;
    line-height:1;
}


/* MAIN MEDIA */
.popup-main-media{
    position:relative;
    flex:1;
    min-width:0;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border:1px solid #e5e5e5;
    border-radius:10px;
    background:#fff;
}

.popup-image-zoom{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    cursor:zoom-in;
}

.popup-main-image{
    width:100%;
    height:100%;
    object-fit:contain;
    transform-origin:center center;
    transition:transform .25s ease;
}

.popup-image-zoom.is-zoomed{
    cursor:zoom-out;
}

.popup-image-zoom.is-zoomed .popup-main-image{
    transform:scale(2);
}


/* VIDEO */
.popup-video-wrap{
    width:100%;
    height:100%;
}

.popup-video-frame{
    width:100%;
    height:100%;
    border:0;
}

.memediaHidden{
    display:none !important;
}


/* ZOOM */
.popup-zoom-btn{
    position:absolute;
    right:10px;
    bottom:10px;
    z-index:5;
    min-height:36px;
    padding:0 12px;
    border:1px solid #ddd;
    border-radius:6px;
    background:#fff;
    color:#333;
    font-size:12px;
    font-weight:600;
}


/* =====================================================
   RIGHT FORM
===================================================== */

.popup-enquiry{
    height:575px;
    overflow-y:auto;
    padding:28px;
    background:#fff;
}

.popup-enquiry-head{
    margin-bottom:18px;
    padding-right:30px;
}

.popup-productName{
    margin:0 0 7px;
    color:#222;
    font-size:22px;
    line-height:1.35;
    font-weight:700;
}

/* .popup-enquiry-head p{
    margin:0;
    color:#777;
    font-size:13px;
} */

.popup-enquiry .form-group{
    margin-bottom:15px;
}

.popup-enquiry .control-label,
.popup-enquiry .form-label{
    display:block;
    margin-bottom:5px;
    color:#333;
    font-size:15px;
    font-weight:600;
}

.popup-enquiry .form-control,
.popup-enquiry .form-select{
    height:40px;
    border:1px solid #ddd;
    border-radius:6px;
    box-shadow:none;
    font-size:13px;
}

.popup-enquiry textarea.form-control{
    height:auto;
    min-height:85px;
    resize:vertical;
}

.popup-enquiry .form-control:focus,
.popup-enquiry .form-select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(230,0,35,.07);
}


/* QUANTITY */
.quantity-field{
    display:flex;
}

.quantity-field > .form-control:first-child{
    flex:1;
    min-width:0;
    border-radius:6px 0 0 6px;
}

.quantity-field .quantity-unit{
    width:100px;
    flex:0 0 100px;
    border-left:0;
    border-radius:0 6px 6px 0;
}


/* SUBMIT */
.popup-submit-btn{
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff;
    padding: 8px 14px;
    text-align: center;
    background: #2c3860;
    text-transform: capitalize;
    border: 0;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.popup-submit-btn:hover{
    background:var(--primary-dark);
}


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

@media(max-width:991px){

    .product-preview-modal .modal-dialog{
        width:auto;
        max-width:none;
        margin:20px;
    }

    .popup-gallery{
        height:500px;
    }

    .popup-enquiry{
        height:auto;
        overflow:visible;
    }
}


@media(max-width:767px){

    .product-preview-modal .modal-dialog{
        margin:10px;
    }

    .popup-gallery{
        height:auto;
        flex-direction:column;
        padding:15px;
    }

    .popup-thumbs-wrap{
        width:100%;
        flex:0 0 auto;
        flex-direction:row;
    }

    .popup-thumbs{
        flex:1;
        flex-direction:row;
        overflow-x:auto;
        overflow-y:hidden;
        max-height:none;
    }

    .popup-mediaThumbArrow{
        display:none;
    }

    .popup-main-media{
        height:330px;
    }

    .popup-enquiry{
        padding:20px 15px 25px;
    }
}

.inner_breadcrumb.hidden-xs {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
    padding: 3px;
}


 select.form-select.w-75.mw-75 {
    max-width:100px;
    min-width: 100px;
}

/* .accordion-button:not(.collapsed)::after{
    transform: rotate(0deg);    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3E%3Cpath fill-rule='evenodd' d='M1.646 11.354a.5.5 0 0 0 .708 0L8 5.707l5.646 5.647a.5.5 0 0 0 .708-.708l-6-6a.5.5 0 0 0-.708 0l-6 6a.5.5 0 0 0 0 .708z'/%3E%3C/svg%3E");
} */



.accordion-button:hover:after {
     transform: rotate(0deg);
    filter: invert(1);
}
.btn-style-one {
    line-height: 18px;}

    .productListingPage {
    width: 100%;background: #fff;
    float: left;
    padding: 50px 0px;
}
.productListingPage ul li{
    letter-spacing: normal;
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 16px;
    color: #363636;
    font-family: "Source Sans 3", serif;
}
.popup-enquiry-head p {
    font-size: 14px;
}
.rangeTitle {
    font-size: 25px;
    font-weight: 700;
    color: #9c9f07;
}


.relatedCategorySection {
    padding: 26px 0;
    border-top: 1px solid var(--border);
    background: #fff;
}

.relatedCategoryHead {
    margin-bottom: 14px;
}

.relatedCategoryLabel {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.relatedCategoryTitle {
    margin: 0;
    color: var(--text);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
}

.relatedCategoryTags {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.relatedCategoryTag {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 11px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: #fff;
    color: var(--text);
    font-size: 11px;
    line-height: 1.25;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: .2s ease;
}

.relatedCategoryTag::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: var(--primary);
}

.relatedCategoryTag:hover,
.relatedCategoryTag:focus,
.relatedCategoryTag.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.relatedCategoryTag:hover::before,
.relatedCategoryTag:focus::before,
.relatedCategoryTag.active::before {
    background: #fff;
}

@media (min-width: 576px) {

    .relatedCategorySection {
        padding: 30px 0;
    }

    .relatedCategoryTitle {
        font-size: 23px;
    }

    .relatedCategoryTags {
        gap: 8px;
    }

    .relatedCategoryTag {
        min-height: 38px;
        padding: 8px 13px;
        font-size: 12px;
    }
}

@media (min-width: 768px) {

    .relatedCategorySection {
        padding: 34px 0;
    }

    .relatedCategoryTags {
        gap: 9px;
    }

    .relatedCategoryTag {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (min-width: 992px) {

    .relatedCategorySection {
        padding: 38px 0;
    }

    .relatedCategoryTitle {
        font-size: 25px;
    }

    .relatedCategoryTag {
        min-height: 40px;
        padding: 9px 17px;
    }

    .relatedCategoryTag:hover {
        border-color: var(--primary-dark);
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 14px rgba(0, 0, 0, .07);
    }
}
.scrolbar-width-list {
    max-height: 570px;
    overflow-y: auto;
    padding-right: 15px;
}
#responseBox,
.responseBox {
    padding: 12px 15px;
    margin-top: 15px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    display: block;
}

.responseBox.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.responseBox.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}
.success{color:green}