.photo-carousel-pro {
    position: relative;
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
}

.photo-carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.photo-carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.photo-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.photo-carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
}

.photo-carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.photo-carousel-prev,
.photo-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    pointer-events: all;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.photo-carousel-prev {
    left: 10px;
}

.photo-carousel-next {
    right: 10px;
}

.photo-carousel-prev:hover,
.photo-carousel-next:hover {
    opacity: 1;
}

.photo-carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.photo-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s;
}

.photo-carousel-indicator.active {
    background-color: white;
}