﻿:root {
    --category-image-shadow: rgb(50 50 93 / 25%) 0px -4px 12px -2px, rgb(0 0 0 / 30%) 0px -2px 7px -3px;
    --product-card-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    --product-view-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);
}
body {
    background-color: #f7f7f7;
    background-color: #fff;
}

a:visited, a:active, a:focus {
    color: #005890;
}

a:hover {
    color: #64b7ad;
}

.category {
    height: 15rem;
}

.category-image {
    position: relative;
    background-size: cover;
    /*border-radius: 35px;*/
    border-radius: 5px;
    -webkit-box-shadow: var(--category-image-shadow);
    box-shadow: var(--category-image-shadow);
}

.category-card-title-background {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 1rem;
    background-color: #f6f5f3aa;
    border-radius: 0px 0px 5px 5px;
    /*border-radius: 0px 0px 35px 35px;*/
}


.product-card {
    border: 0;
    -webkit-box-shadow: var(--product-card-shadow);
    box-shadow: var(--product-card-shadow);
}
.product-view {
    border-radius: 0.25rem;
    -webkit-box-shadow: var(--product-view-shadow);
    box-shadow: var(--product-view-shadow);
    margin-top: -1.25rem;
    margin-right: 4%;
    margin-left: 4%;
}
.product-card .card-img-top {
    height: 20rem;
    object-fit: contain;
    background: white;
}
.btn-buy-product {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 0px;
    color: #fff;
    background: #005890;
    cursor: pointer;
}

.btn-buy-product:hover, .btn-buy-product:focus, .btn-buy-product:visited {
    color: #fff;
    background: #005890;
}
h5,h1{
    font-weight:bold;
}
.modal {
    z-index: 9999 !important;
}
