.battery-carousel-container {
    width: 100%;
    position: relative;
    background: #ffffff;
    padding: 30px 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.battery-slide {
    display: none;
    width: 100%;
}

.battery-slide.active {
    display: flex;
    justify-content: center;
    animation: ozzyFadeEffect 0.8s;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.slide-image img {
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.slide-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-text h2 {
    color: #e32b2b;
	font-weight: 600;
    margin-bottom: 10px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
    display: inline-block;
}

.check-list li {
    margin-bottom: 6px;
	color: #2b2b2d;
	font-weight: 600;
}

.check-list li .fa-check {
	padding: 5px 6px;
    background: #ed3237;
    border-radius: 99px;
    color: #ffffff;
	margin-right: 6px;
}

.slide-promo-code {
    margin: 10px 0;
	color: #2b2b2d;
}

/* Dots */
.mobile-dots {
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #dddddd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #e32b2b;
}

/* Arrows – hidden on mobile */
.nav-arrow {
    display: none;
}

/* CTA Button */
.cta-button {
    background-color: #e32b2b;
    color: #ffffff;
    padding: 18px 25px;
    font-weight: bold;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
    text-decoration: none;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #b01e1e;
    color: #ffffff;
}

.arrow-icon {
    margin-left: 15px;
    font-size: 22px;
}

/* ── Tablet+ ─────────────────────────────────── */
@media (min-width: 768px) {
    .battery-carousel-container { padding: 40px 30px; }

    .slide-content {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }

    .slide-text { align-items: flex-start; }
    .slide-image img { max-width: 450px; }
    .mobile-dots { display: none; }

    .nav-arrow {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: #dddddd;
        font-size: 40px;
        padding: 10px;
        cursor: pointer;
        text-decoration: none;
        z-index: 10;
        user-select: none;
    }

    .nav-arrow:hover { color: #e32b2b; }
    .prev-arrow { left: 10px; }
    .next-arrow { right: 10px; }
}

@media (min-width: 992px) {
    .slide-image img { width: 520px; }
}

@media (min-width: 1200px) {
    .battery-carousel-container { padding: 60px 80px; }
    .slide-image img { width: 580px; }
}

@keyframes ozzyFadeEffect {
    from { opacity: 0.5; }
    to   { opacity: 1; }
}
