/*======================================
    JA-Commerce v1.0
=======================================*/

:root{

    --primary:#0d6efd;
    --secondary:#212529;
    --success:#198754;
    --danger:#dc3545;
    --warning:#ffc107;

    --light:#f8f9fa;
    --white:#ffffff;

    --text:#222;
    --gray:#6c757d;

    --radius:12px;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:var(--text);

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

}

.section{

    padding:70px 0;

}

.section-title{

    font-size:32px;
    font-weight:700;
    margin-bottom:35px;

}

.card{

    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;

}

.card:hover{

    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.btn-primary{

    border-radius:10px;
    padding:10px 25px;

}

.shadow-soft{

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}