.product__page {
    padding-top: 96px; /* offset fixed header height on desktop */
}
@media (max-width: 991px){
    .product__page{ padding-top: 78px; } /* ~72px header + small gap */
}
@media (max-width: 575px){
    .product__page{ padding-top: 70px; } /* ~64px header + small gap */
}

.product__page .product__images__container:hover .show__zoom__img .show {
    z-index: 999;
}

.product__page .show__zoom__img {
    position: relative;
    width: 100%;
}

.product__page .show__zoom__img .show {
    position: absolute;
    width: 650px;
    height:445px;
    overflow: hidden;
    left: 105%;
    bottom: 75px;
    background: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background: transparent;
    z-index: -1;
}

.product__page .thumb__slider {
    margin-top: 10px;
}

.product__page .gallery-thumbs {
    height: 100%;
}

.product__page .gallery-thumbs .swiper-slide {
    width: 60px !important;
    height: 60px !important;
}

.product__page .gallery-thumbs .swiper-slide-thumb-active img {
    border: 1px solid var(--dynamic-color);
}

.product__page .gallery-thumbs img.thumb__img {
    height: 100%;
}

.product__page .gallery-thumbs .arrow__wrapper i {
    font-size: 13px;
    padding: 1px;
    border-radius: 50%;
    text-align: center;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
}

.product__page .gallery-thumbs .thumb-swiper-button-next i {
    position: absolute;
    right: 0px;
    top: 30%;
    z-index: 5;
    display: none;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
}

.product__page .gallery-thumbs .thumb-swiper-button-prev i {
    position: absolute;
    left: 0px;
    top: 30%;
    z-index: 5;
    display: none;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
}

.product__page .gallery-thumbs:hover .thumb-swiper-button-next i {
    display: block;
}

.product__page .gallery-thumbs:hover .thumb-swiper-button-prev i {
    display: block;
}
@media(min-width:1200px){
    .swiper-slide-active{
        width:455px!important;
    }
}

.product__page .gallery-top .swiper-slide {
    text-align: center;
    border: 1px solid #0001;
    border-radius: 4px;
}

.product__page .gallery-top .swiper-slide img {
    cursor: pointer;
    width: 445px;
    height: 445px;
}

@media screen and (max-width: 991px) {
    .product__page .gallery-top .swiper-slide img {
        height: 300px;
        width: 300px;
    }
}

.product__page .product-details-wrapper:hover {
    z-index: 10;
}

