/* Product detail page */
.singleProduct {
    padding: 72px 0 64px;
    background: linear-gradient(180deg, #f3f5f7 0%, #ffffff 58%);
}

.singleProduct .largeContainer {
    max-width: 1240px;
}

.productHeroRow {
    align-items: flex-start;
    row-gap: 36px;
}

.proSliderWrapper {
    position: relative;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #dde3e8;
    border-radius: 6px;
    box-shadow: 0 22px 55px rgba(22, 35, 48, 0.11);
}

.productSlide {
    position: relative;
}

.sp_img {
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, #eef2f5, #ffffff);
    border-radius: 4px;
    overflow: hidden;
}

.sp_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
}

.productSlide .owl-nav,
.indicator_slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    transform: translateY(-50%);
}

.productSlide .owl-prev,
.productSlide .owl-next,
.indicator_slider .owl-prev,
.indicator_slider .owl-next {
    position: absolute;
    top: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 4px !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all .25s ease;
}

.productSlide .owl-prev,
.productSlide .owl-next {
    width: 48px !important;
    height: 48px !important;
    background: rgba(20, 31, 43, 0.84) !important;
    border: 1px solid rgba(255,255,255,0.32) !important;
    font-size: 24px !important;
}

.productSlide .owl-prev {
    left: 20px;
}

.productSlide .owl-next {
    right: 20px;
}

.productSlide .owl-prev:hover,
.productSlide .owl-next:hover,
.indicator_slider .owl-prev:hover,
.indicator_slider .owl-next:hover {
    background: #b4222b !important;
    border-color: #b4222b !important;
    transform: translateY(-1px);
}

.indicator_slider {
    position: relative;
    margin-top: 16px;
    padding: 0 42px;
}

.indicator_slider .owl-prev,
.indicator_slider .owl-next {
    width: 32px !important;
    height: 32px !important;
    background: #162330 !important;
    border: 1px solid #162330 !important;
    font-size: 18px !important;
}

.indicator_slider .owl-prev {
    left: 0;
}

.indicator_slider .owl-next {
    right: 0;
}

.idItem {
    width: 86px;
    height: 86px;
    margin: 0 5px;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid #d6dde4;
    border-radius: 4px;
    overflow: hidden;
    transition: all .25s ease;
}

.idItem:hover,
.idItem.active {
    border-color: #b4222b;
    box-shadow: 0 8px 18px rgba(180, 34, 43, 0.16);
}

.idItem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.product_details {
    position: relative;
    min-height: 100%;
    padding: 44px;
    background: #ffffff;
    border: 1px solid #d9e0e6;
    border-radius: 6px;
    box-shadow: 0 22px 55px rgba(22, 35, 48, 0.10);
    overflow: hidden;
}

.product_details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #b4222b 0%, #162330 100%);
}

.product_brand {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    margin-bottom: 20px;
    background: #f3f5f7;
    border-left: 3px solid #b4222b;
    color: #162330;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.product_details h3 {
    color: #101820;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 24px;
}

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

.product_metaGrid > div {
    padding: 16px;
    background: #f8fafb;
    border: 1px solid #e1e6eb;
    border-radius: 4px;
}

.product_metaGrid span {
    display: block;
    margin-bottom: 6px;
    color: #697684;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product_metaGrid strong {
    display: block;
    color: #162330;
    font-size: 15px;
    line-height: 1.35;
}

.product_summary {
    position: relative;
    max-height: 168px;
    overflow: hidden;
    margin-bottom: 28px;
    padding-bottom: 18px;
    color: #475260;
    line-height: 1.72;
}

.product_summary::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 44px;
    background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff);
}

.product_summary p {
    margin-bottom: 0;
}

.product_actions {
    margin-bottom: 26px;
}

.qty_weight .berpo_btn {
    width: 100%;
    justify-content: center;
    padding: 17px 28px;
    background: #b4222b;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 16px 28px rgba(180, 34, 43, 0.22);
    transition: all .25s ease;
}

.qty_weight .berpo_btn:hover {
    background: #162330;
    color: #ffffff;
    box-shadow: 0 18px 30px rgba(22, 35, 48, 0.18);
    transform: translateY(-2px);
}

.product_supportBox {
    padding: 18px 20px;
    background: #f8fafb;
    border: 1px solid #e1e6eb;
    border-left: 4px solid #162330;
    border-radius: 4px;
    color: #4d5b68;
    font-size: 14px;
    line-height: 1.6;
}

