.carousel-wrapper {
    max-width: 900px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44, 44, 44, 0.18), 0 1.5px 8px rgba(44,44,44,0.08);
    background: #fff;
    position: relative;
}

.carousel-inner {
    border-radius: 24px;
    overflow: hidden;
}

.carousel-inner .carousel-item img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    height: 420px;
    background: #f8f9fa;
    display: block;
    border-radius: 0;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.carousel-inner .carousel-item img:hover {
    transform: scale(1.03);
}

.carousel-inner::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
}

.custom-carousel-btn {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s;
}

.custom-carousel-btn:hover {
    background: #ded7cd;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0.5) drop-shadow(0 1px 2px rgba(0,0,0,0.15));
    width: 2.2rem;
    height: 2.2rem;
}

@media (max-width: 991px) {
    .carousel-wrapper { max-width: 100%; }
    .carousel-inner .carousel-item img { height: 220px; }
}
