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

.thumbnail-slider .slick-slide {
    /* width: 100px !important;   set the width YOU want */
    margin-right: 10px;
}

/* .thumbnail-slider .slick-track {
    /* 
    display: flex !important;   force track to shrink-fit children 
} */


.product-top{
    padding:26px 0 54px 0;
}

.product-top .container{
    max-width:1410px;
    width:100%;
    padding:0 20px;
    margin:0 auto;
}

.page-breadcrumb ul{
    display:flex;
    gap:5px;
    list-style:none;
    margin:0;
    padding:0;
    align-items:center;
    flex-wrap: wrap;
}

.page-breadcrumb ul li span{
    color: #1F1F1F;
    font-family: "Public Sans";
    font-size: 18px;
    font-weight: 400;
}

.page-breadcrumb ul li a{
    color: #717171;
    font-family: "Public Sans";
    font-size: 18px;
    font-weight: 400;
    text-decoration:none;
}

.page-breadcrumb ul li a:hover{
    color:#1F1F1F;
}

.page-breadcrumb ul li .icon{
    color: #717171;
}

/* Product Details Section */
.product-details{
    padding: 0 0 80px 0;
}

.product-details .container{
    max-width: 1410px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.product-details-wrap{
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Product Image Slider */
.product-details-left{
    max-width: 480px;
    width: 100%;
}

.product-image-slider{
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* Main Slider */
.main-slider{
    max-width: 480px;
    width: 100%;
    margin-bottom: 20px;
}

/* Ensure slick track lays out slides in a row and centers them vertically */
.main-slider .slick-track{
    display: flex;
    align-items: center;
}

/* Prevent slick-track from auto-calculating width */
/* .main-slider .slick-list {
    width: 100% !important;
    max-width: 100% !important;
} */

/* .main-slider .slick-track {
    width: 100% !important;
    max-width: 100% !important;
} */

.main-slider .slide-item{
    position: relative;
    /* width: 100% !important; */
    /* Let the slide height follow the image instead of forcing 480px */
    height: auto;
    max-height: 480px;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Ensure single image displays properly when slider is not initialized */
.main-slider:not(.slick-initialized) .slide-item {
    width: 100%;
    display: block;
}

.main-slider .slide-item img{
    width: 100%;
    /* Keep image responsive and avoid stretching */
    height: auto;
    max-height: 480px;
    object-fit: contain;
    cursor: pointer;
    display: block;
}

/* Thumbnail Slider */
.thumbnail-slider{
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    flex: 1;
    /* margin: 0 10px; */
    /* padding: 4px 0; */
}

/* Slick slider wrapper for thumbnails */
.thumbnail-slider .slick-list{
    margin: 0;
    overflow: hidden;
    width: 100%;
    padding: 4px 3px;
}

.thumbnail-slider .slick-track{
    /* display: flex; */
    align-items: center;
    gap: 0;
    /* transition: transform 0.3s ease-in-out;
    width: 100% !important; */
}

/* Ensure all slides have consistent spacing for seamless looping */
.thumbnail-slider .slick-slide{
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Ensure cloned slides have same spacing for seamless loop */
/* .thumbnail-slider .slick-cloned{
    /* margin handled by thumbnail-item 
} */

.thumbnail-slider .slick-cloned .thumbnail-item{
    width: 80px;
    margin-right: 10px;
}

.thumbnail-slider .thumbnail-item:last-child{
    margin-right: 0;
}

.thumbnail-slider .thumbnail-item{
    cursor: pointer;
    outline: none;
    flex-shrink: 0;
    margin-right: 10px;
    width: 80px;
    display: block;
    box-sizing: border-box;
}

.thumbnail-slider .thumbnail-item img{
    /* width: 80px;
    height: 80px; */
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

/* Active thumbnail with full border visibility */
/* .thumbnail-slider .thumbnail-item.active img, */
.thumbnail-slider .slick-slide.slick-current .thumbnail-item img,
.thumbnail-slider .slick-slide.slick-current img{
    border: 2px solid #dc3545 !important;
    border-radius: 10px !important;
}

/* Alternative selector for when slick syncs via asNavFor */
.thumbnail-slider .slick-slide.slick-active.slick-current .thumbnail-item img,
.thumbnail-slider .slick-slide.slick-active.slick-current img{
    border: 2px solid #dc3545 !important;
    border-radius: 10px !important;
}
.thumbnail-slider .slick-slide.slick-current-active .thumbnail-item img,
.thumbnail-slider .thumbnail-item:hover img{
    border-color: #dc3545;
    border-width: 2px;
    border-radius: 10px;
}

/* Ensure active slide container has proper spacing */
.thumbnail-slider .slick-slide.slick-current,
.thumbnail-slider .slick-slide.slick-current-active{
    padding: 0;
}

/* Slick Slider Customization */
.main-slider .slick-prev,
.main-slider .slick-next{
    display: none !important;
}

/* Hide default slick arrows for thumbnail slider since we use custom arrows */
.thumbnail-slider .slick-prev,
.thumbnail-slider .slick-next{
    display: none !important;
}

.main-nav-prev,
.main-nav-next {
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(31, 31, 31, 0.10);
    height: 46px;
    width: 46px;
    min-width: 46px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: all 0.3s ease;
}

.main-nav-prev:hover,
.main-nav-next:hover {
    background-color: #EB4227;
}

.main-nav-prev:hover svg path,
.main-nav-next:hover svg path {
    fill: #fff;
}

/* Override Slick's default arrow hiding */
.thumbnail-slider .main-nav-prev,
.thumbnail-slider .main-nav-next {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.product-image-slider-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    position: relative;
    overflow: visible;
}
/* Product Details Right Section */
.product-details-right{
    max-width: 850px;
}

.product-info{
    width: 100%;
}

/* Product Title Section */
.product-title-section{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
}

.product-title{
    color: #1F1F1F;
font-family: "Public Sans";
font-size: 36px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: capitalize;
}

.favorite-btn{
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #FCF0EE;
    display: flex;
width: 47px;
height: 47px;
align-items: center;
justify-content: center;
}


/* Product Rating */
.product-rating{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.stars{
    display: flex;
    gap: 1px;
}

.star{
    font-size: 20px;
    color: #ddd;
    line-height: 1;
}

.star.filled{
    color: #FFC107;
}

.review-count{
    color: #6B6B6B;
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.write-review-btn{
    display: flex;
    padding: 4px 10px;
    align-items: center;
gap: 10px;
border-radius: 6px;
background: #F4F4F4;
color: #1F1F1F;
font-family: "Public Sans";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
border: none;
cursor: pointer;
margin-left: 20px;
}



/* Product Code */
.product-code{
    margin-bottom: 30px;
}

.product-code span{
    color: #6B6B6B;
font-family: "Public Sans";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

/* Available Options */
.available-options{
    margin-bottom: 20px;
}

.section-title{
    color: #1F1F1F;
font-family: "Public Sans";
font-size: 26px;
font-style: normal;
font-weight: 600;
line-height: 36px;
margin-bottom: 20px;
}

.options-list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.option-checkbox{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(189, 0, 40, 0.40);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.option-checkbox input[type="checkbox"]{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-checkbox:has(input[type="checkbox"]:checked){
    background: rgba(189, 0, 40, 0.08);
    border-color: rgba(189, 0, 40, 0.60);
}

.option-checkbox input[type="checkbox"]:checked ~ .option-label{
    color: #1F1F1F;
    font-weight: 600;
}

.checkbox-custom{
    width: 12px;
    height: 12px;
    border: 2px solid #BD0028;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
}

.checkbox-custom::after{
    content: '';
    width: 7.2px;
    height: 7.2px;
    border-radius: 50%;
    background: #BD0028;
    opacity: 0;
    transition: opacity 0.3s;
}

.option-checkbox input[type="checkbox"]:checked + .checkbox-custom{
    background: #fff;
    border-color: #BD0028;
}

.option-checkbox input[type="checkbox"]:checked + .checkbox-custom::after{
    opacity: 1;
    background: #BD0028;
}

.option-label{
    color: #6B6B6B;
font-family: "Public Sans";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.option-checkbox input[type="checkbox"]:checked ~ .option-label{
    color: #1F1F1F;
    font-weight: 400;
}

.option-checkbox:hover{
    background: rgba(189, 0, 40, 0.08);
}

/* Option Radio Button Styles - Matching Design */
.option-radio{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(189, 0, 40, 0.40);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.option-radio input[type="radio"]{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-radio:has(input[type="radio"]:checked){
    background: rgba(189, 0, 40, 0.08);
    border-color: rgba(189, 0, 40, 0.60);
}

.radio-custom{
    width: 12px;
    height: 12px;
    border: 2px solid #BD0028;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
    background: #fff;
}

.radio-custom::after{
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #BD0028;
    opacity: 0;
    transition: opacity 0.3s;
}

.option-radio input[type="radio"]:checked + .radio-custom{
    background: #fff;
    border-color: #BD0028;
}

.option-radio input[type="radio"]:checked + .radio-custom::after{
    opacity: 1;
    background: #BD0028;
}

.option-radio .option-label{
    color: #6B6B6B;
    font-family: "Public Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.option-radio input[type="radio"]:checked ~ .option-label{
    color: #1F1F1F;
    font-weight: 400;
}

.option-radio:hover{
    background: rgba(189, 0, 40, 0.08);
}

/* .option-radio input[type="radio"]:checked + .radio-custom {
    border-color: #d13b27;
    background-color: #d13b27;
} */

.option-radio input[type="radio"]:checked ~ .option-label {
    color: #d13b27;
    font-weight: 600;
}


/* Price Section */
.price-section{
    margin-bottom: 30px;
}
.order-col.price {
    opacity: 1 !important;
}

.login-price-link{
    color: #BD0028 !important;
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.login-price-link:hover{
    text-decoration: none;
}

/* Your Order */
.your-order{
    margin-bottom: 60px;
}

.table-wrapper{
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 800px; /* Approximately 15 rows height */
    -webkit-overflow-scrolling: touch;
    border: 1px solid #C5C5C5;
    border-radius: 10px;
}

.order-table{
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    border: none;
    border-radius: 0;
    overflow: visible;
    table-layout: fixed;
}

.order-table th,
.order-table td{
    width: 25%;
}

.order-table thead{
    background: #646464;
    position: sticky;
    top: 0;
    z-index: 10;
}

.order-table-header{
    background: #646464;
    position: sticky;
    top: 0;
    z-index: 10;
}

.order-table-header th{
    padding: 12px 20px;
    color: #FFF;
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    text-align: left;
    border-bottom: 1px solid #C5C5C5;
}

.order-table-row{
    background: #F6F6F6 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.order-table-row:last-child{
    border-bottom: none;
}

.order-table-row td{
    padding: 9px 20px;
    vertical-align: middle;
}

.order-col{
    color: #1F1F1F;
font-family: "Public Sans";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
}

/* Disabled state for out of stock items */
.order-table-row.disabled {
    opacity: 0.6;
}

.order-table-row.disabled .order-col.stock {
    color: #dc3545;
    font-weight: 500;
}

.quantity-control.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.quantity-control.disabled .qty-input {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.quantity-control.disabled .qty-btn {
    cursor: not-allowed;
    opacity: 0.5;
}



/* Quantity Control */
.quantity-control{
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(189, 0, 40, 0.40);
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    width: 100px;
}


.option.quantity {
    margin-bottom: 10px;
}

.qty-input{
    flex: 1;
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 0;
    text-align: left;
    padding: 0 12px;
    color: #1F1F1F;
font-family: "Public Sans";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 36px; /* 200% */
    appearance: textfield;
    -moz-appearance: textfield;
    background: transparent;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}


.qty-input:focus,
.qty-input.form-control:focus{
    outline: none;
    border-color: transparent !important;
    box-shadow: none !important;
}

.qty-spinner{
    display: flex;
    flex-direction: column;
    width: 32px;
}

.qty-btn{
    width: 100%;
    height: 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
    color: #6B6B6B;
    flex: 1;
}


.qty-btn svg{
    width: 12px;
    height: 12px;
}

/* Action Buttons */
.action-buttons{
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-add-cart{
    display: flex;
    height: 60px;
    padding: 15px 36px;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 10px;
border: 1px solid #BD0028;
color: #BD0028;
font-family: "Public Sans";
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: uppercase;
background-color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}


/* Hide add to cart button when disabled (out of stock) */

.btn-add-cart[disabled],
.btn-add-cart:disabled {
    display: none !important;
}

.btn-add-cart:hover{
    background: #FA8232;
    border-color: #FA8232;
    color: #fff;
}

.btn-add-cart:hover svg path{
    stroke: #fff;
}

.btn-compare{
    display: flex;
    padding: 16.5px;
    align-items: center;
    border-radius: 6px;
background: #FCF0EE;
height: 57px;
width: 57px;
border: none;
cursor: pointer;
}


/* Description Section */
.description-section{
    padding: 0 0 80px 0;
}

.description-section .container{
    max-width: 1410px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.description-content{
    border-radius: 10px;
    border: 1px solid rgba(189, 0, 40, 0.60);
    background: rgba(246, 246, 246, 0.60);
}

.description-content-wrap{
    padding: 40px 40px 96px 40px;
}

.description-title{
    color: #BD0028;
text-align: left;
font-family: "Public Sans";
font-size: 26px;
font-style: normal;
font-weight: 600;
line-height: 36px; /* 138.462% */
    padding: 30px 40px;
    background: rgba(235, 235, 235, 0.80);
    border-radius: 10px 10px 0 0;
}

.product-overview h3 {
    color: #1F1F1F !important;
    text-align: left !important;
    font-family: "Public Sans" !important;
    font-size: 26px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 36px !important;
    text-transform: capitalize !important;
    margin-bottom: 15px !important;
}
.product-overview h4{
    color: #1F1F1F;
    text-align: left;
    font-family: "Public Sans";
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 13px;
    margin-top: 30px;
}

.product-overview{
    color: #6B6B6B;
font-family: "Public Sans";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
    margin-bottom: 30px;
}

.product-overview [class*="_tableWrapper"] {
	overflow: auto;
}

.description-features{
    margin-bottom: 30px;
}


.feature-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-overview li{
    color: #6B6B6B;
font-family: "Public Sans";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.product-overview li::before{
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3e%3ccircle cx='3.6' cy='3.6' r='3.6' fill='%23BD0028'/%3e%3c/svg%3e");
    position: absolute;
    left: 0;
    color: #BD0028;
    height: 7px;
    width: 7px;
    line-height: 1;
    top: 0;
    background-repeat: no-repeat;
    background-size: contain;
    margin: auto;
    bottom: 0;
}

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

._tableContainer_80l1q_1{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
}

.spec-table{
    min-width: 600px !important;
    border-collapse: collapse !important;
    border: 1px solid rgba(0, 0, 0, 0.10) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.spec-table thead{
    background: rgba(235, 235, 235, 0.80) !important;
}

._tableContainer_80l1q_1 thead tr{
    border-bottom: 1px solid rgba(0, 0, 0, 0.10) !important;
}

.spec-header-title,
.spec-header-value{
    color: #FFF !important;
    font-family: "Public Sans" !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: normal !important;
    padding:12px 20px !important;
    text-align: left !important;
}

.spec-header-title{
    width: 40% !important;
    background-color: #646464 !important;
}

.spec-header-value{
    width: 60%;
background: rgba(100, 100, 100, 0.90);
}

table tbody tr{
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
}

table tbody tr:last-child{
    border-bottom: none;
}

table tbody tr:nth-child(even){
    background: rgba(255, 255, 255, 0.60);
}

.spec-title {
    color: #1F1F1F;
font-family: "Public Sans";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
    padding: 12px 20px;
    width: 40%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-right: 1px solid rgba(0, 0, 0, 0.10);
background: #FFF;
}

.spec-value{
    color: #6B6B6B;
font-family: "Public Sans";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
    padding: 12px 20px;
}

.pdp-shipping-info{
    display:none !important;
}

/* Responsive */
@media(max-width:1200px){
    .product-details-wrap{
        gap: 20px;
    }
    .product-details-left{
        max-width: 40%;
    }
    .product-details-right{
        max-width: 60%;
    }
}

@media(max-width:
px){
    .product-details-wrap{
        flex-direction: column;
    }
    .product-details-left{
        max-width: 500px;
    }
    .product-details-right{
        max-width: 100%;
    }
    .product-image-slider-bottom{
        justify-content: center;
        gap: 0;
    }
    
    /* .thumbnail-slider{
        margin: 0 5px;
        padding: 4px 0;
    } */
    
    .thumbnail-slider .slick-list{
        padding: 4px 3px;
    }
    
    /* .thumbnail-slider .slick-slide{
         width: 70px !important; 
    }
    
    .thumbnail-slider .slick-cloned{
         margin handled by thumbnail-item 
    } */
    
    .thumbnail-slider .slick-cloned .thumbnail-item{
        width: 70px;
        margin-right: 10px;
    }
    
    .thumbnail-slider .thumbnail-item{
        margin-right: 10px;
    }
    
    /* .thumbnail-slider .thumbnail-item,
    .thumbnail-slider .thumbnail-item img{
        width: 70px;
        height: 70px;
    } */
    .page-breadcrumb .breadcrumb{
      margin-bottom: 0 !important;
    }
    .product-top {
       padding: 26px 0 40px 0;
    }
}

@media (max-width: 1024px){
    .product-details-wrap{
        gap: 30px;
    }
    
    /* .product-image-slider-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        position: relative;
        overflow: visible;
        max-width: 460px;
        margin-inline: auto;
    } */
}

@media (max-width: 991px){
    .description-title{
        padding: 25px;
    }
    .description-content-wrap{
        padding: 30px;
    }
}

@media (max-width: 768px){
    .product-details-wrap{
        flex-direction: column;
        gap: 30px;
    }
    
    .product-details-right{
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .product-title{
        font-size: 30px;
    }
    
    .table-wrapper{
        overflow-x: auto;
        overflow-y: auto;
        max-height: 800px;
        -webkit-overflow-scrolling: touch;
    }
    
    .order-table{
        min-width: 600px;
    }
    .description-title{
        padding: 20px
    }
    .description-content-wrap{
        padding: 20px;
    }
    .product-description-title{
        font-size: 20px;
        line-height: 28px;
    }
    .product-overview{
        font-size: 16px;
        margin-bottom: 20px;
    }
    .feature-section-title{
        font-size: 20px;
    }

    .feature-list li{
        font-size: 16px;
    }

    .description-features{
        margin-bottom: 20px;
    }

    .spec-header-label, .spec-value{
        font-size: 18px;
    }

    .spec-title{
        font-size: 16px;
    }

    .spec-value{
        font-size: 16px;
    }
    span.description-accordion-title {
        font-size: 22px !important;
    }
    .description-accordion-header {
        padding: 16px 20px !important;
    }
    .product-overview strong span {
        font-size: 20px !important;
    }
    .product-overview strong{
        font-size:16px !important;
    }
    .related-products-title {
        font-size: 30px !important;
    }
    .shop-product-content-top h3 {
        font-size: 18px !important;
    }
    .shop-product-ammount p {
        font-size: 18px !important;
    }
    .shop-product-content {
        gap: 10px !important;
    }
    .description-section{
       padding: 0 0 40px 0;
    }
    
}

/* @media (max-width: 768px) and (min-width: 577px){
    .product-image-slider-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        position: relative;
        overflow: visible;
        max-width: 365px;
        margin-inline: auto;
    }
} */

/* @media (max-width: 576px) and (min-width: 480px){
    .product-image-slider-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        position: relative;
        overflow: visible;
        max-width: 285px;
        margin-inline: auto;
    }
} */

@media(max-width:576px){
    .product-title{
        font-size: 24px;
    }

    .favorite-btn{
        width: 30px;
    height: 30px;
    }

    .favorite-btn svg{
        width: 15px;
    }

    .section-title{
        font-size: 20px;
        margin-bottom: 15px;
    }
    .login-price-link{
        font-size: 18px;
    }
    .order-table-header th{
        font-size: 18px;
    }

    .order-col{
        font-size: 16px;
    }

    .your-order{
        margin-bottom: 30px;
    }
    
    .table-wrapper{
        max-height: 600px; /* Smaller height for mobile */
    }

    .btn-add-cart{
        font-size: 18px;
        padding: 10px 20px;
    }
    .main-nav-prev, .main-nav-next {
        height: 30px;
        width: 30px;
        min-width: 30px;
        min-height: 30px;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    .main-nav-prev svg, .main-nav-next svg{
        width: 12px;
        height: 18px;
    }
    .thumbnail-slider{
        margin: 0 5px;
        padding: 4px 0;
    }
    
    .thumbnail-slider .slick-list{
        padding: 4px 3px;
    }
    
    /* .thumbnail-slider .slick-slide{
        /* width: 50px !important; 
    }
    
    .thumbnail-slider .slick-cloned{
        /* margin handled by thumbnail-item 
    } */
    
    .thumbnail-slider .slick-cloned .thumbnail-item{
        width: 50px !important;
        margin-right: 8px;
    }
    
    .thumbnail-slider .thumbnail-item{
        /* width: 50px !important; */
        margin-right: 8px;
    }
        
    /* Description Section Responsive */
    
    .feature-section-title{
        margin-bottom: 15px;
    }
    
    .feature-list li{
        margin-bottom: 10px;
        padding-left: 24px;
    }
 
    
    .spec-title{
        width: 35%;
    }
}

@media (max-width: 480px){
    .product-title{
        font-size: 20px;
    }

    .write-review-btn{
        margin-left: 0;
    }
    
    .options-list{
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .option-checkbox,
    .option-radio{
        padding: 8px 10px;
        font-size: 16px;
    }
    
    .option-label{
        font-size: 16px;
    }
    
    .order-table-row{
        padding: 10px;
    }
    .main-nav-prev, .main-nav-next {
        height: 24px;
        width: 24px;
        min-width: 24px;
        min-height: 24px;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    .main-nav-prev svg, .main-nav-next svg{
        width: 8px;
        height: 10px;
    }
}

/* Review Section */
.review-section{
    padding: 0 0 126px 0;
}

.review-section .container{
    max-width: 1410px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.review-accordion,
.description-accordion{
    border-radius: 10px;
    border: 1px solid #C3C3C3;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.review-accordion.is-open{
    background: rgba(246, 246, 246, 0.60);
}

.review-accordion-header[aria-expanded="true"]{
    border-bottom: 1px solid #C3C3C3;
}

.review-accordion-header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    background: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, border-bottom 0.2s ease;
}
.description-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    margin:0 !important;
    border-radius:10px !important;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.review-accordion-title{
    color: #1F1F1F;
font-family: "Public Sans";
font-size: 26px;
font-style: normal;
font-weight: 600;
line-height: 36px; 
}

.review-accordion-icon,
.description-accordion-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 20px;
    min-height: 20px;
    font-size: 20px;
}

.review-accordion-icon svg,
.description-accordion-icon svg{
    position: absolute;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.review-accordion-icon .icon-plus,
.description-accordion-icon .icon-plus{
    opacity: 1;
    visibility: visible;
}

.review-accordion-icon .icon-minus,
.description-accordion-icon .icon-minus{
    opacity: 0;
    visibility: hidden;
}

.review-accordion-header[aria-expanded="true"] .review-accordion-icon .icon-plus,
.description-accordion-header[aria-expanded="true"] .description-accordion-icon .icon-plus{
    opacity: 0;
    visibility: hidden;
}

.review-accordion-header[aria-expanded="true"] .review-accordion-icon .icon-minus,
.description-accordion-header[aria-expanded="true"] .description-accordion-icon .icon-minus{
    opacity: 1;
    visibility: visible;
}

.review-accordion-content{
    /* max-height: 100% !important; */
    transition: max-height 0.3s ease;
    will-change: max-height;
    overflow: hidden;
}

.review-accordion.is-open .review-accordion-content{
    overflow: visible !important;
}

.description-accordion-content{
    display: block;
}


.review-item{
    padding: 40px 40px 48px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.review-item:last-child{
    border-bottom: none;
}

.review-header-info{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 60px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.review-author-date{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-author{
    color: #000;
    font-family: "Public Sans";
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}

.review-date{
    color: #1F1F1F;
    font-family: "Public Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.review-stars{
    display: flex;
    gap: 2px;
    align-items: center;
    flex-shrink: 0;
}

.review-star{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.review-star svg{
    width: 100%;
    height: 100%;
}
.review-star svg path{
    fill: #FFC107 !important;
}
.review-text{
    color: #1F1F1F;
    font-family: "Public Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    word-wrap: break-word !important;
}

/* Review Rating Stars Input */
.review-rating-stars{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.rating-label{
    color: #1F1F1F;
    font-family: "Public Sans";
    font-size: 18px;
    font-weight: 400;
}

.star-rating-input{
    display: flex;
    align-items: center;
    gap: 5px;
}

.star-rating-input input[type="radio"]{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.star-label{
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
    user-select: none;
    display: inline-block;
}

/* Star colors handled by JavaScript */

/* Review Section Responsive */
@media (max-width: 768px){
    .review-section{
        padding: 0 0 60px 0;
    }
    
    .review-accordion-header{
        padding: 16px 20px;
    }
    
    .review-accordion-title{
        font-size: 22px;
    }
    
    .review-list{
        padding: 0 20px 20px 20px;
    }
    
    .review-item{
        padding: 16px 0;
    }
    
    .review-header-info{
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .review-author-date{
        gap:10px;
    }
    .review-author,
    .review-date,
    .review-text{
        font-size: 16px;
    }
}

@media (max-width: 576px){
    .review-accordion-header{
        padding: 14px 16px;
    }
    
    .review-accordion-title{
        font-size: 20px;
    }
    
    .review-list{
        padding: 0 16px 16px 16px;
    }
    
    .review-item{
        padding: 14px 0;
    }
    
    .review-author,
    .review-date,
    .review-text{
        font-size: 15px;
    }
    
    .review-star{
        width: 18px;
        height: 18px;
    }
}

/* Related Products Section */
.related-products-section{
    padding-bottom: 137px;
}

.related-products-section .container{
    max-width: 1410px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.related-products-content{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.related-products-title{
    color: #191C1F;
text-align: center;
font-family: "Public Sans";
font-size: 44px;
font-style: normal;
font-weight: 600;
line-height: normal;
}

.shop-products{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Shop products */
.shop-product-box {
    display:flex;
    flex-direction:column;
    gap:16px;
    min-width: 0; /* Prevents grid items from overflowing */
    width: 100%; /* Ensures proper width calculation */
}

.shop-product-content {
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:30px;
}

.shop-product-content-top{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.shop-product-content-top h3{
    color: #191C1F;
    font-family: "Public Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    transition: color 0.3s ease;
}

/* Change h3 color on hover over product image */
.shop-product-box-img:hover ~ .shop-product-content .shop-product-content-top h3 {
    color: #D13B27; /* Change to your desired hover color */
}

.shop-product-price{
    display:flex;
    gap:22px;
    align-items:center;
    flex-wrap: wrap;
}

.shop-product-ammount{
    display:flex;
    align-items:center;
    gap:5px;
}

.shop-product-ammount p{
    color: #F78F26;
    font-family: "Public Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px; 
}

.shop-product-ammount .special-price{
    color: #F78F26;
    font-family: "Public Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    margin: 0;
}

.shop-product-ammount .old-price,
.shop-product-ammount del{
    color: #969696;
    font-family: "Public Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
}

.discount-badge{
    display: flex;
padding: 4px 8px;
justify-content: center;
align-items: center;
    border-radius: 4px;
background: #EFD33D;
    color: #000;
font-family: 'Public Sans';
font-size: 20px;
font-weight: 600;
}

.shopproduct-btn{
    display: flex;
    padding: 7px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width:max-content;
    border-radius: 10px;
    background: #D13B27;
    color: #FFF !important;
    font-family: "Public Sans";
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: normal !important;
    text-decoration:none;
}

.shop-product-box-img{
    position:relative;
    border-radius:0;
    margin-bottom: 0 !important;
    width: 100%; /* Ensures slider container takes full width */
    min-width: 0; /* Prevents width calculation issues */
    overflow: hidden; /* Prevents content overflow */
    height: 330px;
}

.shop-product-box-img .slide {
    height: 330px;
    background-size: cover !important;
    background-position: center !important;
    border-radius:0;
    width: 100%; /* Ensures slides take full width */
    display: block;
    background-color: #f6f6f8;
    background-repeat: no-repeat !important;
}

/* Fix for Slick slider within grid */
.shop-product-box-img .slick-list {
    width: 100% !important;
    position: relative;
    height: 330px !important;
}

.shop-product-box-img .slick-track {
    width: 100% !important;
    position: relative;
    height: 330px !important;
}

.shop-product-box-img .slick-slide {
    width: 100% !important;
    height: 330px !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    opacity: 0;
    background-color: transparent !important;
    transition: opacity 0.7s linear;
}

.shop-product-box-img .slick-slide[style*="left"] {
    left: 0 !important;
}

.shop-product-box-img .slick-slide.slick-active,
.shop-product-box-img .slick-slide.slick-current {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    opacity: 1;
    z-index: 1;
}

.shop-product-box-img .slick-slide > div {
    height: 100%;
    width: 100%;
    background-color: transparent;
}

/* Ensure backgrounds are visible during fade transitions */
.shop-product-box-img .slick-slide {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.shop-product-box-img .slick-slide.slick-active,
.shop-product-box-img .slick-slide.slick-current {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Prevent white background during transitions */
.shop-product-box-img .slick-list,
.shop-product-box-img .slick-track {
    background-color: transparent;
}


.shop-product-box-img .badge{
    display: none;
    padding: 5px 10px;
    align-items:center;
    justify-content:center;
    border-radius: 2px;
    font-family: "Public Sans";
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    position:absolute;
    top:20px;
    left:20px;
    transition:all 0.3s ease;
}

.shop-product-box-img .badge.off{
    background-color:#EFD33D;
    color:  #191C1F;
}

.shop-product-box-img .sale{
    background-color:#2DB224;
    color:  #fff;
}

.shop-product-box-img .sold{
    background-color:#929FA5;
    color:  #fff;
}

.product-action{
    position:absolute;
    top:20px;
    right:20px;
    display:none;
    flex-direction:column;
    gap:8px;
    transition:all 0.3s ease;
}

.product-nav{
    position:absolute;
    top:0;
    right:20px;
    left:20px;
    bottom:0;
    display:none;
    justify-content:space-between;
    align-items:center;
    transition:all 0.3s ease;
    height: max-content;
    margin: auto;
}

.shop-product-box-img .shop-now{
    display: none;
    padding: 7px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #D13B27;
    color: #FFF !important;
    font-family: "Public Sans";
    font-size: 18px;
    font-weight: 700;
    position:absolute;
    bottom:20px;
    left:0;
    right:0;
    width:max-content;
    margin:0 auto;
    text-decoration:none;
    transition:all 0.3s ease;
}

.shop-product-box-img .shop-now:hover{
    background: #F78F26;
    color: #FFFFFF;
}


 /* Slick dots container */
 .shop-product-box-img .slick-dots {
     transition:all 0.3s ease;
     position: absolute;
     bottom: 20px; /* adjust as needed */
     left: 0;
     right:0;
     display: flex !important;
     align-items: center;
     justify-content:center;
     gap: 4px;
     padding: 10px 6px;
     background: rgba(0, 0, 0, 0.65);
     border-radius: 40px;
     backdrop-filter: blur(6px);
     width:53px;
     margin:0 auto;
     visibility: visible !important;
     opacity: 1 !important;
     z-index: 10;
   }
  
  /* Remove default styles */
  .shop-product-box-img .slick-dots li {
    margin: 0;
    height:auto;
    width:auto;
  }
  
  /* Dot button */
  .shop-product-box-img .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    font-size: 0;
    padding: 0;
    background: #ffffff;
    opacity: 1;
    border: 0;
    transition: 0.3s ease;
  }
  
  .shop-product-box-img .slick-dots li button::before{
    display:none;
  }
  
  /* Active dot */
  .shop-product-box-img .slick-dots li.slick-active button {
    background: #C82828; /* red color */
  }

  .shop-product-box-img:hover .badge{
    display:flex;
}

.shop-product-box-img:hover .product-action{
    display:flex;
}

.shop-product-box-img:hover .product-nav{
     display:flex;
}

 .shop-product-box-img:hover .shop-now{
    display:flex;
    
} 

.shop-product-box-img:hover .slick-dots{
    bottom:65px;
}

.product-action svg:hover rect {
    fill: #F78F26 !important;
    fill-opacity: 1 !important;
}
.product-action svg:hover {
    fill: #F78F26 !important;
}
.product-nav .nav-prev:hover path,
.product-nav .nav-next:hover path,
.product-nav .nav-prev:hover svg path,
.product-nav .nav-next:hover svg path {
    fill: #F78F26 !important;
}
.shop-product-box-img:hover ~ .shop-product-content .shop-product-content-top h3 {
    color: #D13B27; /* Change to your desired hover color */
}


/* Breadcrumb styling */
.page-breadcrumb .breadcrumb {
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
  }
  
  /* Video styling */
  .video-slide {
    position: relative;
    width: 100%;
  }
  
  .video-placeholder {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
  }
  
  .video-placeholder iframe,
  .video-placeholder video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    min-height: 400px;
  }
  
  /* Ensure video slides are visible in slider */
  .main-slider .video-slide {
    display: block !important;
    opacity: 1 !important;
  }
  
  /* Hide video placeholders in non-active slides to prevent reflection */
  .main-slider .slick-slide:not(.slick-active) .video-placeholder {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  
  /* Only show video placeholder in active slide */
  .main-slider .slick-slide.slick-active .video-placeholder {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Hide video players in non-active slides */
  .main-slider .slick-slide:not(.slick-active) .video-placeholder iframe,
  .main-slider .slick-slide:not(.slick-active) .video-placeholder video {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  .video-thumbnail-img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .video-play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .video-thumbnail {
    position: relative;
    cursor: pointer;
    width: 100%;
  }
  
  .video-thumb-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
  }
  
  .video-thumb-img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .video-thumbnail:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.15);
  }
  
  .video-thumbnail .video-thumb-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
  }
  
  .video-thumbnail:hover .video-thumb-wrapper::after {
    background: rgba(0, 0, 0, 0.1);
  }
  .page-breadcrumb .breadcrumb li {
    display: inline-block;
  }
  .page-breadcrumb .breadcrumb li a {
    color: #717171 !important;
    text-decoration: none;
  }
  .page-breadcrumb .breadcrumb li a:hover {
    color: #1F1F1F;
    text-decoration: underline;
  }
  .page-breadcrumb .breadcrumb li:last-child span {
    color: #1F1F1F;
  }
  .page-breadcrumb .breadcrumb li .icon {
    color: #717171;
  }


.group._tableWrapper_1rjym_13.flex.w-fit.flex-col-reverse {
 overflow-x: scroll;
}

/* Responsive */


@media(max-width:1200px){
.shop-products{
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:992px){
    .shop-products {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-product-content-top h3{
        font-size: 20px;
    }
    .shop-product-ammount p{
        font-size: 20px;
    }
    .shop-product-ammount del{
        font-size: 16px;
    }
    .related-products-title{
        font-size: 36px;
    }
    .related-products-section{
        padding-bottom: 120px;
    }
}

@media(max-width:576px){
    .shop-products {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .related-products-section{
        padding-bottom: 60px;
    }
    .related-products-content{
        gap:30px;
    }
}