.productSparePreview {
    margin-top: 22px;
    padding: 20px;
    background: #101820;
    border-radius: 6px;
    color: #ffffff;
}

.productSparePreview_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.productSparePreview_head span {
    color: #d8a7ab;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.productSparePreview_head strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
    text-align: right;
}

.productSpareSlider {
    position: relative;
}

.productSpareSlider .owl-nav {
    position: absolute;
    top: -45px;
    right: 0;
    display: flex;
    gap: 8px;
}

.productSpareSlider .owl-prev,
.productSpareSlider .owl-next {
    width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.16) !important;
    border-radius: 4px !important;
    color: #ffffff !important;
    transition: all .25s ease;
}

.productSpareSlider .owl-prev:hover,
.productSpareSlider .owl-next:hover {
    background: #b4222b !important;
    border-color: #b4222b !important;
}

.productSpareCard a {
    display: block;
    min-height: 184px;
    padding: 14px;
    background: #ffffff;
    border-radius: 4px;
    color: #162330;
}

.productSpareCard_img {
    display: block;
    height: 108px;
    margin-bottom: 12px;
    background: #f3f5f7;
    border: 1px solid #e1e6eb;
    border-radius: 4px;
    overflow: hidden;
}

.productSpareCard_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.productSpareCard_title {
    display: block;
    color: #162330;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.productSpareButton {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 16px;
    padding: 12px 16px;
    background: #b4222b;
    border-radius: 4px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.productSpareButton:hover {
    background: #ffffff;
    color: #b4222b;
}

.productBackButton {
    margin-top: 0;
    background: #162330;
}

.productBackButton:hover {
    background: #b4222b;
    color: #ffffff;
}

.product_tabarea[style*="display:none"] {
    display: none !important;
}

.productInfoPanel {
    margin-top: 46px;
    background: #ffffff;
    border: 1px solid #d9e0e6;
    border-radius: 6px;
    box-shadow: 0 18px 44px rgba(22, 35, 48, 0.08);
    overflow: hidden;
}

.productInfoPanel_head {
    padding: 34px 40px;
    background: #162330;
    color: #ffffff;
}

.productInfoPanel_head span {
    display: block;
    margin-bottom: 8px;
    color: #d8a7ab;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.productInfoPanel_head h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.24;
}

.productInfoPanel_head p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
}

.productInfoPanel_body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    padding: 40px;
}

.productInfoPanel_body.singleColumn {
    display: block;
}

.productInfoPanel_content {
    color: #35414d;
    font-size: 16px;
    line-height: 1.82;
}

.productInfoPanel_content p,
.productInfoPanel_content ul,
.productInfoPanel_content ol {
    margin-bottom: 16px;
}

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

.productInfoPanel_aside {
    align-self: start;
    padding: 24px;
    background: #f8fafb;
    border: 1px solid #e1e6eb;
    border-radius: 4px;
    color: #4d5b68;
    line-height: 1.7;
}

.productInfoPanel_aside h4 {
    margin: 0 0 14px;
    color: #162330;
    font-size: 18px;
}

.related_area {
    margin-top: 64px;
    padding: 56px 0 50px;
    border-top: 1px solid #e1e6eb;
}

.related_area h2 {
    margin-bottom: 40px;
}

.banner-three .banner-swiper {
    position: relative;
}

.banner-three .banner-swiper-nav {
    position: absolute;
    top: 90%;
    z-index: 20;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(18, 27, 38, 0.56);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.banner-three .banner-swiper-nav i {
    font-size: 16px;
    line-height: 1;
}

.banner-three .banner-swiper-nav:hover {
    background: #d4212a;
    border-color: #d4212a;
    color: #fff;
    transform: translateY(-50%) scale(1.04);
}

.banner-three .banner-swiper-prev {
    left: max(22px, calc((100vw - 1320px) / 2 + 8px));
}

.banner-three .banner-swiper-next {
    right: max(22px, calc((100vw - 1320px) / 2 + 8px));
}

.banner-three .banner-swiper-nav.swiper-button-disabled {
    opacity: 0.45;
    cursor: default;
}

.productSpareListCard {
    height: calc(100% - 26px);
    margin-bottom: 26px;
    background: #ffffff;
    border: 1px solid #dce4eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(16, 31, 46, 0.06);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.productSpareListCard:hover {
    border-color: rgba(180, 34, 43, 0.45);
    box-shadow: 0 22px 48px rgba(16, 31, 46, 0.14);
    transform: translateY(-4px);
}

.productSpareListCard a {
    display: flex;
    flex-direction: column;
    padding: 14px;
    color: #162330;
}

.productSpareListMedia {
    position: relative;
    display: block;
    margin-bottom: 0;
    background: #f5f7f9;
    border: 1px solid #e4eaf0;
    border-radius: 6px;
    overflow: hidden;
}

.productSpareListMedia:after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 2px;
    background: #b4222b;
    opacity: 0;
    transition: opacity .25s ease;
}

