/* Product Details Page */

.product-image-section img {
    width: 100%;
    border-radius: 10px;
}

.thumbnail-img {
    cursor: pointer;
    border: 2px solid #dee2e6;
    transition: border-color 0.3s ease;
}

.thumbnail-img:hover {
    border-color: #007bff;
}

.pricing-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.star-rating {
    direction: rtl;
    display: inline-flex;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffc107;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    color: #007bff;
    border-bottom: 3px solid #007bff;
}

.nav-tabs .nav-link.disabled {
    color: #dee2e6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .product-image-section {
        margin-bottom: 30px;
    }
}

/* Image viewer modal nav buttons */
#imgViewerPrev:hover,
#imgViewerNext:hover {
    opacity: 1 !important;
    background: #333;
}
