@import "inner-banner.css";

/*----- Product list ----*/
.product-list .card-title{
    font-family: var(--bs-font-family-2);
    color: var(--bs-secondary);
    font-size: 16px;
    position: relative;
    z-index: 2;
}
.product-list .card{ box-shadow: 0px 2px 1px #afd4cd;}
.product-list .card-body::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    z-index: 1;
    transition: all .3s ease-in-out;
}
.product-list .card:hover .card-body::after {
    height: 100%;
    transition: all .3s ease-in-out;
}

/*----- Product cagegory ----*/
.bg-light-gradient {
    background: linear-gradient(to bottom, #ffffff, #f1f1f1 );
}
.product-list.category .card{box-shadow: 0px 2px 1px #000000}
.product-list .card:hover .card-body .btn-secondary {
    background: var(--bs-white) !important;
    border-color: var(--bs-secondary) !important;
    color: var(--bs-secondary) !important;
}
.categorySwiper .swiper-button-next, .categorySwiper .swiper-button-prev {
    color: var(--bs-white);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 60px;

}
.categorySwiper .swiper-button-next:hover, .categorySwiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/*---- Product sub category ----*/
.dollar-symbol-outline {
    width: 15px;
    height: 20px;
    background: url(../images/dollar-symbol-outline.svg);
    background-size: auto 25px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin: 0 1.5px;
}
.dollar-symbol-solid {
    width: 15px;
    height: 20px;
    background: url(../images/dollar-symbol-solid.svg);
    background-size: auto 25px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin: 0 1.5px;
}
.tag {
    background: rgba(0, 0, 0, 0.8);
    color: #75c0b2;
    padding: 5px 10px;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif ;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 1px 3px 6px #75c0b2;
    top: 12px;
    right: 12px;
    border-radius: 5px;
    /* bottom: 0;
    left: 0;
    width: 100%;
    text-align: center; */
}
.dollar-icon-area {
    position: relative;
}
.dollar-icon-area::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    top: -17px;
    left: calc(50% - 25px);
    background: var(--bs-primary);
}
.product-list .card:hover .card-body .dollar-icon-area::after { background: var(--bs-secondary);}

.releted-pro-img {
    padding-bottom: 100%;
}
.releted-pro-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #fff;
}

/*-----responsive-----*/

@media (max-width: 575px) {
    .product-list .card { max-width: 360px; margin: auto;}
    .product-list .card-title { font-size: 18px;}
}

@media (min-width: 576px) {
    .modal-dialog.sm { max-width: 550px;}
}

@media (min-width: 992px) {
    .product-list .card-title { font-size: 18px;}
}

@media (min-width: 1400px) {
    .product-list .card-title { font-size: 20px;}
}

@media (min-width: 1600px) {
    .product-list .card-title { font-size: 22px;}
}