.form-search-product fieldset input {
    border: unset;
    border-radius: unset;
    padding: 8px 0px;
    font-size: 13px;
    line-height: 25px;
    background: transparent;
}
.canvas-mb .mb-body{
    margin-top: 20px;

}
.infor-heading h1{
    font-size: 30px;
    line-height: normal;
}
.infor-bottom ul{
    padding-left: 30px;
}
.infor-bottom ul li{
    list-style: disc;
}
.tf-product-info-choose-option,.facet-categories{
    background: #fff;
}
.canvas-filter-product{
    background: transparent;
}

/* Product Slider Navigation Arrows */
.tf-product-media-main {
    position: relative;
}

.product-slider-next,
.product-slider-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: #333;
}

.product-slider-next:hover,
.product-slider-prev:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--primary, #007bff);
}

.product-slider-next.swiper-button-disabled,
.product-slider-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.product-slider-prev {
    left: 15px;
}

.product-slider-next {
    right: 15px;
}

.product-slider-next::after,
.product-slider-prev::after {
    font-family: swiper-icons;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    font-variant: normal;
    line-height: 1;
}

.product-slider-next::after {
    content: 'next';
}

.product-slider-prev::after {
    content: 'prev';
}

@media (max-width: 768px) {
    .product-slider-next,
    .product-slider-prev {
        width: 35px;
        height: 35px;
    }
    
    .product-slider-prev {
        left: 10px;
    }
    
    .product-slider-next {
        right: 10px;
    }
    
    .product-slider-next::after,
    .product-slider-prev::after {
        font-size: 16px;
    }
}

/* Make product images clickable */
.tf-product-media-main .item {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.tf-product-media-main .item:hover {
    opacity: 0.9;
}

.tf-product-media-main .item img {
    pointer-events: none;
}

/* PhotoSwipe Lightbox Styling */
.pswp__bg {
    background: #000000 !important;
    opacity: 0.9 !important;
}

.pswp {
    background: transparant !important;
}

.pswp__top-bar {
    background: transparent !important;
}

/* Close Button Styling */
.pswp__button--close {
    width: 44px !important;
    height: 44px !important;
    background: #fff !important; /* Solid white background */
    border-radius: 50% !important;
    opacity: 1 !important;
    top: 20px !important;
    right: 20px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999;
}

.pswp__button--close:hover {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    transform: scale(1.1);
}

.pswp__button--close svg {
    width: 24px !important;
    height: 24px !important;
    fill: #333 !important;
}

.pswp__button--close:hover svg {
    fill: #000 !important;
}

/* Ensure close icon is visible */
.pswp__icn {
    fill: #fff !important;
    width: 100px !important;
    height: 100px !important;
}

.pswp__icn-shadow {
    display: none !important;
}

/* Image container styling */
.pswp__img {
    border-radius: 4px;
    background-color: white; /* Prevents seeing through the image if it has transparency */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .pswp__button--close {
        width: 40px !important;
        height: 40px !important;
        top: 15px !important;
        right: 15px !important;
    }
    
    .pswp__button--close svg,
    .pswp__icn {
        width: 20px !important;
        height: 20px !important;
    }
}
