/* Tabs Nav */
.cltg-37985ca9-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.cltg-37985ca9-tab-btn {
    border: none;
    cursor: pointer;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.25s ease, background-color 0.25s ease;
    outline: none;
    line-height: 1.4;
}

/* Gallery Grid */
.cltg-37985ca9-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.cltg-37985ca9-gallery-item {
    aspect-ratio: 6/7;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
}

.cltg-37985ca9-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cltg-37985ca9-gallery-item:hover img {
    transform: scale(1.05);
}

/* Tab Panes */
.cltg-37985ca9-tab-pane {
    display: none;
}

.cltg-37985ca9-tab-pane.cltg-37985ca9-pane-active {
    display: block;
}

.cltg-37985ca9-empty {
    color: #999;
    font-style: italic;
    grid-column: 1 / -1;
}

/* Lightbox */
.cltg-37985ca9-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cltg37985ca9FadeIn 0.25s ease;
}

@keyframes cltg37985ca9FadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.cltg-37985ca9-lb-img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
}

.cltg-37985ca9-lb-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color 0.2s ease;
}

.cltg-37985ca9-lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background-color 0.2s ease;
    z-index: 10;
    line-height: 1;
}

.cltg-37985ca9-lb-prev {
    left: 16px;
}

.cltg-37985ca9-lb-next {
    right: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .cltg-37985ca9-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .cltg-37985ca9-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cltg-37985ca9-tabs-nav {
        justify-content: center;
    }

    .cltg-37985ca9-lb-arrow {
        width: 40px;
        height: 40px;
    }

    .cltg-37985ca9-lb-close {
        font-size: 28px;
        top: 12px;
        right: 16px;
    }
}
