.product-volt-info {
    width: 100%;
    max-width: 500px;
    min-height: 112px;
    position: relative;
    background: linear-gradient(to top, #ADFF60, #e8e8e8);
    border-radius: var(--radius-8);
    overflow: hidden;
    padding: 13px 26px;
    font-family: var(--font-primary);
    margin: 0 auto;
}

.volt-info-top,
.volt-info-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    gap: 10px;
}

.volt-info-bottom {
    margin-top: 26px;
}

.volt-stat {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 32px;
    flex: 1;
}

.stat-value {
    color: var(--new-green);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1.1px;
    margin-bottom: 4px;
    white-space: nowrap;
}

.stat-label {
    color: #508122;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.28px;
    text-transform: capitalize;
    white-space: nowrap;
}

/* Decorative lines container */
.product-volt-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Horizontal divider line */
.product-volt-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transform: translateY(-50%);
}

/* Diagonal lines */
.diagonal-line {
    width: 2px;
    height: 60px;
    background-color: var(--white);
    transform: rotate(-15deg);
    margin: -14px 5px;
    flex-shrink: 0;
}

.volt-info-bottom .diagonal-line {
    transform: rotate(15deg);
}

@media (max-width: 480px) {
    .product-volt-info {
        padding: 13px 15px;
    }

    .volt-stat {
        padding: 0;
    }

    .stat-value {
        font-size: 14px;
    }

    .stat-label {
        font-size: 12px;
    }
    
    .diagonal-line {
        height: 58px;
        margin: -14px 5px;
    }

    .volt-info-top,
    .volt-info-bottom {
        gap: 5px;
    }
} 