.productSpareListCard:hover .productSpareListMedia:after {
    opacity: 1;
}

.productSpareListCard img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform .25s ease;
}

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

.productSpareListContent {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    padding: 11px 4px 2px;
}

.productSpareListContent small {
    display: block;
    margin-bottom: 5px;
    color: #b4222b;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.productSpareListCard strong {
    display: block;
    color: #142434;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
}

.productSpareListContent em {
    display: inline-flex;
    align-items: center;
    margin-top: 7px;
    color: #142434;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.productSpareListContent em:after {
    content: "";
    width: 22px;
    height: 1px;
    margin-left: 9px;
    background: #b4222b;
    transition: width .25s ease;
}

.productSpareListCard:hover .productSpareListContent em:after {
    width: 34px;
}

.sparePartsPage .sparePartsHeader {
    margin-top: 0;
    margin-bottom: 34px;
    border: 1px solid rgba(20, 36, 52, 0.08);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(16, 31, 46, 0.10);
}

.sparePartsPage .productInfoPanel_head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 184px;
    gap: 28px;
    align-items: center;
    padding: 34px 30px 34px 36px;
    background:
        linear-gradient(90deg, rgba(180, 34, 43, 0.10) 0, rgba(180, 34, 43, 0) 30%),
        #142434;
}

.sparePartsHeader_copy {
    min-width: 0;
}

.sparePartsHeader_copy h2 {
    max-width: 760px;
}

.sparePartsHeader_meta {
    position: relative;
    width: 100%;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e3e9ee;
    border-radius: 7px;
    box-shadow: 0 16px 36px rgba(8, 18, 30, 0.18);
}

.sparePartsHeader_meta strong,
.sparePartsHeader_meta small,
.sparePartsHeader_meta a {
    display: block;
}

.sparePartsHeader_meta strong {
    color: #b4222b;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.sparePartsHeader_meta small {
    margin: 5px 0 12px;
    color: #526171;
    font-size: 12px;
    font-weight: 700;
}

.sparePartsHeader_meta a {
    padding: 10px 10px;
    color: #ffffff;
    background: #142434;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.sparePartsHeader_meta a:hover {
    color: #ffffff;
    background: #b4222b;
}

.sparePartsGrid {
    row-gap: 8px;
}

.service-block_five .image:before,
.overlay-anim:before,
.overlay-anim:after {
    pointer-events: none;
}

.service-block_five .image a {
    position: relative;
    z-index: 2;
    display: block;
}

.spareCategoryPage {
    background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 44%);
}

.spareCategoryPage .largeContainer {
    max-width: 1180px;
}

.spareCategoryCard .inner {
    border-color: #dce4eb;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 31, 46, 0.07);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.spareCategoryCard .inner:hover {
    border-color: rgba(180, 34, 43, 0.42);
    box-shadow: 0 22px 50px rgba(16, 31, 46, 0.14);
    transform: translateY(-4px);
}

.spareCategoryCard .image {
    background: #f4f7f9;
    border: 1px solid #e3e9ee;
}

.spareCategoryCard .image img {
    height: 235px;
    object-fit: contain;
    padding: 18px;
    transition: transform .25s ease;
}

.spareCategoryCard .inner:hover .image img {
    transform: scale(1.035);
}

.page_banner {
    min-height: 300px;
    padding: 132px 0 72px;
    background-position: right center !important;
    background-size: cover;
    background-color: #f3f6f8;
}

.page_banner .overlay {
    background: linear-gradient(90deg, rgba(246, 248, 250, 0.98) 0%, rgba(246, 248, 250, 0.88) 34%, rgba(246, 248, 250, 0.18) 68%, rgba(246, 248, 250, 0) 100%) !important;
}

