.pgc-73b48a88-wrapper {
    width: 100%;
    position: relative;
}

.pgc-73b48a88-empty {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 2px dashed #ddd;
}

.pgc-73b48a88-empty p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Main Container - this is the gallery frame */
.pgc-73b48a88-main-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
}

/* Main Image - MUST cover the entire container */
.pgc-73b48a88-main-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: src 0s, opacity 0.3s ease-in-out;
}

/* Editor placeholder for JetEngine */
.pgc-73b48a88-editor-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.pgc-73b48a88-editor-placeholder p {
    color: #888;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    margin: 0;
}

/* Navigation Arrows */
.pgc-73b48a88-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #1a3c34;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.2s ease;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pgc-73b48a88-arrow:hover {
    opacity: 0.9;
    transform: translateY(-50%) scale(1.08);
}

.pgc-73b48a88-arrow-prev {
    left: 20px;
}

.pgc-73b48a88-arrow-next {
    right: 20px;
}

.pgc-73b48a88-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Thumbnails - overlaid at bottom of main image */
.pgc-73b48a88-thumbs-container {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-width: 85%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pgc-73b48a88-thumbs-container::-webkit-scrollbar {
    display: none;
}

.pgc-73b48a88-thumbs-track {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.pgc-73b48a88-thumb {
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    opacity: 0.7;
    transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    position: relative;
}

.pgc-73b48a88-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pgc-73b48a88-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

.pgc-73b48a88-thumb.pgc-73b48a88-active {
    opacity: 1;
    border-color: #ffffff;
    transform: scale(1.05);
}

/* Dots */
.pgc-73b48a88-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 8px;
}

.pgc-73b48a88-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #c4c4c4;
    background-color: #c4c4c4;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    padding: 0;
}

.pgc-73b48a88-dot:hover {
    transform: scale(1.15);
}

.pgc-73b48a88-dot.pgc-73b48a88-dot-active {
    background-color: #1a3c34;
    border-color: #1a3c34;
}

/* Responsive */
@media (max-width: 767px) {
    .pgc-73b48a88-thumb {
        width: 70px;
        height: 50px;
    }

    .pgc-73b48a88-arrow {
        width: 36px;
        height: 36px;
    }

    .pgc-73b48a88-arrow svg {
        width: 16px;
        height: 16px;
    }

    .pgc-73b48a88-arrow-prev {
        left: 10px;
    }

    .pgc-73b48a88-arrow-next {
        right: 10px;
    }

    .pgc-73b48a88-thumbs-container {
        bottom: 12px;
        max-width: 92%;
    }
}
