.category-tag {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: var(--primary);
    padding: 2px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    transition: opacity 0.3s ease;
}

.gallery-masonry {
    margin: 0 -10px;
}

.gallery-masonry .row {
    margin: 0;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
}

/* Hover effects */
.gallery-item:hover .gallery-card img {
    transform: scale(1.05);
}

.gallery-item:hover .category-tag {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}