/* Product Gallery Styles */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image-wrapper:hover img {
    transform: scale(1.05);
}

.thumbs-wrapper {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-mint) transparent;
}

.thumbs-wrapper::-webkit-scrollbar {
    height: 4px;
}

.thumbs-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-mint);
    border-radius: 10px;
}

.product-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
}

.product-thumb:hover {
    border-color: var(--primary-mint-light);
    transform: translateY(-2px);
}

.product-thumb.active {
    border-color: var(--primary-mint);
    box-shadow: var(--shadow-glow);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}