.cgs-gallery {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Top Image */
.cgs-top-wrap {
    text-align: center;
    margin-bottom: 12px;
}

.cgs-top-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Slider */
.cgs-slider-wrapper {
    overflow-x: auto;
    padding: 10px 0;
}

.cgs-slider {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 6px;
}

.cgs-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.cgs-thumb {
    height: 120px;
    border-radius: 4px;
    cursor: pointer;
    object-fit: cover;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms;
    border: 2px solid transparent;
}

.cgs-thumb:hover,
.cgs-thumb:focus {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}

/* Active thumbnail */
.cgs-thumb.cgs-active-thumb {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-color: rgba(0,0,0,0.1);
}

/* Indicators */
.cgs-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.cgs-indicator {
    width: 10px;
    height: 10px;
    background: #cfcfcf;
    border-radius: 50%;
    cursor: pointer;
    transition: 180ms ease;
}

.cgs-indicator-active {
    background: #555;
    width: 14px;
    height: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
