.custom-product-gallery {
    display: flex;
    flex-direction: column;
}

.custom-product-main-image {
    margin-bottom: 10px;
    overflow: hidden !important;
}

.custom-product-thumbnails {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.custom-product-thumbnail {
    margin-right: 10px;
}

.custom-product-thumbnail:last-child {
    margin-right: 0;
}

.custom-product-thumbnail img {
    width: 100px; /* 您可以根据需要调整缩略图的宽度 */
    height: auto;
    cursor: pointer; /* 添加这一行 */
    transition: transform 0.3s;
}

.video-interaction-blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: default;
    z-index: 3;
}

/* 覆盖产品图片容器的样式 */
.custom-product-gallery .woocommerce-product-gallery,
.custom-product-gallery .woocommerce-product-gallery.images {
    float: none !important;
    width: 100% !important;
    
}

.custom-product-thumbnail img.selected {
    border: 2px solid #FFFFFF !important;; 
}


.custom-product-main-image-wrapper:hover .custom-product-main-image img {
    transform: scale(1.5); /* 放大10% */
    transition: transform 0.5s;
    cursor: pointer; /* 添加这一行 */
}

