.store {
    position: relative;
    box-shadow: 0px 0 10px #0000001c;
    border-radius: 16px;
    overflow: hidden;
    transition: .3s;
}
.store:hover {
    box-shadow: 0 0 20px #cccccc91;
}
.store-cover{
    width: 100%;
    height: 185px;
    object-fit: cover;
    background-color: #f4f4f4;
    box-shadow: 0 1px 4px #0000000d;
}
.store-profile {
    background-color: #f4f4f4;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 30px;
    overflow: hidden;
    position: absolute;
    bottom: -12px;
    left: 10px;
    border: 2px solid #fff;
    box-shadow: rgb(0 0 0 / 20%) 0px 2px 8px;
}
.store-body {
    padding: 18px 18px 14px;
}
.store-body h5 {
    font-weight: 600;
    color: var(--second-color);
    letter-spacing: .6px;
    text-transform: capitalize;
}
.store-body p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--third-color);
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 42px;
}
.load-more .btn{
    width: max-content;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.empty-stores {
    max-width: 650px;
    margin: auto;
    padding: 50px 0;
}
.empty-stores svg {
    width: 210px;
    height: 210px;
    color: #e7e7e7;
    fill: none;
}
.empty-stores p {
    font-size: 15px;
    color: var(--third-color);
    font-weight: 300;
}
.address {
    min-height: 20px;
}
.address svg{
    min-width: 20px;
}
.address span {
    width: calc(100% - 20px);
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/********** store Page *************/
.store-top-bar-logo {
    height: 60px;
}
.store-head {
    position: relative;
}
.store-head .store-cover {
    margin: 8px 0 30px;
    height: 330px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 11px #00000017;
}
.store-head .store-profile {
    width: 100px;
    height: 100px;
    bottom: 0;
    left: 2%;
}
.store-title{
    font-weight: 700;
    margin-top: 20px;
    text-transform: capitalize;
    letter-spacing: .4px;
}
.store-slogan {
    font-size: 15px;
    color: var(--third-color);
    font-weight: 300;
    letter-spacing: .4px;
}
.store-top-bar .mobile-cart .badge {
    transform: translate(-80%,40%)!important;
}
.store-sidebar{
    background-color: #f8f8f8;
    height: max-content;
    padding: 20px;
    border-radius: 8px;
}
.store-sidebar span.name-size{
    font-weight: 500;
}
.store-page .shop-head-filter {
    background-color: #f8f8f8;
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 20px;
}
.store-page .show-and-sort .product-per-page{
    margin-right: 0;
    padding-bottom: 0;
}
.store-page .nav-tabs {
    border: 0;
}
.store-page .nav-tabs .nav-link{
    border: 0;
}
.store-page .nav-tabs .nav-link:focus, .store-page .nav-tabs .nav-link:hover {
    border-color: transparent;
}
.store-page .nav-tabs .nav-item.show .nav-link, .store-page .nav-tabs .nav-link.active{
    border: 0;
    color: var(--second-color);
    font-weight: 600;
    background-color: transparent;
    border-bottom: 3px solid var(--main-color);
}
.store-page .nav-tabs .nav-link{
    color: var(--third-color);
    text-transform: capitalize;
    padding: 2px 8px;
    font-size: 15px;
}

.contact-details svg {
    min-width: 24px;
    min-height: 24px;
    height: 100%;
    fill: none;
    color: var(--second-color);
}
.contact-details h6 {
    font-size: 13px;
    color: var(--second-color);
    margin: 4px 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .4px;
}
.contact-details p {
    font-size: 13px;
    color: var(--main-color);
    margin: 0;
}
/********** End store Page *************/