.product__page .brand-stock_status{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
@media screen and (max-width: 991px) {
    .product__page .brand-stock_status{
        margin-top: 35px;
    }
}

.brand-stock_status .in-stock,.brand-stock_status .out-of-stock  {
    font-size: 12px;
    color: #4e4e4e;
    margin-right: 25px;
    text-transform: uppercase;
}
.brand-stock_status .in-stock > i,.brand-stock_status .out-of-stock > i{
    color: #02cb87;
    display: inline-block;
    margin-right: 5px;
    margin-top: -3px;
    font-size: 13px;
}

.brand-stock_status .out-of-stock > i{
    color: #e40d0db8;
}

.product__page .brand-stock_status .brand-name{
    font-size: 12px;
    color: #0D0B47;
    text-transform: capitalize;
    font-weight: 500;
}

.product__page .product-name-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.product__page .product-name-rating .product-name {
    font-size: 24px;
    color: #4e4e4e;
    font-weight: 500;
    line-height: 1.4;
}

@media screen and (max-width: 991px) {
    .product__page .product-name-rating .product-name {
        font-size: 20px;
    }
}

.product__page .product-name-rating .rating-container {
    text-align: right;
    display: flex;
    align-items: center;
}

.product__page .product-price {
    display: flex;
    align-items: center;
}

.product__page .product-price .new-price {
    color: var(--dynamic-color);
    font-size: 30px;
    font-weight: 500;
}

.product__page .product-price .old-price {
    margin-left: 18px;
    font-size: 15px;
    color: #6e6e6e;
    text-decoration: line-through;
}

.product__page .color-wrapper .color-title,.product__page .size-wrapper .size-title{
    text-transform: uppercase;
    margin: 10px 0 5px;
    font-size: 14px;
    font-weight: 500;
}
.product__page .product-short-desc > p{
    font-size: 15px;
    color: #4e4e4e;
    margin-top: 10px;
    margin-bottom: 22px;
}

.color-item,
.color-item input {
    position: relative;
    overflow: hidden;
    width: 26px;
    height: 26px;
    border-radius: 50px;
}

.color-item {
    display: inline-block;
    margin-right: 8px;
}

.color-item input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.color-item i {
    content: "";
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 2px;
    width: 7px;
    height: 12px;
    border: 2px solid #fff;
    border-left: none;
    border-top: none;
    transform: translate(7.75px, 4.5px) rotate(45deg);
    opacity: 0;
}

.color-item input:checked+i {
    opacity: 1;
}

label {
    display: block;
    margin: 8px 0;
    user-select: none;
    font-size: 14px;
    text-transform: capitalize;
    cursor: pointer;
}

input[type=radio] {
    background-color: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    width: 16px;
    position: relative;
    outline: none;
    vertical-align: middle;
    margin-right: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

input[type=radio]:checked {
    border: 1px solid #0077FF;
    background: #fff;
}

input[type=radio]:after {
    background-color: #0077FF;
    border-radius: 50px;
    content: '';
    height: 16px;
    width: 16px;
    position: absolute;
    left: -1px;
    top: -1px;
    pointer-events: none;
    overflow: hidden;
    transform: scale(0);
}

input[type=radio]:checked:after {
    background-color: #006eec;
    border-color: #fd080800;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    transition: all .2s ease;
}

.product__page .cart-buy-favourite {
    margin: 20px 0;
    display: flex;
}

.product__page .cart-buy-favourite .add__cart,
.product__page .cart-buy-favourite .buy-btn {
    padding: .5rem 1rem;
    height: auto;
    line-height: 1.2;
    border-radius: .25rem;
    cursor: pointer;
    text-align: center;
    outline: none;
    text-transform: none;
    margin-right: 10px;
    transition: all .2s ease;
}
/* Default to Bootstrap-like outline style */
.product__page .cart-buy-favourite .add__cart{
    background: transparent;
    border: 1px solid #343a40;
    color: #343a40;
}
.product__page .cart-buy-favourite .add__cart:hover{
    background: #343a40;
    border-color: #343a40;
    color:#fff;
}
/* Buy Now as solid dark button */
.product__page .cart-buy-favourite .buy-btn{
    background: #343a40;
    border: 1px solid #343a40;
    color:#fff;
}
.product__page .cart-buy-favourite .buy-btn:hover{
    background: #23272b;
    border-color: #23272b;
    color:#fff;
}
/* Increase specificity so these beat louis.css theme styles loaded later */
body.louis-theme .product__page .cart-buy-favourite .add__cart.btn{ background: transparent; border:1px solid #343a40; color:#343a40; }
body.louis-theme .product__page .cart-buy-favourite .add__cart.btn:hover{ background:#343a40; border-color:#343a40; color:#fff; }
body.louis-theme .product__page .cart-buy-favourite .buy-btn.btn{ background:#343a40; border:1px solid #343a40; color:#fff; }
body.louis-theme .product__page .cart-buy-favourite .buy-btn.btn:hover{ background:#23272b; border-color:#23272b; color:#fff; }

/* handled above in the unified block */
/* overridden: see unified Buy Now style above */
/* overridden: hover handled above */
@media (max-width:450px){
    .product__page .cart-buy-favourite{ flex-wrap: wrap; gap:8px; }
    .product__page .cart-buy-favourite .add__cart,
    .product__page .cart-buy-favourite .buy-btn{ margin-right: 0; }
}
.product__page .cart-buy-favourite .fav {
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-size: 20px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #4e4e4e;
    cursor: pointer;
}

.product__page .cart-buy-favourite .fav.active {
    color: #ff0077;
}

.product__page .aditional-infos-row {
    margin-bottom: 15px;
}

.product__page .aditional-infos-row .info-title,.social-share .info-title{
    text-transform: uppercase;
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 500;
}

.product__page .aditional-infos-row .info-item .item {
    color: var(--dynamic-color);
    font-weight: 500;
    font-size: 13px;
    margin: 3px 0 0 2px;
    display: inline-block;
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
}

.product__page .aditional-infos-row .info-item .item:hover {
    text-decoration: underline;
}

.a2a_default_style .a2a_count, .a2a_default_style .a2a_svg, .a2a_floating_style .a2a_svg, .a2a_menu .a2a_svg, .a2a_vertical_style .a2a_count, .a2a_vertical_style .a2a_svg {
    border-radius: 20px!important;
}

.a2a_svg {
    width: 27px!important;
    height: 27px!important;
    line-height: 27px!important;
    padding: 3px!important;
}

.product__page .product__desc__container {
    display: flex;
    margin-top: 20px;
    background: white;
    font-size: 16px;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .product__page .product__desc__container {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
}

.product__page .product__desc__container .right {
    width: 100%;
}

@media screen and (max-width: 991px) {
    .product__page .product__desc__container .right {
        width: 100%;
    }
}

.product__page .specifications {
    background: white;
    margin-bottom: 20px;
}

.product__page .specifications .spec {
    display: flex;
    font-size: 14px;
    border-radius: 5px;
    padding: 15px 20px;
}

.product__page .specifications .spec .label {
    width: 50%;
    text-transform: uppercase;
}

.product__page .specifications .spec:nth-child(2n + 1) {
    background: #f7f8fa;
}

.product__page .comment {
    display: flex;
    margin: 20px 0;
}

.product__page .comment .thumb {
    margin-right: 30px;
}

@media screen and (max-width: 767px) {
    .product__page .comment .thumb {
        margin-right: 12px;
    }
}

.product__page .comment .thumb img {
    width: 60px;
    height: 60px;
}
@media screen and (max-width: 767px) {
    .product__page .comment .thumb img {
        width: 40px;
        height: 40px;
    }
}
.product__page .comment__details {
    flex: 1;
}

.product__page .comment__details .name__date {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.product__page .comment__details .name__date .name {
    color: #4e4e4e;
    font-size: 18px;
    text-transform: capitalize;
}

.product__page .comment__details .name__date .date__time {
    color: #4e4e4e;
    font-size: 14px;
}

.product__page .comment__detail p {
    color: #8d8d8d;
    font-size: 16px;
    background: #f4f4f6;
    padding: 10px 15px;
    border-radius: 5px;
}

.product__page .reply__container .reply__button {
    color: #0088ff;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    margin-left: 5px;
}

.product__page .reply__container .reply__button.hide {
    display: none;
}

.product__page .reply__container .reply__box.hide {
    display: none;
}

.product__page .reply__container .reply__title {
    margin-bottom: 5px;
    font-size: 16px;
}

.product__page .reply__container .reply__input {
    font-size: 14px;
    width: 100%;
    padding: 6px 12px;
    margin-bottom: 10px;
    background: #edeff3;
    border: nonne;
    border: none;
    outline: none;
    border-radius: 5px;
}

.product__page .reply__container .reply__btn {
    background-color: #0088ff;
    color: white;
    padding: 6px 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.product__page .reply__container .reply {
    display: flex;
    margin-top: 15px;
}

.product__page .reply__container .reply .thumb {
    margin-right: 10px;
}

.product__page .reply__container .reply .thumb img {
    width: 30px;
    height: 30px;
}

.product__page .reply__container .reply .reply__details {
    flex: 1;
    background-color: #f4f4f6;
    padding: 10px;
}

.product__page .reply__container .reply .reply__details .name__date {
    margin-bottom: 0;
}

.product__page .reply__container .reply .reply__details .reply__detail p {
    padding: 0;
}

.product__page .post__comment .section__title {
    margin-top: 15px;
}

.product__page .post__comment .section__title span {
    font-size: 20px;
    color: #4e4e4e;
    font-weight: 600;
}

.product__page .post__comment .main__form form label {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product__page .post__comment .main__form form input {
    padding: 20px;
    background: #f7f8fa 0% 0% no-repeat padding-box;
    font-size: 16px;
    color: #4e4e4e;
    margin-bottom: 30px;
    border-radius: 5px;
}

.product__page .post__comment .main__form form input:focus {
    background: #f7f8fa 0% 0% no-repeat padding-box;
    border: 2px solid var(--dynamic-color);
}

.product__page .post__comment .main__form form textarea {
    height: 150px;
    font-size: 16px;
    background: #f7f8fa 0% 0% no-repeat padding-box;
}

.product__page .post__comment .submit__button {
    width: 100%;
    margin-bottom: 20px;
}

.product__page .post__comment .submit__button button {
    padding: 8px 30px;
    border: none;
    outline: none;
    background:var(--dynamic-color);
    color: white;
    border-radius: 5px;
    font-size: 16px;
}

.product__page .review {
    display: flex;
    margin: 20px 0;
}

.product__page .review .thumb {
    margin-right: 20px;
}

@media screen and (max-width: 767px) {
    .product__page .review .thumb {
        margin-right: 12px;
    }
}

.product__page .review .thumb img {
    width: 60px;
}

.product__page .review__details {
    flex: 1;
}

.product__page .review__details .title__rating {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product__page .review__details .title__rating .title {
    color: #4e4e4e;
    font-size: 18px;
    text-transform: capitalize;
}

.product__page .review__details .title__rating .rating {
    color: #f2620d;
    font-size: 14px;
}

.product__page .review__details .name__date {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product__page .review__details .name__date .name {
    color: #4e4e4e;
    font-size: 18px;
}

.product__page .review__details .name__date .date__time {
    color: #4e4e4e;
    font-size: 14px;
}

.product__page .review__details .review__detail p {
    color: #8d8d8d;
    font-size: 16px;
}

.product__page .post__review .section__title {
    margin-bottom: 15px;
    margin-top: 15px;
}

.product__page .post__review .section__title span {
    font-size: 20px;
    color: #4e4e4e;
    font-weight: 600;
}

.product__page .post__review .main__form form label {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product__page .post__review .main__form form input {
    padding: 20px;
    background: #f7f8fa 0% 0% no-repeat padding-box;
    font-size: 16px;
    color: #4e4e4e;
    margin-bottom: 30px;
    border-radius: 5px;
}

.product__page .post__review .main__form form input:focus {
    background: #f7f8fa 0% 0% no-repeat padding-box;
    border: 2px solid var(--dynamic-color);
}

.product__page .post__review .main__form form textarea {
    height: 150px;
    font-size: 16px;
    background: #f7f8fa 0% 0% no-repeat padding-box;
}

.product__page .post__review .main__form form .hide {
    display: none;
}

.product__page .post__review .main__form form .clear {
    float: none;
    clear: both;
}

.product__page .post__review .main__form form .rat {
    width: 135px;
    unicode-bidi: bidi-override;
    direction: rtl;
    text-align: center;
    position: relative;
}

.product__page .post__review .main__form form .rat > label {
    display: inline;
    padding: 0;
    margin: 0;
    position: relative;
    width: 1em;
    cursor: pointer;
    color: #000;
    font-size: 25px;
}

.product__page .post__review .main__form form .rat > label:hover,
.product__page .post__review .main__form form .rat > label:hover ~ label,
.product__page
    .post__review
    .main__form
    form
    .rat
    > input.radio-btn:checked
    ~ label {
    color: transparent;
}

.product__page .post__review .main__form form .rat > label:hover:before,
.product__page .post__review .main__form form .rat > label:hover ~ label:before,
.product__page
    .post__review
    .main__form
    form
    .rat
    > input.radio-btn:checked
    ~ label:before,
.product__page
    .post__review
    .main__form
    form
    .rat
    > input.radio-btn:checked
    ~ label:before {
    content: "\2605";
    position: absolute;
    left: 0;
    top: -4px;
    color: #f2620d;
}

.product__page .post__review .submit__button {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.product__page .post__review .submit__button button {
    padding: 8px 30px;
    border: none;
    outline: none;
    background: var(--dynamic-color);
    color: white;
    border-radius: 5px;
    font-size: 16px;
}

.product__page .desc__tabs {
    border: 1px solid #e1e1e1;
    padding: 15px 0;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4e4e4e;
    margin-bottom: 20px;
    border-radius: 4px;
}

@media screen and (max-width: 991px) {
    .product__page .desc__tabs {
        border-left: 1px solid #e1e1e1;
        padding: 15px;
    }
}

.product__page .desc__tabs .nav-tabs {
    border: none;
}

.product__page .desc__tabs .nav-item {
    border: none;
    margin-bottom: 0;
    margin-right: 40px;
}

.product__page .desc__tabs .nav-item:last-child {
    margin-right: 0;
}

@media screen and (max-width: 991px) {
    .product__page .desc__tabs .nav-item {
        margin-bottom: 10px;
        margin-right: 20px;
        font-size: 16px;
    }
}

.product__page .desc__tabs .nav-link {
    border: none;
    padding: 0;
}

.product__page .desc__tabs .nav-link.active {
    color: var(--dynamic-color);
}

.product__page .desc__tabs .nav-link.active span {
    padding-bottom: 13px;
    border-bottom: 3px solid var(--dynamic-color);
}

@media screen and (max-width: 991px) {
    .product__page .desc__tabs .nav-link.active span {
        padding-bottom: 0px;
    }
}


/* --- LV product detail customizations --- */
.lv-price-strip{margin:8px 0 14px; font-size:18px; font-weight:600; color:#111}
.lv-price-strip .lv-price-chip{margin-right:16px}
@media (max-width:576px){.lv-price-strip{font-size:16px}}
.lv-hidden-price{display:none !important}

/* Keep sticky header above all product content */
#sticky-head.sticky-header{z-index:10050 !important}
.sm-sticky-header{z-index:10040 !important}

.lv-section{margin:18px 0}
.lv-section-heading{font-weight:600; color:#c40000; margin-bottom:8px}
.lv-details{max-height:150px; overflow:hidden}
.lv-details.lv-open{max-height:none}
.lv-read-toggle{display:inline-block; font-size:13px; color:#666; margin-top:6px}
.lv-accordions{margin-top:14px}
.lv-acc-item{border-top:1px solid #eee; padding:10px 0}
.lv-acc-title{display:flex; justify-content:space-between; color:#111; font-weight:500}
.lv-acc-body{color:#555; font-size:14px; padding:8px 0}

/* Buttons: keep existing classes but tweak to LV pill look */
.product__page .cart-buy-favourite .add__cart,
.product__page .cart-buy-favourite .buy-btn{ border-radius: .25rem }
/* Use neutral dark color scheme for simplicity */
/* see definitions above */
.product__page .cart-buy-favourite .fav{height:40px; width:40px; display:flex; align-items:center; justify-content:center}
