.amc-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    /* Space for arrows on the sides */
    box-sizing: border-box;
}

.amc-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.amc-swiper .swiper-wrapper {
    display: flex;
    /* Critical for horizontal alignment! */
}

.amc-swiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    /* Will be dynamically resized by Swiper */
    height: auto;
    box-sizing: border-box;
    opacity: 1 !important;
}

/* Base Navigation - Place arrows directly in the wrapper (outside overflowing swiper) to position left/right properly */
.amc-carousel-wrapper .swiper-button-next,
.amc-carousel-wrapper .swiper-button-prev {
    position: absolute;
    color: #262626;
    --swiper-navigation-size: 24px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    background: #fed820;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.amc-carousel-wrapper .swiper-button-next::after,
.amc-carousel-wrapper .swiper-button-prev::after {
    display: none !important;
    /* Hijack default Swiper icon fonts */
}

.amc-carousel-wrapper .swiper-button-next svg,
.amc-carousel-wrapper .swiper-button-prev svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.amc-carousel-wrapper .swiper-button-prev {
    left: -10px;
    /* pull arrow outside of the carousel, onto the sides */
}

.amc-carousel-wrapper .swiper-button-next {
    right: -10px;
}

.amc-carousel-wrapper .swiper-pagination {
    position: relative;
    bottom: auto !important;
    margin-top: 20px;
    text-align: center;
}

.amc-carousel-wrapper .swiper-pagination-bullet {
    background: #000;
    opacity: 0.3;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
}

.amc-carousel-wrapper .swiper-pagination-bullet-active {
    background: #4CAF50;
    opacity: 1;
}