/* Product Modal Gallery */
.product-modal .modal-image {
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.active {
    border-color: var(--secondary-color);
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details strong {
    color: var(--secondary-color);
    font-weight: 500;
}