/* Section Badge */
.gallery__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f3ea;
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 16px;
}
.gallery__badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.gallery__badge span {
    font-size: 14px;
    font-weight: 600;
    color: #B4975A;
}

/* Filter Tabs */
.gallery__filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.gallery__filter-btn {
    background: #f5efe6;
    border: none;
    color: #8B7355;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery__filter-btn:hover,
.gallery__filter-btn.active {
    background: #B4975A;
    color: #fff;
}

/* Gallery Grid */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gallery__grid { grid-template-columns: 1fr; }
}

.gallery__item {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
}

.gallery__item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery__item a:hover img {
    transform: scale(1.08);
}

/* Divider */
.gallery__divider {
    width: 60px;
    height: 2px;
    background: #B4975A;
    margin: 0 auto 30px;
}

/* Empty state */
.gallery__empty {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.gallery__empty i {
    font-size: 96px;
    color: #d6c4a3;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.gallery__empty p {
    font-size: 16px;
    margin: 0;
}

@media (max-width: 767px) {
    .gallery__empty i {
        font-size: 72px;
    }
}

/* Tab Panes */
.gallery__tab-content .gallery__tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}
.gallery__tab-content .gallery__tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
