/* Battery Section CSS */
#batteries {
    background-color: #ffffff;
}

.battery-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.battery-visual-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.b2b-highlight .btn {
    background: #b59c6e;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    margin-top: 20px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(181, 156, 110, 0.4);
}

.b2b-highlight .btn:hover {
    background: #a38b5d;
    transform: translateY(-2px);
}

.battery-visual-col img {
    width: 100%;
    /* Removed border and box-shadow as requested */
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.5));
    /* Soft shadow for float effect */
    animation: floatCloud 6s ease-in-out infinite;
}

@keyframes floatCloud {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes shadowPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.2;
    }
}

.battery-visual-wrapper::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(15px);
    border-radius: 50%;
    z-index: -1;
    animation: shadowPulse 6s ease-in-out infinite;
    pointer-events: none;
}

.battery-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    /* Red tag */
    color: white;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    animation: floatCloud 6s ease-in-out infinite, pulseTag 2s infinite;
    /* Sync float with img, plus pulse */
    z-index: 10;
    transform-origin: center;
}

@keyframes pulseTag {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.eco-box {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
    padding: 20px;
    border-radius: 12px;
}

.eco-box h4 {
    color: #27ae60;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.eco-box p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.warning-box {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    /* Added small spacing */
}

.warning-box h4 {
    color: #c0392b;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.warning-box p {
    margin-bottom: 0;
    color: #c0392b;
    font-weight: 500;
}

.battery-info-col h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.text-gold {
    color: var(--primary-gold);
}

.benefits-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.benefit-item {
    text-align: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.benefit-item i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    display: block;
}

.benefit-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.3;
    display: block;
}

.benefit-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.steps-simple {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
    gap: 15px;
}

.steps-simple div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.step-badge {
    background: var(--primary-gold);
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 5px;
}

.b2b-highlight {
    background: #ffffff;
    color: var(--text-dark);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(181, 156, 110, 0.6);
}

.b2b-highlight h4 {
    color: var(--primary-gold);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.b2b-highlight p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

@media (max-width: 968px) {
    .battery-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-mini-grid {
        grid-template-columns: 1fr;
    }

    .steps-simple {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .steps-simple div {
        width: 100%;
    }

    .steps-simple i {
        transform: rotate(90deg);
        margin: 5px auto;
    }
}

/* Enhanced Battery List Styles - Grid Layout */
.battery-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns */
    gap: 15px;
    margin-top: 25px;
    padding: 0;
    list-style: none;
}

.battery-list li {
    background: #fdfdfd;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
    /* Elegant left accent */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, background 0.2s;
}

.battery-list li::before {
    content: '\f00c';
    /* Simple check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-gold);
    font-size: 1rem;
}

.battery-list li:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 480px) {
    .battery-list {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .b2b-highlight {
        padding: 20px;
    }
}

/* Floating animation for cards/list items */
@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.eco-box,
.warning-box,
.battery-list li {
    animation: floatCard 6s ease-in-out infinite;
    /* Ensure hardware acceleration */
    will-change: transform;
}

/* Staggered delays for organic feel */
.battery-list li:nth-child(1) {
    animation-delay: 0s;
}

.battery-list li:nth-child(2) {
    animation-delay: 1.5s;
}

.battery-list li:nth-child(3) {
    animation-delay: 0.5s;
}

.battery-list li:nth-child(4) {
    animation-delay: 2s;
}

.warning-box {
    animation-delay: 1s;
}