.page_banner .container,
.page_banner .largeContainer {
    position: relative;
    z-index: 2;
}

.page_banner .row {
    justify-content: flex-start;
}

.page_banner .text-center {
    max-width: 680px;
    padding: 24px 28px;
    background: rgba(16, 31, 46, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 22px 52px rgba(16, 31, 46, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: left !important;
}

.banner-title {
    max-width: 680px;
    margin: 0 0 12px;
    color: #ffffff !important;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.16;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.breadcrumbs {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 11px;
    color: rgba(255, 255, 255, 0.78) !important;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.breadcrumbs a {
    color: #ffffff !important;
}

.breadcrumbs span {
    margin: 0;
    color: #b4222b;
}

.page-title {
    min-height: 300px;
    padding: 120px 0 72px;
    background-position: right center !important;
    background-color: #f3f6f8;
}

.page-title:before {
    background: linear-gradient(90deg, rgba(246, 248, 250, 0.98) 0%, rgba(246, 248, 250, 0.88) 34%, rgba(246, 248, 250, 0.18) 68%, rgba(246, 248, 250, 0) 100%) !important;
}

.page-title .title-outer {
    max-width: 680px;
    padding: 24px 28px;
    background: rgba(16, 31, 46, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 22px 52px rgba(16, 31, 46, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: left !important;
}

.page-title .title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.16;
}

.page-title .page-breadcrumb li,
.page-title .page-breadcrumb li:after,
.page-title .page-breadcrumb li a {
    color: rgba(255, 255, 255, 0.82);
}

.shopPage {
    padding: 58px 0 82px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.shopPage .largeContainer {
    max-width: 1120px;
}

.shopPage .row {
    row-gap: 0;
}

.shopPage .service-block_five,
.related_area .service-block_five {
    height: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.shopPage .service-block_five .inner,
.related_area .service-block_five .inner {
    padding: 14px;
    background: #ffffff;
    border: 1px solid #dce4eb;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(16, 31, 46, 0.065);
    text-align: left;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.shopPage .service-block_five .inner:hover,
.related_area .service-block_five .inner:hover {
    border-color: rgba(180, 34, 43, 0.42);
    box-shadow: 0 20px 44px rgba(16, 31, 46, 0.13);
    transform: translateY(-4px);
}

.shopPage .service-block_five .inner:before,
.related_area .service-block_five .inner:before {
    display: none;
}

.shopPage .service-block_five .image,
.related_area .service-block_five .image {
    background: #f5f7f9;
    border: 1px solid #e3e9ee;
    border-radius: 6px;
}

.shopPage .service-block_five .image:before,
.related_area .service-block_five .image:before {
    display: none;
}

.shopPage .service-block_five .image a,
.related_area .service-block_five .image a {
    width: 100%;
    height: 100%;
}

.shopPage .service-block_five .image img,
.related_area .service-block_five .image img {
    width: 100%;
        max-height: 320px;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform .25s ease;
}

.shopPage .service-block_five .inner:hover .image img,
.related_area .service-block_five .inner:hover .image img {
    transform: scale(1.035);
}

.shopPage .service-block_five .content,
.related_area .service-block_five .content {
    padding: 15px 6px 6px;
}

.shopPage .service-block_five .content .icon,
.related_area .service-block_five .content .icon {
    display: none;
}

.shopPage .service-block_five .content .title,
.related_area .service-block_five .content .title {
    min-height: 52px;
    margin: 0;
    padding: 0 0 16px;
    font-size: 18px;
    line-height: 1.32;
    text-align: left;
}

.shopPage .service-block_five .content .title:before,
.related_area .service-block_five .content .title:before {
    left: 0;
    width: 80px;
    transform: none;
}

.shopPage .service-block_five .content .title:after,
.related_area .service-block_five .content .title:after {
    left: 0;
    width: 34px;
    transform: none;
    background: #b4222b;
}

.shopPage .service-block_five .content .title a,
.related_area .service-block_five .content .title a {
    color: #142434;
}

.shopPage .service-block_five .content .price,
.related_area .service-block_five .content .price {
    display: block;
    margin-top: 12px;
    color: #657483;
    font-size: 13px;
    font-weight: 800;
}

.productEmptyState {
    max-width: 620px;
    margin: 0 auto;
    padding: 34px;
    background: #ffffff;
    border: 1px solid #d9e0e6;
    border-radius: 6px;
    box-shadow: 0 18px 44px rgba(22, 35, 48, 0.08);
    text-align: center;
}

.productEmptyState h3 {
    margin: 0 0 10px;
    color: #162330;
    font-size: 24px;
}

.productEmptyState p {
    margin: 0 0 18px;
    color: #4d5b68;
}

.productEmptyState .productSpareButton {
    max-width: 240px;
    margin: 0 auto;
}

.news-section.style-two .news-block_one .image {
    height: 300px;
    border-radius: 8px 8px 0 0;
}

.news-section.style-two .news-block_one .image a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-section.style-two .news-block_one .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogDetailSection {
    padding: 110px 0 95px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.blogDetailContent {
    padding: 34px;
    background: #ffffff;
    border: 1px solid #dfe6ed;
    border-radius: 8px;
    box-shadow: 0 22px 55px rgba(22, 35, 48, 0.09);
}

.blogDetailHero {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background: #f2f5f7;
}

.blogDetailHero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 36, 52, 0) 55%, rgba(20, 36, 52, 0.18) 100%);
    pointer-events: none;
}

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

.blogDetailContent:hover .blogDetailHero img {
    transform: scale(1.025);
}

.blogDetailMeta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.blogDetailMeta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 13px;
    background: #f4f7f9;
    border: 1px solid #e1e7ed;
    border-radius: 4px;
    color: #536170;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.blogDetailMeta i {
    color: #b4222b;
}

.blogDetailContent h3 {
    color: #142434;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
}

.blogDetailText {
    color: #465462;
    font-size: 16px;
    line-height: 1.85;
}

.blogDetailText p,
.blogDetailText ul,
.blogDetailText ol {
    margin-bottom: 18px;
}

.blogDetailText h2,
.blogDetailText h3,
.blogDetailText h4 {
    margin-top: 30px;
    margin-bottom: 14px;
    color: #142434;
    font-weight: 800;
}

.blogDetailText img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 18px 0;
}
.whatsappSupport {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    font-family: "Inter", Arial, sans-serif;
}

.whatsappSupport_panel {
    width: min(340px, calc(100vw - 34px));
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(12, 28, 43, 0.08);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(10, 23, 36, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transform-origin: right bottom;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.whatsappSupport.is-active .whatsappSupport_panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsappSupport_head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #08d263 0%, #00b852 100%);
    color: #ffffff;
}

.whatsappSupport_head:after {
    content: '';
    position: absolute;
    right: 20px;
    top: 20px;
    width: 45px;
    height: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 0 rgba(255, 255, 255, 0.72), 0 36px 0 rgba(255, 255, 255, 0.62);
}

.whatsappSupport_logo {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.32);
    font-size: 18px;
}

.whatsappSupport_head strong,
.whatsappSupport_head small {
    position: relative;
    z-index: 1;
    display: block;
}

.whatsappSupport_head strong {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.whatsappSupport_head small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 600;
}

.whatsappSupport_body {
    padding: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8f5 100%);
}

.whatsappSupport_item {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 10px;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 12px 14px 12px 12px;
    color: #162330;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e5ece8;
    border-radius: 7px;
    box-shadow: 0 8px 24px rgba(20, 36, 52, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.whatsappSupport_item + .whatsappSupport_item {
    margin-top: 9px;
}

.whatsappSupport_item:hover {
    color: #162330;
    border-color: rgba(0, 184, 82, 0.42);
    box-shadow: 0 14px 30px rgba(20, 36, 52, 0.10);
    transform: translateY(-2px);
}

.whatsappSupport_icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #08c75f;
    color: #ffffff;
    font-size: 19px;
    box-shadow: 0 9px 18px rgba(8, 199, 95, 0.22);
}

.whatsappSupport_iconPhone {
    background: #12b9b2;
    box-shadow: 0 9px 18px rgba(18, 185, 178, 0.2);
}

.whatsappSupport_iconForm {
    background: #3db4e8;
    box-shadow: 0 9px 18px rgba(61, 180, 232, 0.2);
}

.whatsappSupport_item strong,
.whatsappSupport_item small {
    display: block;
}

.whatsappSupport_item strong {
    color: #142434;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.whatsappSupport_item small {
    margin-top: 5px;
    color: #7b8b98;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whatsappSupport_item em {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00c853;
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.1);
}

.whatsappSupport_item:not(.whatsappSupport_itemPrimary) em {
    background: #c9d2d9;
    box-shadow: none;
}

.whatsappSupport_toggle {
    position: relative;
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #08d263 0%, #00b852 100%);
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 184, 82, 0.34);
    font-size: 29px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.whatsappSupport_toggle:before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(8, 210, 99, 0.26);
}

.whatsappSupport_toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(0, 184, 82, 0.42);
}

