.woocommerce-product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    font-family: 'Vazirmatn', 'IRANSans', 'Arial', sans-serif;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-main-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.product-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    flex: 1;
}

.product-images-column {
    flex: 1;
    min-width: 320px;
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
}

.product-details-column {
    flex: 1;
    min-width: 320px;
    padding: 20px;
}

.product-sidebar {
    width: 280px;
    background: #f1f3f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-content {
    text-align: center;
    color: #333;
}

.thumbnail-item {
    cursor: pointer;
    display: inline-block;
    margin: 8px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border: 2px solid #007bff;
    transform: scale(1.05);
}

.thumbnail-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    transition: opacity 0.3s ease;
}

.thumbnail-image:hover {
    opacity: 0.9;
}

.main-product-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.product-video-container {
    margin-top: 30px;
    text-align: center;
}

.product-video-container video,
.product-video-container iframe {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    position: relative;
    text-align: center;
}

.play-video-button {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 24px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.play-video-button:hover {
    background: #0056b3;
}

.video-wrapper:hover .play-video-button {
    display: block;
}

.no-gallery-message,
.no-video-message {
    color: #dc3545;
    font-style: normal;
    text-align: center;
    margin-top: 15px;
    padding: 12px;
    background: #fff1f2;
    border-radius: 8px;
    font-size: 14px;
}

html[dir="rtl"] .product-content-wrapper {
    direction: rtl;
}

html[dir="rtl"] .thumbnail-item {
    margin-left: 8px;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .woocommerce-product-container {
        padding: 20px;
    }
    .product-content-wrapper {
        flex-direction: column;
    }
    .product-images-column,
    .product-details-column {
        min-width: 100%;
    }
    .product-sidebar {
        width: 100%;
    }
    .thumbnail-image {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .woocommerce-product-container {
        padding: 15px;
    }
    .thumbnail-image {
        width: 60px;
        height: 60px;
    }
}