/* TARIMKON Gallery Grid */
.tarimkon-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    margin: 30px 0;
    padding: 0;
}

.tarimkon-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarimkon-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.tarimkon-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.tarimkon-gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Overlay */
.tarimkon-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.tarimkon-lightbox.active {
    display: flex;
}

.tarimkon-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    cursor: default;
}

.tarimkon-lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1000000;
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s;
}

.tarimkon-lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}

.tarimkon-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1000000;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s;
    user-select: none;
}

.tarimkon-lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
}

.tarimkon-lightbox-prev {
    left: 20px;
}

.tarimkon-lightbox-next {
    right: 20px;
}

.tarimkon-lightbox-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    z-index: 1000000;
}

/* Responsive */
@media (max-width: 768px) {
    .tarimkon-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 8px;
    }

    .tarimkon-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }

    .tarimkon-lightbox-prev {
        left: 10px;
    }

    .tarimkon-lightbox-next {
        right: 10px;
    }
}