.whatsappSupport_toggleIconClose {
    display: none;
    font-size: 24px;
}

.whatsappSupport.is-active .whatsappSupport_toggle {
    background: #08c75f;
}

.whatsappSupport.is-active .whatsappSupport_toggleIconOpen {
    display: none;
}

.whatsappSupport.is-active .whatsappSupport_toggleIconClose {
    display: inline-block;
}

@media (max-width: 991px) {
    .singleProduct {
        padding-top: 44px;
    }

    .page_banner,
    .page-title {
        min-height: 250px;
        padding: 110px 0 58px;
        background-position: 72% center !important;
    }

    .banner-title,
    .page-title .title {
        font-size: 34px;
    }

    .sparePartsPage .productInfoPanel_head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sparePartsHeader_meta {
        width: 100%;
        margin-top: 0;
        max-width: 260px;
    }

    .product_details {
        margin-top: 28px;
        padding: 32px;
    }

    .productInfoPanel_body {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

@media (max-width: 767px) {

.blogDetailSection {
        padding: 54px 0 58px;
    }

    .blogDetailContent {
        padding: 22px 18px;
    }

    .blogDetailHero {
        aspect-ratio: 4 / 3;
    }

    .blogDetailContent h3 {
        font-size: 24px;
    }

    .blogDetailText {
        font-size: 15px;
        line-height: 1.75;
    }

    .whatsappSupport {
        right: 17px;
        bottom: 18px;
    }

    .whatsappSupport_panel {
        width: calc(100vw - 34px);
    }

    .whatsappSupport_head {
        min-height: 70px;
        padding: 16px;
    }

    .whatsappSupport_head:after {
        right: 16px;
        width: 92px;
    }

    .whatsappSupport_toggle {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }

    .singleProduct {
        padding: 32px 0 44px;
    }

    .page_banner,
    .page-title {
        min-height: 220px;
        padding: 88px 0 44px;
    }

    .page_banner .text-center,
    .page-title .title-outer {
        max-width: 100%;
    }

    .banner-title,
    .page-title .title {
        font-size: 28px;
        line-height: 1.2;
    }

    .banner-three .banner-swiper-nav {
        width: 44px;
        height: 44px;
        top: auto;
        bottom: 24px;
        transform: none;
    }

    .banner-three .banner-swiper-nav:hover {
        transform: scale(1.04);
    }

    .banner-three .banner-swiper-prev {
        left: 18px;
    }

    .banner-three .banner-swiper-next {
        right: 18px;
    }

    .breadcrumbs {
        font-size: 12px;
    }

    .shopPage {
        padding: 42px 0 58px;
    }

    .shopPage .service-block_five .image,
    .related_area .service-block_five .image {
        height: 196px;
    }

    .shopPage .service-block_five .content .title,
    .related_area .service-block_five .content .title {
        min-height: auto;
        font-size: 18px;
    }

    .proSliderWrapper {
        padding: 12px;
    }

    .sp_img {
        aspect-ratio: 4 / 3;
    }

    .sp_img img {
        padding: 14px;
    }

    .product_details {
        padding: 26px 20px;
    }

    .product_details h3 {
        font-size: 26px;
    }

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

    .productSparePreview_head {
        align-items: flex-start;
        flex-direction: column;
    }

    .productSparePreview_head strong {
        text-align: left;
    }

    .productSpareListMedia {
        height: 142px;
    }

    .productInfoPanel_head,
    .productInfoPanel_body {
        padding: 24px 20px;
    }

    .sparePartsPage .productInfoPanel_head {
        padding: 24px 20px;
    }

    .sparePartsHeader_meta {
        max-width: 100%;
    }

    .productInfoPanel_head h2 {
        font-size: 24px;
    }

    .indicator_slider {
        padding: 0 36px;
    }

    .productSlide .owl-prev {
        left: 10px;
    }

    .productSlide .owl-next {
        right: 10px;
    }
}




