/* CC-02b Wave 2 - extracted from FRONTEND/07_vendors/vendor-details.html */
.gradient-bg {
            background: linear-gradient(135deg, #ff6b9d, #ffd700);
        }
        .gallery-item {
            transition: transform 0.3s ease;
        }
        .gallery-item:hover {
            transform: scale(1.05);
        }
        .rating-star {
            color: #fbbf24;
        }
        .lightbox {
            display: none;
            position: fixed;
            z-index: 100;
            left: 0;
            top: 6.25rem;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
        }
        .lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }
