/* Custom storefront styles */

body{
    background: #fff;
    color: #222;
}

/* Product cards */
.card.product-item{
    border: none;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.03);
    overflow: hidden;
    transition: all .25s ease;
}
.card.product-item:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -8px rgba(0,0,0,.1);
}
.product-holder{
    background: #faf9f8;
    padding: .75rem;
    text-align: center;
    border-bottom: 1px solid #f0efed;
}
.product-cover{
    max-height: 160px;
    width: auto;
    object-fit: contain;
}
.brand{
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .5px;
    color: #7c3aed;
    text-transform: uppercase;
}
.product-title{
    font-size: .9rem;
    font-weight: 600;
    color: #1e1a2f;
    line-height: 1.3;
}
.product-price{
    font-size: .95rem;
    font-weight: 700;
    color: #0f172a;
}
.product-sale-price{
    font-size: .9rem;
    font-weight: 700;
    color: #cc2230;
}
.product-price--original{
    text-decoration: line-through;
    color: #999;
    font-size: .85rem;
}
.product-price--sale{
    color: #cc2230;
    font-weight: 700;
}

.section-title{
    font-weight: 700;
}

/* Cart */
.cart-prod-img{
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #faf9f8;
    border-radius: 8px;
}

/* Buttons */
.btn-dark{
    background: #000;
    border-color: #000;
}
.btn-dark:hover{
    background: #222;
    border-color: #222;
}
