.pgs-8b7779df-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pgs-8b7779df-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 Aspect Ratio (Square) */
    background: #f8f8f8;
}

.pgs-8b7779df-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.pgs-8b7779df-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.pgs-8b7779df-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pgs-8b7779df-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 24px;
    height: 24px;
    line-height: 1;
    padding: 0;
    border-radius: 50%; /* Circular button */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 12px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    box-sizing: border-box; /* Fix for perfect circle */
}

.pgs-8b7779df-arrow:hover {
    background: #0073aa; /* Blue background on hover */
    color: #ffffff; /* White arrow on hover */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.pgs-8b7779df-prev {
    left: 10px;
}

.pgs-8b7779df-next {
    right: 10px;
}