
:root{
    --white-light: rgba(255, 255, 255, 0.5);
    --alice-blue: #f8f9fa;
    --carribean-green: #40c9a2;
    --gray: #ededed;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.pos-absolute{
    position: absolute!important;
}
.darker-when-hover:hover{
    opacity: .75;
}

.navbar{
    background-color: #2f3132!important;
}
.navbar-brand{
    color: white!important;
}
.nav-link{
    text-align: center;
    color: white!important;
}
/* .nav-link:hover{
    color: #333!important;
} */
.navbar-toggler-icon{
    color: white!important;
}
.login-menu{
    min-width: 20rem;
    padding: 1rem;
}
.navbar-brand{
    font-size: 32px!important;
}

/* Utility stylings */
img{
    width: 100%;
    display: block;
}
.container{
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.lg-title,
.md-title,
.sm-title{
    font-family: 'Roboto', sans-serif;
    padding: 0.6rem 0;
    text-transform: capitalize;
}
.lg-title{
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    padding: 1.3rem 0;
    opacity: 0.9;
}
.md-title{
    font-size: 2rem;
    font-family: 'Roboto', sans-serif;
}
.sm-title{
    font-weight: 300;
    font-size: 1rem;
    text-transform: uppercase;
}


/* product section */
.products{
    background: var(--alice-blue);
    padding: 3.2rem 0;
}
.products .text-light{
    text-align: center;
    width: 70%;
    margin: 0.9rem auto;
}

.product-content{
    background: #fff;
    padding: 3rem 0.5rem 2rem 0.5rem;
    cursor: pointer;
}

.product-name{
    font-size: 16px;
    line-height: 20px;
    max-height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.product-info{
    border-top: 1px solid #ccc;
    background: white;
    padding: 2rem;
    height: 200px;
    overflow: hidden;
}
.product{
    margin-bottom: 10px;
}

.product-img{
    background: var(--white-light);
    box-shadow: 0 0 20px 10px var(--white-light);
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    transition: background 0.5s ease;
}
.product-btns{
    display: flex;
    justify-content: center;
    margin-top: 1.4rem;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.btn-cart, .btn-buy{
    background: transparent;
    border: 1px solid black;
    padding: 0.8rem 0;
    width: 125px;
    font-family: inherit;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.6s ease;
}

.btn-buy{
    background: white;
}
.btn-buy:hover{
    background: #00B8FCFC;
    color: black;
}
.product-info{
    background: white;
    padding: 2rem;
}
.product-info-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-name{
    color: black;
    display: block;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}
.product-price{
    padding-top: 0.6rem;
    padding-right: 0.6rem;
    display: inline-block;
}
.product-img img{
    transition: transform 0.6s ease;
    width: 100%;
    height: 100%;
}
.product:hover .product-img img{
    transform: scale(1.1);
}
.product:hover .product-img{
    background: #00B8FCFC;
}
.product:hover .product-btns{
    opacity: 1;
}

.product-filter-btn{
    background: #00B8FCFC;
    font-weight: bold;
    color: black;
}
.product-filter-btn:hover{
    background: #00B8FCFC;
}

.product-filter-dropdown{
    list-style-type: none;
    padding-left: 10px;
}

.product-filter-check{
    font-size: 20px;
}
.product-filter-box{
    width: 15px;
    height: 15px;
}

.product-filter-title{
    font-size: 20px;
}

/* Media Queries */
@media screen and (max-width: 770px){
    
}
