/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #14b8a6;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0d9488;
}

/* Multi-Image Gallery Grid for Details Page */
.detail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.gallery-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #334155;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-img:hover {
    border-color: #2dd4bf;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
}

.product-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.group:hover .product-card-img {
    transform: scale(1.05);
}