.product-volt-small-attributes {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
    background: linear-gradient(to top, #ADFF60 0%, #e8e8e8 100%);
    border-radius: 8px;
    padding: 10px 12px;
    margin: 0 auto;
    position: relative;
}

.volt-small-attribute {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    position: relative;
    flex: 1;
}

.volt-small-attribute:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: -10px;
    transform: rotate(23deg);
    height: 50px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.8);
}

.attribute-label {
    color: #508223;
    font-family: Biryani;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.96px;
    text-transform: capitalize;
}

.attribute-value {
    font-family: Biryani;
    color: var(--new-green);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.96px;
}

.volt-small-attribute .attribute-label::after {
    display: block;
    text-align: center;
    margin-top: 2px;
}

.product-wrapper.voltride-product-wrapper .product-element-bottom {
    text-align: left;
    row-gap: 4px;
}

@media (max-width: 480px) {
    .product-volt-small-attributes {
        padding: 6px 2px;
    }

    .product-wrapper.voltride-product-wrapper .product-element-bottom {
        row-gap: 2px;
    }

    .volt-small-attribute:not(:last-child)::after {
        top: -8px;
        transform: rotate(16deg);
        height: 38px;
        width: 1.5px;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .attribute-value {
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .attribute-label {
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: 0.8px;
    }
}
