/* Gallery Container */
.wcg-1c8db99a-container {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* Thumbnails */
.wcg-1c8db99a-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 90px;
    flex-shrink: 0;
}

.wcg-1c8db99a-thumb {
    width: 90px;
    height: 90px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
    padding: 4px;
}

.wcg-1c8db99a-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.wcg-1c8db99a-thumb.active {
    border: 2px solid #042660;
    box-shadow: 0 0 0 4px rgba(4,38,96,0.12);
    transform: scale(1.02);
}

.wcg-1c8db99a-thumb:hover {
    border-color: #E11823;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

/* Main Image */
.wcg-1c8db99a-main {
    flex-grow: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.wcg-1c8db99a-main-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

.wcg-1c8db99a-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

/* Zoom Button */
.wcg-1c8db99a-zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background: #fff;
    color: #111827;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wcg-1c8db99a-zoom-btn:hover {
    background: #042660;
    color: #fff;
    transform: translateY(-2px);
}

/* Lightbox */
.wcg-1c8db99a-lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wcg-1c8db99a-lightbox.active {
    display: flex;
    opacity: 1;
}

.wcg-1c8db99a-lb-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.wcg-1c8db99a-lb-close, .wcg-1c8db99a-lb-prev, .wcg-1c8db99a-lb-next {
    position: absolute;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 2;
}

.wcg-1c8db99a-lb-close { top: 20px; right: 30px; }
.wcg-1c8db99a-lb-prev { left: 30px; }
.wcg-1c8db99a-lb-next { right: 30px; }

.wcg-1c8db99a-lb-counter {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .wcg-1c8db99a-thumbnails { width: 80px; }
    .wcg-1c8db99a-thumb { width: 80px; height: 80px; }
}

@media (max-width: 767px) {
    .wcg-1c8db99a-container {
        flex-direction: column;
    }
    .wcg-1c8db99a-thumbnails {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .wcg-1c8db99a-thumb {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
}
