.kbn-studio-gallery {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}

.kbn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.kbn-photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 3/4;
}

.kbn-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kbn-photo-item:hover img {
    transform: scale(1.05);
}

.kbn-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.15;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    transform: rotate(-45deg);
    text-transform: uppercase;
}

.kbn-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kbn-photo-item:hover .kbn-photo-overlay {
    opacity: 1;
}

.kbn-btn-select {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.kbn-btn-select.active {
    background: #10b981;
    color: #fff;
}

.kbn-stars {
    display: flex;
    gap: 2px;
}

.kbn-star {
    color: rgba(255,255,255,0.4);
    cursor: pointer;
}

.kbn-star.active {
    color: #fbbf24;
}
