.membership-sec{
    padding-bottom: 5rem;
}

.description{
    text-align: justify;
    margin-bottom: 5rem;
}


.product-row{
    background-color: #FFF;
    border: 1px solid #809db970;
    border-radius: 2rem;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease-in-out;
    margin-bottom: 2.5rem;
    box-shadow: 0px 0 15px rgba(0,0,0, 0.15);
}

.product-row:hover{
    background-color: #d3e9ff;
}


.product-name{
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.price-tag{
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-align: center;
    font-weight: bold;
}

.original-price{
    text-decoration: line-through;
    color: #777;
}


.btn-order-product{
    background-color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: bolder;
    border-color: var(--primary-color);
    padding: 0.4rem 2rem;
}

.btn-order-product .bi::before{
    vertical-align: -1px;
}

@media(max-width: 500px){
    .product-row{
        padding: 2rem 1rem;
        transition: all 0.3s ease-in-out;
        border-radius: 0rem;
        margin-bottom: -1px;
        box-shadow: none;
    }
    
    .product-name{
        text-align: center;
        margin-bottom: 1rem;
    }
}