/* product detail page style starts here */


.section-spacing{
    margin: 100px 0 0;
}

.page-template-template-product-detail-page .storefront-breadcrumb{
    display: none;
}

section.product-image-section{
    font-family: "Montserrat", Sans-serif;
    background-color: #F5F7FA;
    padding: 80px 0;
}

section.product-image-section .product-image-section-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 62px;
}

section.product-image-section .product-image-section-wrapper .product-left-section{
    flex: 0 0 calc(40% - 31px);
    max-width: calc(40% - 31px);
    position: relative;
}

section.product-image-section .product-image-section-wrapper .product-left-section .onsale{
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    z-index: 2;
    box-shadow: 0px 2px 5px #2890ee21;
    line-height: 20px;
    background: #3498db;
    border-radius: 16px;
    padding: 4px 18px;
}

section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .woocommerce-product-gallery__trigger{
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 2;
}

section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
}

section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav li {
    width: 80px;
    height: 80px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav li .flex-active {
    border-color: #007cba;
}

section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav li:hover {
    border-color: #007cba;
    transform: scale(1.05);
}

section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav li.active,
section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav li:hover {
    border-color: #007cba;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .woocommerce-product-gallery__image {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
    margin-bottom: 15px;
}

section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: contain;
    display: block;
}


@media (max-width: 992px) {
    section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav li {
        width: 70px;
        height: 70px;
    }
}


