/* Background */

body{
    background:#f8f9fa;
    font-family:Arial, Helvetica, sans-serif;
}


/* Card */

.mobile-card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    background:#fff;
    height:100%;
}

.mobile-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}


/* Image */

.mobile-card img{
    width:100%;
    height:230px;
    object-fit:contain;
    background:#fff;
    padding:15px;
}


/* Price */

.price{
    color:#0d6efd;
    font-size:26px;
    font-weight:bold;
}


/* Specs */

.spec{
    font-size:14px;
    margin-bottom:6px;
}


/* Badge */

.stock{
    font-size:13px;
}


/* Search */

#searchBox{
    border-radius:30px;
    padding:12px 20px;
}

.form-select{
    border-radius:30px;
}


/* Footer */

footer{
    margin-top:50px;
}


/* Loading */

.loading{
    text-align:center;
    padding:60px;
    font-size:22px;
    color:#666;
}


/* Responsive */

@media(max-width:768px){

.mobile-card img{

height:180px;

}

.price{

font-size:22px;

}

}