

/* shopping experience */
.sg_shopping-experience {
    position: relative;
    display: flex;
    justify-content: center;
}
.sg_shopping-experience > .item {
    position: relative;
    width: 250px;
    text-align: center;
}
.sg_shopping-experience > .item > .thumb {
    width: 100%;
    height: 100px;
}
.sg_shopping-experience > .item > .thumb > img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}
.sg_shopping-experience > .item > h4 {
    font-weight: bold;
    font-size: 20px;
}
.sg_shopping-experience > .sep {
    align-self: center;
    line-height: 2em;
    font-size: 24px;
    text-align: center;
    margin: 15px;
}
.sg_shopping-experience > .sep:before {
    display: block;
    font-family: var(--fa-style-family,"Font Awesome 6 Free");
    font-weight: var(--fa-style,900);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    color: var(--sg-color-primary);
    border: 2px solid var(--sg-color-primary);
    content: "\f105";
    margin: 0 auto;
}
.sg_shopping-experience > .sep.f:before {
    background-color: var(--sg-color-primary);
    color: #fff;
}

/* product categories */
.sg_product-categories {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.sg_product-categories > .item {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    margin: 10px;
}
.sg_product-categories .item {
    position: relative;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
}
.sg_product-categories .item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}
.sg_product-categories .item > a.p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
}
.sg_product-categories .item > .thumb {
    height: 250px;
    background-color: #333;
}
.sg_product-categories .item > .thumb > img {
    transition: all 0.35s;
}
.sg_product-categories .item:hover > .thumb > img {
    transform: scale(1.05);
}
.sg_product-categories .item > h4.title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background-color: var(--sg-color-primary);
    color: #fff;
    padding: 15px;
    border-radius: 25px;
    font-size: 15px;
    text-align: center;
    margin: 0;
    z-index: 2;
}

/* specials */
.sg_specials {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.sg_specials nav {
    max-width: 800px;
    margin: 0 auto;
}
.sg_specials > nav {
    margin-bottom: 25px;
}
.sg_specials > nav > .nav.nav-tabs {
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
}
.sg_specials > nav > .nav.nav-tabs > button.nav-link {
    border: 0;
    border-radius: 0;
    font-size: 18px;
    padding: 20px 25px;
    color: #111;
    flex: 1;
}
.sg_specials > nav > .nav.nav-tabs > button.nav-link.active {
    background-color: var(--sg-color-primary);
    color: #fff;
}
.sg_specials .tab-content nav > .nav.nav-tabs {
    border: 0;
    justify-content: center;
    margin-bottom: 25px;
}
.sg_specials .tab-content nav > .nav.nav-tabs > button.nav-link {
    font-size: 18px;
    color: #111;
    border: 0;
    border-bottom: 2px solid transparent;
}
.sg_specials .tab-content nav > .nav.nav-tabs > button.nav-link.active {
    background-color: transparent;
    border-bottom-color: var(--sg-color-primary);
}

/* products */
.sg_product-card {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    margin: 15px auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.sg_product-card > .thumb {
    position: relative;
    width: 100%;
    height: 350px;
    background-color: #fafafa;
}
.sg_product-card > .thumb > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.sg_product-card > .thumb > *:not(img) {
    position: absolute;
}
.sg_product-card > .thumb > .tools {
    position: absolute;
    display: flex;
    justify-content: center;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.35s;
}
.sg_product-card:hover > .thumb > .tools {
    bottom: 25px;
    opacity: 1;
}
.sg_product-card > .details {
    position: relative;
    text-align: center;;
    padding: 25px;
}
.sg_product-card > .details > .product-title {
    font-size: 24px;
    font-weight: bold;
}
.sg_product-card > .details > .price {
    position: relative;
    margin-top: 15px;
}
.sg_product-card > .details > .price > .regular {
    font-size: 18px;
    color: var(--sg-color-primary);
}
.sg_product-card > .details > .price del {
    color: #bbb;
    text-decoration: line-through;
    font-size: 85%;
}



@media only screen and (max-width: 600px) {

    .sg_shopping-experience {
        flex-direction: column;
    }
    .sg_shopping-experience > .item {
        width: 100%;
    }
    .sg_shopping-experience > .sep {
        flex: 1;
        width: 100%;
    }
    .sg_shopping-experience > .sep:before {
        transform: rotate(90deg);
    }

}


@media only screen and (max-width: 575px) {

    .sg_specials .tab-content nav > .nav.nav-tabs > button.nav-link {
        font-size: 16px;
    }

    .sg_specials > nav > .nav.nav-tabs > button.nav-link {
        padding: 10px;
        font-size: 16px;
    }

}