@media (max-width: 768px) {
    section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav{
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-top: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav::-webkit-scrollbar {
        height: 4px;
    }
    
    section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav::-webkit-scrollbar-thumb {
        background: #007cba;
        border-radius: 2px;
    }
    
    section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav li {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .woocommerce-product-gallery__image img {
        max-height: 300px;
    }
}


@media (max-width: 480px) {
    section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .flex-control-nav li {
        width: 50px;
        height: 50px;
    }
    
    section.product-image-section .product-image-section-wrapper .product-left-section .woocommerce-product-gallery .woocommerce-product-gallery__image img {
        max-height: 250px;
    }
}





section.product-image-section .product-image-section-wrapper .product-right-section{
    flex: 0 0 calc(60% - 31px);
    max-width: calc(60% - 31px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-title{
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.25;
    font-weight: 700;
    color: #252525;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-description{
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.3;
    font-weight: 400;
    color: #252525;
    margin: 15px 0 0;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-price-wrapper{
    display: flex;
    gap: 20px;
    align-items: baseline;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-price-wrapper .product-price{
    font-size: clamp(16px, 3vw, 30px);
    line-height: 1;
    font-weight: 700;
    color: #252525;
    text-transform: uppercase;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-price-wrapper .product-price-original{
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1;
    font-weight: 400;
    color: #0081CC;
    text-transform: uppercase;
    position: relative;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-price-wrapper .product-price-original::after{
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    left: 0;
    background-color: #0081CC;
    top: 50%;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

section.product-image-section .product-image-section-wrapper .product-right-section .open-modal-btn{
    background-color: #fff;
    border: 1px solid #0081CC;
    color: #0081CC;
    margin: 0;
    padding: 12px 32px;
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.5;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
}

section.product-image-section .product-image-section-wrapper .product-right-section .open-modal-btn:hover{
    background-color: #0081CC;
    color: #fff;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart{
    display: flex;
    gap: 20px;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .woovr-variations{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .woovr-variations .woovr-variation{
    border: 1px solid #bbb;
    border-radius: 10px;
    padding: 5px;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .woovr-variations .woovr-variation:hover{
    background-color: #fff;
    box-shadow: 0 0px 8px 2px #b9b9b9;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .single_variation_wrap .woocommerce-variation{
    margin: 0 0 20px 0; 
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .single_variation_wrap .woocommerce-variation-add-to-cart{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .single_variation_wrap .woocommerce-variation-add-to-cart .warranty_info{
    width: 100%;
    order: inherit;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .quantity{
    margin: 0 !important;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #bbb;
    width: fit-content;
    border-radius: 8px;
    padding: 4px 16px;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .quantity input{
    margin: 0;
    background: transparent;
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.3;
    font-weight: 400;
    padding: 0;
    text-align: center;
    border: 0;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .quantity button{
    background-color: transparent;
    border: 0;
    color: #252525;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    padding: 0;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .button{
    background-color: #0081CC;
    color: #fff;
    margin: 0;
    padding: 12px 30px 12px 50px;
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.5;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
    border: none;
    position: relative;
    width: fit-content;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .button::before{
    content: url('https://dev-safiery.pantheonsite.io/wp-content/uploads/2025/09/shop-now-1.png');
    position: absolute;
    left: 30px;
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translate(-50%, -50%);
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .button:hover{
    background-color: #06649b;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .wrapper-single-dropdown{
    position: relative;
    display: inline-block;
    width: fit-content;
    margin: 0;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .wrapper-single-dropdown label{
    display: none;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .wrapper-single-dropdown select{
    -webkit-appearance: none;
    -moz-appearance: none; 
    appearance: none;  
    background-color: #fff;
    color: #0081CC;
    margin: 0;
    padding: 12px 32px !important;
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.5;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
    border: 1px solid #0081CC !important;
    position: relative;
}

section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart .wrapper-single-dropdown::after {
    content: "▼"; 
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    pointer-events: none; 
    font-size: 10px;
    color: #0081CC;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons{
    display: flex;
    gap: 15px;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .whishlist-button .yith-add-to-wishlist-button-block{
    margin: 0;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .cta-button{
    color: #fff;
    background-color: #0081CC;
    margin: 0;
    padding: 12px 20px;
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.5;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
    border: 1px solid #0081CC !important;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .cta-button:hover{
    background-color: #06649b;
    transform: translateY(0);
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .cta-button.whishlist-button svg{
    height: 24px;
    width: 24px;
    stroke: #fff;
    fill: #0081CC;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .cta-button.whishlist-button .yith-wcwl-add-to-wishlist-button__label{
    display: none;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .cta-button img{
    display: block;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .share-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .share-popup .share-popup-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .share-popup .share-popup-content .share-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #BBBBBB;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .share-popup .share-popup-content .share-popup-header .popup-title {
    margin: 0;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.25;
    font-weight: 600;
    color: #252525;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .share-popup .share-popup-content .share-popup-header .close-popup {
    background-color: #0081CC;
    border: 1px solid #0081CC;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .share-popup .share-popup-content .share-popup-header .close-popup:hover {
    background: #fff;
    color: #0081CC;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .share-popup .share-popup-content .social_icons {
    display: flex;
    justify-content: center;
    padding: 20px;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .share-popup .share-popup-content .social_icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
    margin: 0;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .share-popup .share-popup-content .social_icons a:hover {
    box-shadow: 0 0px 8px 2px #b9b9b9;
    border: 1px solid #fff;
}


section.product-image-section .product-image-section-wrapper .product-right-section .product-benefits{
    padding: 17px 0;
    border-top: 0.5px solid #BBBBBB;
    border-bottom: 0.5px solid #BBBBBB;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-benefits .benefits-tab{
    border: 1px solid #bbb;
    padding: 11px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    width: 100%;
    max-width: 250px;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-benefits .benefits-tab img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

section.product-image-section .product-image-section-wrapper .product-right-section .product-benefits .benefits-tab .benefits-detail{
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    line-height: 1.25;
    color: #252525;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

section.product-detail-section{
    margin: 80px 0;
    font-family: "Montserrat", Sans-serif;
}

section.product-detail-section .title-wrapper{
    position: relative;
    background-color: #fff;
    display: flex;
    justify-content: center;
    z-index: 1;
}

section.product-detail-section .title-wrapper::after{
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #BBBBBB;
    top: 50%;
    left: 0;
    z-index: 0;
}

section.product-detail-section .title-wrapper .title-inner-wrapper{
    background-color: #fff;
    padding: 0 25px;
    display: flex;
    gap: 25px;
    position: relative;
    z-index: 1;
}

section.product-detail-section .title-wrapper .title-inner-wrapper .title{
    padding: 10px 0;
    font-size: clamp(12px, 1vw, 16px);
    line-height: 1.35;
    font-weight: 400;
    color: #252525;
    border: 0;
    background-color: transparent;
}

section.product-detail-section .title-wrapper .title-inner-wrapper .title:hover,
section.product-detail-section .title-wrapper .title-inner-wrapper .title:focus-visible{
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

section.product-detail-section .title-wrapper .title-inner-wrapper .title.active{
    color: #0081CC;
    border-bottom: 2px solid #0081CC;
    border-radius: inherit;
}

section.product-detail-section .tab-content-wrapper .tab-content{
    background: transparent;
    padding: 0;
    margin: 0;
}

section.product-detail-section .tab-content-wrapper .tab-content .title{
    font-size: clamp(16px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.35;
    color: #252525;
    margin: 0 auto 30px;
    position: relative;
    width: fit-content;
    padding: 0 0 5px 0;
}

section.product-detail-section .tab-content-wrapper .tab-content .title::after{
    content: '';
    position: absolute;
    width: 40%;
    height: 2px;
    top: 100%;
    left: 0;
    background-image: linear-gradient(to right in oklab, #00befd 0%, oklch(0.82 0.1 257.53) 50%, transparent 100%);
}

section.product-detail-section .tab-content-wrapper .tab-content p{
    font-size: clamp(12px, 1vw, 16px);
    font-weight: 500;
    line-height: 1.5;
    color: #252525;
}

section.product-detail-section .tab-content-wrapper .tab-content ul,
section.product-detail-section .tab-content-wrapper .tab-content ol,
section.product-detail-section .tab-content-wrapper .tab-content li{
    list-style: circle;
}

section.product-detail-section .tab-content-wrapper .tab-content ul,
section.product-detail-section .tab-content-wrapper .tab-content ol{
    display: flex;
    gap: 15px;
    flex-direction: column;
    padding: 0 0 0 25px;
}

section.product-detail-section .tab-content-wrapper .tab-content ol li,
section.product-detail-section .tab-content-wrapper .tab-content ul li{
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 500;
    line-height: 1.35;
    color: #252525;
}

section.product-detail-section .tab-content-wrapper .tab-content a{
    background-color: #0081CC;
    color: #fff;
    margin: 0;
    padding: 12px 30px;
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.5;
    font-weight: 500;
    border: 1px solid #0081CC;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
    width: fit-content;
}

section.product-detail-section .tab-content-wrapper .tab-content a:hover{
    background-color: #fff;
    color: #0081CC;
}

section.product-detail-section .tab-content-wrapper .tab-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

section.product-detail-section .tab-content-wrapper .tab-content table tr{
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
}

section.product-detail-section .tab-content-wrapper .tab-content table tr:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

section.product-detail-section .tab-content-wrapper .tab-content table th {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.2;
    font-weight: 600;
    color: #000;
}

section.product-detail-section .tab-content-wrapper .tab-content table th,
section.product-detail-section .tab-content-wrapper .tab-content table td {
    padding: 16px;
    text-align: left;
}

section.product-detail-section .tab-content-wrapper .tab-content table td {
    font-size: clamp(12px, 2vw, 16px);
    line-height: 1.2;
    font-weight: 400;
    color: #333;
}

section.product-detail-section .tab-content-wrapper .tab-content table th:empty,
section.product-detail-section .tab-content-wrapper .tab-content table td:empty{
    display: none;
}

section.product-detail-section .tab-content-wrapper .tab-content .full-width-content-section{
    width: 100%;
    text-align: center;
}

section.product-detail-section .tab-content-wrapper .tab-content .full-width-content-section .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0px 8px 2px #b9b9b9;
    border-radius: 20px;
    border-left: 5px solid #66c7ff;
}

section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section{
    text-align: center;
}

section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section .lower-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
    padding: 50px;
    background-color: #F5F7FA;
    border-radius: 20px;
}

section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section .lower-content .left-content{
    position: relative;
}

section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section .lower-content .left-content::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-right: 3px solid #66c7ff;
    border-bottom: 3px solid #66c7ff;
    border-bottom-right-radius: 20px;
}

section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section .lower-content .left-content::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-left: 3px solid #66c7ff;
    border-top: 3px solid #66c7ff;
    border-top-left-radius: 20px;
}

section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section .lower-content .left-content .image-wrapper{
    position: relative;
    cursor: pointer;
    padding: 30px;
}

section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section .lower-content .left-content .image-wrapper::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #bceaff82;
    z-index: 0;
    border-radius: 20px;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section .lower-content .left-content .image-wrapper:hover::before{
    transform: scale(1.01);
}

section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section .lower-content .left-content .image-wrapper img{
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 20px;
    width: 100%;
    object-fit: contain;
    box-shadow: 0 0px 8px 2px #b9b9b9;
    transition: all 0.4s ease;
}

section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section .lower-content .left-content .image-wrapper:hover img{
    transform: rotate(-2deg);
}

section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section .lower-content .right-content{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section .lower-content .right-content .content{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section{
    text-align: center;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .single-image-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 650px;
    margin: 0 auto;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .single-image-section .content{
    position: relative;
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 0px 8px 2px #b9b9b9;
    border-radius: 20px;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .single-image-section .content .image-wrapper img{
    width: 100%;
    display: block;
    object-fit: contain;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .single-image-section .content .content-wrapper{
    position: absolute;
    bottom: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to top, rgba(0,0,0,0.9), transparent 100%);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .single-image-section .content:hover .content-wrapper{
    visibility: visible;
    opacity: 1;
    transform: translateY(0%);
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .single-image-section .content .content-wrapper .image-title{
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .single-image-section .content .content-wrapper p{
    margin: 10px 0 0;
    color: #fff;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-grid-section .grid-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-grid-section .grid-wrapper .grid-item{
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-grid-section .grid-wrapper .grid-item:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 100, 200, 0.15);
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-grid-section .grid-wrapper .grid-item .image-wrapper{
    position: relative;
    width: 100%;
    max-height: 300px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-grid-section .grid-wrapper .grid-item .image-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 70%, rgb(136 189 255 / 70%) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-grid-section .grid-wrapper .grid-item:hover .image-wrapper::before{
    opacity: 1;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-grid-section .grid-wrapper .grid-item .image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-grid-section .grid-wrapper .grid-item:hover .image-wrapper img{
    transform: scale(1.1);
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-grid-section .grid-wrapper .grid-item .image-content{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-grid-section .grid-wrapper .grid-item .image-content .item-title{
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.2;
    font-weight: 600;
    color: #252525;
}


section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    font-family: 'Inter', system-ui, sans-serif;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-arrows {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin: 0 0 15px 0;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-arrows button {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    background: transparent;
    border-radius: 50%;
    font-size: 1rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-arrows button:hover,
section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-arrows button:active,
section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-arrows button:focus {
    border-color: #fff;
    box-shadow: 0 0px 8px 2px #b9b9b9;
    color: #0081CC;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-main {
    position: relative;
    aspect-ratio: 1300 / 524;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-main .slide-item {
    position: absolute;
    inset: 0;
    transform: scale(1.05);
    width: 100%;
    transition: all 0.7s ease-out;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-main .slide-item.active {
    transform: scale(1);
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-main .slide-item .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-main .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 100%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-main .slide-item:hover .slide-content {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-main .slide-item .slide-title {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
}


section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .progress-bars {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .progress-bar {
    flex: 1;
    height: 4px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .progress-bar .fill {
    width: 0;
    height: 100%;
    background: #0081CC;
    transition: width 0.3s ease;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .progress-bar.active .fill {
    width: 100%;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .dual-image-section{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    perspective: 800px;
    transform-style: preserve-3d;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .dual-image-section .image-wrapper {
    width: 100%;
    max-height: 500px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0px 8px 2px #b9b9b9;
    background-color: #fff;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1), box-shadow 0.45s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transform: scale(1) translateX(0) translateZ(0);
    will-change: transform;
    position: relative;
    z-index: 1;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .dual-image-section .image-wrapper img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .dual-image-section.left-hover .image-wrapper.left-image{
    transform: translateX(40px) translateZ(20px);
    box-shadow: 0 15px 40px rgb(0 127 255 / 21%);
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .dual-image-section.left-hover .image-wrapper.right-image{
    transform: scale(0.88) translateX(-110px) translateZ(-40px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .dual-image-section.right-hover .image-wrapper.right-image{
    transform: translateX(-40px) translateZ(20px);
    box-shadow: 0 15px 40px rgb(0 127 255 / 21%);
}

section.product-detail-section .tab-content-wrapper .tab-content .image-section .dual-image-section.right-hover .image-wrapper.left-image{
    transform: scale(0.88) translateX(110px) translateZ(-40px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

section.product-detail-section .tab-content-wrapper .tab-content iframe{
    width: 100%;
    min-height: 600px;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .single-video-section{
    position: relative;
    cursor: pointer;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .single-video-section .video-wrapper{
    border-radius: 20px;
    box-shadow: 0 0px 8px 2px #b9b9b9;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .single-video-section .video-content{
    position: absolute;
    right: -50px;
    bottom: 30px;
    padding: 30px;
    max-width: 500px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 0px 8px 2px #b9b9b9;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .single-video-section:hover .video-content{
    opacity: 1;
    visibility: visible;
    right: 20px;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .single-video-section .video-content .video-title{
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.2;
    font-weight: 600;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .single-video-section .video-content p{
    margin: 10px 0 0;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .video-grid-section{
    text-align: center;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .video-grid-section .grid-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .video-grid-section .grid-wrapper .grid-item{
    overflow: hidden;
    border: 1px solid #b9b9b9;
    border-radius: 20px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .video-grid-section .grid-wrapper .grid-item:hover{
    border: 1px solid #fff;
    box-shadow: 0 0px 8px 2px #b9b9b9;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .video-grid-section .grid-wrapper .grid-item .video-iframe-container iframe{
    max-height: 300px;
    min-height: 300px;
    width: 100%;
    display: block;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .video-grid-section .grid-wrapper .grid-item .video-content{
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section.product-detail-section .tab-content-wrapper .tab-content .video-section .video-grid-section .grid-wrapper .grid-item .video-content .video-title{
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.25;
    font-weight: 600;
    color: #252525;
}


.related-products-section {
    margin: 40px 0;
}

.related-products-section .related.products h2 {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 700;
    line-height: 1.35;
    color: #252525;
    margin: 0 0 20px;
}

.related-products-section .related.products .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0 0;
    list-style: none;
    padding: 0;
}

.related-products-section .related.products .products .product {
    border: 1px solid #eaeaea;
    padding: 20px;
    gap: 20px;
    transition: all 0.3s ease;
}

.related-products-section .related.products .products .product:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.related-products-section .related.products .products .product img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.related-products-section .related.products .products .product .news-content{
    padding: 0;
    text-align: center;
    align-items: center;
}

.related-products-section .related.products .products .product .news-content .woocommerce-loop-product__title {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.25;
    font-weight: 600;
    color: #252525;
    margin: 10px 0;
    min-height: auto;
}


.related-products-section .related.products .products .product .news-content .price {
    margin: 15px 0;
}

.related-products-section .related.products .products .product .news-content .price .woocommerce-Price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.related-products-section .related.products .products .product .news-content .price del .woocommerce-Price-amount {
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

.related-products-section .related.products .products .product .news-content .price ins {
    text-decoration: none;
    display: block;
    margin-top: 5px;
}

.related-products-section .price-label {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin-top: 4px;
}

.related-products-section .related.products .products .product .news-content .pro-foot {
    align-items: center;
}

.related-products-section .related.products .products .product .news-content .pro-foot .shop-btn{
    border: 1px solid #0081CC;
}

.related-products-section .related.products .products .product .news-content .pro-foot .shop-btn::before{
    content: none;
}

.related-products-section .related.products .products .product .news-content .pro-foot .shop-btn:hover {
    background-color: #fff;
    color: #0081CC;
}

.related-products-section .related.products .products .product .yith-wcwl-add-to-wishlist-button {
    background-color: #0081CC;
    border: 1px solid #0081CC;
    border-radius: 10px;
    padding: 9px;
    transition: all 0.3s ease;
}

.related-products-section .related.products .products .product .yith-wcwl-add-to-wishlist-button .yith-wcwl-icon{
    padding: 0;
    background: transparent;
    height: 100%;
    width: 100% !important;
}

.related-products-section .related.products .products .product .yith-wcwl-add-to-wishlist-button:hover{
    background-color: #fff;
}

.related-products-section .related.products .products .product .yith-wcwl-add-to-wishlist-button:hover .yith-wcwl-icon{
    stroke: #0081CC;
}

.related-products-section .related.products .products .product .yith-wcwl-add-to-wishlist-button__label {
    display: none;
}

.related-products-section .related.products .products .product .onsale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4444;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}


@media(max-width:1024px){
    .section-spacing{
        margin: 50px 0 0;
    }

    section.product-image-section .product-image-section-wrapper .product-right-section .custom-cart-section .cart{
        flex: auto;
    }

}

@media (max-width: 767px){
    section.product-image-section{
        padding: 0;
    }

    section.product-image-section .product-image-section-wrapper{
        gap: 32px;
    }
    
    section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .cta-button{
        padding: 8px 10px;
    }

    section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .cta-button.whishlist-button svg{
        height: 20px;
        width: 20px;
    }

    section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .cta-button img{
        height: 20px;
        width: 20px;
    }
    
    section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .share-popup-content {
        max-width: 400px;
    }
    
    section.product-image-section .product-image-section-wrapper .product-right-section .product-cta-buttons .share-popup-content .social_icons a {
        width: 45px;
        height: 45px;
    }
    
    section.product-detail-section{
        margin: 0;
    }
        
    section.product-detail-section .tab-content-wrapper .tab-content .full-width-content-section .content{
        padding: 20px;
    }

    section.product-detail-section .tab-content-wrapper .tab-content .content-and-image-section .lower-content{
        padding: 20px;
        grid-template-columns: repeat(1, 1fr);
    }

    section.product-detail-section .tab-content-wrapper .tab-content .image-section .single-image-section .content .content-wrapper{
        position: unset;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        background-image: none;
    }

    section.product-detail-section .tab-content-wrapper .tab-content .image-section .single-image-section .content .content-wrapper .image-title{
        color: #252525;
    }
    
    section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-grid-section .grid-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }

    section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slider-main .slide-content{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    section.product-detail-section .tab-content-wrapper .tab-content .video-section .single-video-section{
        box-shadow: 0 0px 8px 2px #b9b9b9;
    }

    section.product-detail-section .tab-content-wrapper .tab-content .video-section .single-video-section .video-wrapper{
        box-shadow: none;
        border-radius: 0;
    }

    section.product-detail-section .tab-content-wrapper .tab-content .video-section .single-video-section .video-content{
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        position: unset;
        max-width: 100%;
        padding: 20px;
    }

    section.product-detail-section .tab-content-wrapper .tab-content .video-section .video-grid-section .grid-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-products-section .related.products h2 {
        text-align: center;
        font-size: 24px;
    }
    
}

@media (max-width: 580px){
    section.product-detail-section .title-wrapper .title-inner-wrapper{
        padding: 0 10px;
        gap: 15px;
    }

    section.product-image-section .product-image-section-wrapper .product-left-section{
        flex: 0 0 100%;
        max-width: 100%;
    }

    section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-grid-section .grid-wrapper{
        grid-template-columns: repeat(1, 1fr);
    }
    
    section.product-detail-section .tab-content-wrapper .tab-content .image-section .dual-image-section{
        grid-template-columns: repeat(1, 1fr);
    }

    section.product-image-section .product-image-section-wrapper .product-right-section{
        flex: 0 0 100%;
        max-width: 100%;
    }

    section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slick-prev,
    section.product-detail-section .tab-content-wrapper .tab-content .image-section .image-slider-section .custom-slider .slick-next {
        display: none !important;
    }

    section.product-detail-section .tab-content-wrapper .tab-content .video-section .video-wrapper{
        max-width: 100%;
        padding-top: 60%;
    }
    
    section.product-detail-section .tab-content-wrapper .tab-content .video-section .video-grid-section .grid-wrapper{
        grid-template-columns: repeat(1, 1fr);
    }
}

/* product detail page style ends here */