/* Carousel Styles */
.carousel-section {
    width: 100%;
    max-width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow-x: hidden;
}
.carousel {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
}
.carousel-track {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 550px;
    position: relative;
    margin: 0;
    margin: 0 auto;
}
.carousel-item {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #2d1818;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    padding: 0 !important;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
}
.carousel-item.active {
    opacity: 1;
    position: relative;
    z-index: 2;
}
.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 8px;
    margin: 0;
    border: none;
    display: block;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 111, 97, 0.85);
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background: none;
    border: none;
    color: inherit;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s, box-shadow 0.2s;
    opacity: 0.92;
    outline: none;
    padding: 0;
}
.carousel-btn span, .carousel-btn svg {
    display: none;
}
.carousel-btn.next, .carousel-btn.prev {
    background: none;
    border: none;
}
.carousel-btn.next::before, .carousel-btn.prev::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-image: url('../images/Caroussel/NextBTN.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
}
.carousel-btn.prev::before {
    transform: scaleX(-1);
}
.carousel-btn:hover, .carousel-btn:focus {
    background: none;
    color: inherit;
    border-color: inherit;
    transform: translateY(-50%);
    opacity: 0.92;
}
.carousel-btn:active {
    background: rgba(214,38,61,0.12);
    opacity: 1;
}
.carousel-btn.prev {
    left: 16px;
}
.carousel-btn.next {
    right: 16px;
}
@media (max-width: 900px) {
    .carousel-track, .carousel-item {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: 260px;
        min-height: 260px;
    }
    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media (max-width: 600px) {
    .carousel-track, .carousel-item {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: 180px;
        min-height: 180px;
    }
    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .carousel-btn.prev {
        left: 4px;
    }
    .carousel-btn.next {
        right: 4px;
    }
}
