.product-head {
    position: relative;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    & .product_title {
        color: var(--color1);
        font-size: clamp(24px, 3vw, 32px);
        line-height: 48px;
        font-family: var(--Medium);
    }
    .sub-title {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--gray);
        font-family: var(--Regular);
        line-height: clamp(20px, 2vw, 25px);
    }
}
.product_meta {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 15px;
    & .category_post {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        & i {
            font-size: 18px;
            color: var(--color1);
        }
        a {
            color: var(--gray);
            font-size: 14px;
            padding-left: 8px;
            position: relative;
            transition: 0.4s;
            font-family: var(--Medium);
            &:hover {
                color: var(--black);
            }
            &:not(:nth-last-child(1)):before {
                content: "";
                height: 12px;
                width: 1px;
                position: absolute;
                left: -1px;
                top: 50%;
                transform: translateY(-50%);
                background: var(--color2);
                z-index: 3;
                border-radius: 12px;
            }
        }
    }
    .product-rate {
        position: absolute;
        top: 4px;
        left: 0;
        & .rate-num {
            display: flex;
            font-size: 16px;
            color: var(--color1);
            align-items: flex-end;
            flex-direction: row-reverse;
            line-height: 1;
            & i {
                font-size: 22px;
                color: #D7B46A;
                margin-right: 6px;
            }
        }
    }
}
.woocommerce-product-details__short-description {
    margin: 24px 0 16px;
    color: var(--gray);
    line-height: 32px;
}
.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
    & li {
        display: flex;
        flex-direction: column;
        gap: 8px;
        color: var(--black);
        padding: 12px 16px;
        background: var(--nature2);
        border-radius: 16px;
        font-family: var(--Medium);
        .title {
            font-size: 12px;
            color: var(--gray);
        }
        span:not(.title) {
            font-size: 14px;
            color: var(--black);
        }
    }
}
.wrapper-olfactory {
    border-radius: 24px;
    padding: 16px 16px 18px;
    background: var(--nature2);
    margin-top: 20px;
    .olfactory {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 16px;
        background: var(--color1);
        width: fit-content;
        padding: 6px 8px;
        color: white;
        border-radius: 32px;
        font-size: clamp(14px, 2vw, 16px);
        font-family: var(--Medium);
        img {
            width: 38px;
            height: 38px;
            flex: 0 0 38px;
            border: 2px solid white;
            border-radius: 50%;
        }
        a {
            color: white;
            transition: 0.4s;
            &:hover {
                color: var(--color2);
            }
        }
    }
    .note-wrap {
        display: flex;
        flex-direction: column;
        gap: 12px;
        li {
            display: flex;
            align-items: center;
            img {
                width: 40px;
                flex: 0 0 40px;
                height: 40px;
                border-radius: 50%;
                background: #DFEDDE;
                margin-left: 8px;
                padding: 3px;
            }
            strong {
                margin-left: 16px;
                font-size: clamp(14px, 2vw, 16px);
                font-family: var(--Medium);
            }
            a {
                font-size: clamp(12px, 1vw, 14px);
                font-family: var(--Medium);
                color: var(--gray);
                transition: 0.4s;
                &:hover {
                    color: var(--color1);
                }
            }
        }
    }
}
/* CSS Stock Notify */
#stock-notify-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: none;
    overflow: hidden;
    outline: 0;
    background-color: #000000cf;
    line-height: 1.5;
    font-size: 15px;
    color: #333;
    overflow-y: auto;
    .wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    .modal-box {
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, .2);
        border-radius: 5px;
    }
    .modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        border-bottom: 1px solid #e9ecef;
    }
    .modal-body {
        padding: 15px;
    }
    .modal-title {
        font-size: 16px;
        font-weight: bold;
        margin: 0;
    }
    .auth-form-row .auth-title {
        text-align: right;
    }
    .auth-form-row input:not([type="checkbox"]) {
        direction: ltr;
        text-align: left;
    }
}
/* Sidebar */
.product-price-box {
    position: relative;
    width: 100%;
}
.variations_form.cart,
.product-sidebar-inner {
    position: relative;
    background: var(--nature2);
    padding: 16px;
    border-radius: 24px;
    margin-bottom: 16px;
    .wrapper-stock {
        display: flex;
        align-items: center;
        gap: 8px;
        .out-of-stock {
            background: #FF00041A;
            border-radius: 16px;
            width: 74px;
            height: 48px;
            flex: 0 0 74px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--danger);
            font-size: 14px;
            font-family: var(--Medium);
        }
        .stock-notify-modal-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color1);
            color: var(--white);
            min-height: 48px;
            border-radius: 16px;
            padding: 8px 16px;
            font-size: 14px;
            font-family: var(--Medium);
            width: -webkit-fill-available;
            cursor: pointer;
            transition: 0.4s;
            text-align: center;
            i {
                width: 20px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
            }
            &:hover {
                background: var(--color2);
                color: var(--black);
            }
        }
    }
    & .single_add_to_cart_button {
        background: var(--color1);
        border: 0;
        min-height: 50px;
        border-radius: 16px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
        font-family: var(--Medium);
        transition: 0.4s;
        width: 100%;
        font-size: 16px;
        &:hover {
            background: var(--color2);
        }
    }
}
.variations label {
    display: block;
    font-size: 16px;
    line-height: 23px;
    font-family: var(--Medium);
}
.summary.entry-summary {
    position: relative;
}
.product-main-data {
    margin-bottom: clamp(72px, 9vw, 120px);
    padding-top: clamp(32px, 5vw, 72px);
}
.single_variation_wrap {
    .woocommerce-variation-price {
        min-height: 46px;
        display: flex;
        align-items: center;
        float: left;
        margin-bottom: 12px;
        & .price {
            flex-direction: column;
            float: unset;
            position: relative;
            display: flex;
            padding-right: 45px;
            font-family: var(--Regular);
            del {
                color: var(--gray);
                font-size: 14px !important;
                line-height: 14px;
                bdi {
                    .woocommerce-Price-currencySymbol {
                        display: none;
                    }
                }
            }
            ins {
                font-size: clamp(16px, 2vw, 18px) !important;
                line-height: 32px;
                text-decoration: none;
                .woocommerce-Price-currencySymbol {
                    font-size: 14px;
                }
            }
            .on-sale {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 0;
                font-size: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--black);
                background: var(--color2);
                width: 36px;
                height: 46px;
                border-radius: 8px;
            }
        }
    }
}
.stock.in-stock {
    display: none;
}
.call-for-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color1);
    color: var(--white);
    min-height: 48px;
    border-radius: 16px;
    padding: 8px 16px;
    font-size: 14px;
    font-family: var(--Medium);
    width: -webkit-fill-available;
    cursor: pointer;
    transition: 0.4s;
    i {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }
    &:hover {
        background: var(--color2);
        color: var(--black);
    }
}
.product-sidebar .quantity {
    margin-bottom: 18px;
}
.consulting-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 16px;
    padding: 16px;
    background: var(--color2);
    color: white;
    margin-block: 16px;
    .consulting-icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        background: var(--color1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }
    .consulting-body {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 16px;
        font-family: var(--Medium);
        .call-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            a {
                color: white;
                position: relative;
                &:before {
                    content: '';
                    position: absolute;
                    left: -11px;
                    width: 6px;
                    height: 2px;
                    background: white;
                    top: 50%;
                    transform: translateY(-50%);
                }
                &:hover {
                    color: var(--color1);
                }
                &:nth-last-child(1):before {
                    content: none;
                }
            }
        }
    }
}
.warranty-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 16px;
    padding: 16px;
    background: var(--color3);
    margin-block: 16px;
    .warranty-icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        background: var(--color1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
    }
    .warranty-body {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-family: var(--Medium);
        p {
            font-size: 18px;
        }
        span {
            font-size: 12px;
            color: var(--color1);
        }
    }
}
.iconbox-wrapper-single {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-block: 16px;
    .iconbox-column {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: var(--Medium);
        .iconbox-img {
            width: 48px;
            height: 48px;
            flex: 0 0 48px;
            background: var(--color2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            img {
                max-width: 24px;
            }
        }
        p {
            font-size: 16px;
        }
        span {
            font-size: 12px;
            color: var(--gray);
            margin-top: 4px;
        }
    }
}
/***** Price */
.product-sidebar-inner {
    .woocommerce-variation.single_variation {
        min-height: 46px;
        display: flex;
        align-items: center;
        float: left;
        margin-bottom: 12px;
        & .price {
            flex-direction: column;
            float: unset;
            position: relative;
            display: flex;
            padding-right: 45px;
            font-family: var(--Regular);
            del {
                color: var(--gray);
                font-size: 14px !important;
                line-height: 14px;
                bdi {
                    .woocommerce-Price-currencySymbol {
                        display: none;
                    }
                }
            }
            ins {
                font-size: clamp(16px, 2vw, 18px) !important;
                line-height: 32px;
                text-decoration: none;
                .woocommerce-Price-currencySymbol {
                    font-size: 14px;
                }
            }
            .on-sale {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 0;
                font-size: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--black);
                background: var(--color2);
                width: 36px;
                height: 46px;
                border-radius: 8px;
            }
        }
    }
}
.woo-variation-swatches .variable-items-wrapper {
    gap: 6px;
    margin: 12px 0 24px;
    li {
        background: var(--color3) !important;
        width: max-content !important;
        font-size: 14px !important;
        font-family: var(--Regular);
        color: var(--black);
        border-radius: 32px !important;
        line-height: 8px;
        height: 32px !important;
        box-shadow: unset !important;
        transition: 0.4s;
        &.selected,
        &:hover {
            background: var(--color1) !important;
            color: white !important;
        }
    }
}
/***** tabs *****/
.woocommerce-tabs {
    margin-top: clamp(32px, 9vw, 128px);
    .wc-tabs-wrap {
        position: sticky;
        top: 40px;
        z-index: 3;
        transition: 0.4s ease;
        display: none;
        & .tabs.wc-tabs {
            display: flex;
            align-items: center;
            border-radius: 16px;
            background: var(--nature2);
            position: relative;
            margin-bottom: 32px;
            padding: 16px;
            flex-wrap: wrap;
            gap: 8px;
            & a {
                font-size: clamp(14px, 2vw, 16px);
                font-family: var(--Medium);
                padding: 8px 14px;
                white-space: nowrap;
                transition: 0.4s;
                display: flex;
                align-items: center;
                justify-content: center;
                background: transparent;
                color: var(--black);
                border-radius: 16px;
                min-height: 48px;
            }
            & a:hover,
            & a.active {
                background: var(--color2);
                color: var(--white);
            }
        }
        & .scroll-top {
            margin-right: auto;
            display: inline-flex;
            width: 36px;
            height: 36px;
            flex: 0 0 36px;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            background: #fff;
            color: var(--color1);
            font-size: 14px;
            cursor: pointer;
            transition: 0.4s;
            z-index: 1;
            &:hover {
                color: #fff;
                background: var(--color1);
            }
        }
    }
    .title-tab {
        font-size: 20px;
        font-family: var(--Medium);
        margin-bottom: clamp(16px, 2vw, 20px);
    }
    .shop_attributes {
        width: 100%;
        tbody {
            width: 100%;
            text-align: right;
            border: 1px solid var(--line);
            padding: clamp(12px, 2vw, 24px);
            display: flex;
            flex-direction: column;
            gap: 16px;
            border-radius: 32px;
            tr {
                display: flex;
                align-items: center;
                gap: 16px;
                th {
                    display: flex;
                    align-items: center;
                    background: var(--nature2);
                    min-width: clamp(130px, 13vw, 180px);
                    padding: 16px 24px;
                    font-size: 16px;
                    font-family: var(--Medium);
                    border-radius: 16px;
                }
                td {
                    background: var(--nature);
                    width: 100%;
                    padding: 16px 24px;
                    border-radius: 16px;
                    font-family: var(--Regular);
                    color: var(--gray) !important;
                    font-size: 16px;
                    a {
                        color: var(--color1);
                        transition: 0.4s;
                        &:hover {
                            color: var(--color2);
                        }
                        img {
                            width: 32px;
                            height: 32px;
                            border-radius: 50%;
                            margin-left: 8px;
                        }
                    }
                    p {
                        font-family: var(--Regular);
                        color: var(--gray) !important;
                        margin: 0;
                        font-size: 16px;
                    }
                }
            }
        }
    }
    .woocommerce-Tabs-panel {
        margin-bottom: 32px;
        .main-content {
            width: 100%;
            text-align: right;
            border: 1px solid var(--line);
            padding: clamp(12px, 2vw, 24px);
            display: flex;
            flex-direction: column;
            gap: 16px;
            border-radius: 32px;
        }
    }
    table.shop_attributes * {
        vertical-align: middle;
    }
}
.fix-btn.scroll-top {
    position: fixed;
    left: -65px;
    bottom: 160px;
    z-index: 111;
    gap: 15px;
    transition: 0.4s ease;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    box-shadow: 0 1px 4px #d9d9d9;
}
.fix-btn.scroll-top.active {
    left: 15px;
}
.scroll-top.fix-btn i {
    transform: rotate(90deg);
    font-size: 18px;
}
.scroll-top i {
    transform: rotate(0deg);
    transition: 0.4s ease;
}
.scroll-top.active i {
    transform: rotate(180deg);
}
.tag-product {
    margin-top: clamp(24px, 3vw, 32px);
    padding-top: clamp(24px, 3vw, 32px);
    border-top: 1px solid var(--line);
    .tag-post {
        margin: 0;
    }
}
/* Comments */
p.woocommerce-noreviews {
    text-align: center;
    margin-top: 100px;
    background: var(--nature2);
    padding: 12px;
    border-radius: 12px;
    font-style: italic;
}
.woocommerce p.stars a {
    position: relative;
    height: clamp(18px, 2vw, 22px);
    width: clamp(18px, 2vw, 22px);
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
    margin-right: 1px;
    color: var(--color2);
    font-size: clamp(16px, 2vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.woocommerce .stars span {
    display: flex;
    gap: 4px;
    flex-direction: row-reverse;
}
#tab-reviews .form-submit {
    float: left;
    flex: unset;
}
.stars {
    margin: 0 !important;
}
.woocommerce p.stars a::before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    line-height: 1;
    font-family: 'icomoon';
    text-indent: 0;
    content: "\e929";
    transition: all 0.3s;
    color: #DADADA;
}
.woocommerce p.stars a:hover ~ a::before {
    content: '\e929';
    color: #DADADA;
}
.woocommerce p.stars:hover a::before {
    color: #D7B46A;
}
.woocommerce p.stars.selected a.active::before {
    color: #D7B46A;
}
.woocommerce p.stars.selected a.active ~ a::before {
    content: "\e929";
    color: #DADADA;
}
.woocommerce p.stars.selected a:not(.active)::before {
    color: #D7B46A;
}
.comment-form-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(8px, 2vw, 20px);
    margin-top: 16px;
    z-index: 1;
    width: 100%;
    label {
        color: #221E1F;
        font-size: clamp(16px, 2vw, 18px);
        font-family: var(--Medium);
    }
}
.commentlist li {
    padding-right: 0 !important;
}
.commentlist li:before,
.commentlist li:after {
    display: none !important;
}
.comment-form-email,
.comment-form-author {
    width: calc(50% - 16px);
    position: relative;
}
/* custom popup Share */
.share-single {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 72px;
    right: 32px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color1);
    font-size: 24px;
    transition: 0.4s;
    z-index: 2;
    cursor: pointer;
    &:hover {
        background: var(--color1);
        color: white;
    }
}
.share-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
    & .single-share {
        .share-items {
            display: flex;
            gap: 10px;
            justify-content: center;
            a {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                font-size: 22px;
                transition: 0.4s;
                display: flex;
                align-items: center;
                justify-content: center;
                border: 1px solid var(--color1);
                color: var(--color1);
                &:hover {
                    color: var(--color2);
                    border-color: var(--color2);
                }
            }
        }
    }
    & .popup-content {
        max-width: 400px;
        transform: scale(0.9);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
        position: fixed;
        top: 20%;
        background: #fff;
        border-radius: clamp(16px, 3vw, 24px);
        width: calc(100% - 32px);
        text-align: center;
        z-index: 9999;
        padding: 48px clamp(16px, 3vw, 32px) clamp(16px, 3vw, 32px);
    }
    & .close-popup {
        position: absolute;
        top: clamp(12px, 2vw, 16px);
        left: clamp(12px, 3vw, 32px);
        cursor: pointer;
        font-size: 8px;
        font-weight: bold;
        width: 20px;
        height: 20px;
        color: var(--color1);
        border: 1px solid;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
        &:hover {
            background: var(--color1);
            color: white;
        }
    }
}
.share-popup.active {
    opacity: 1;
    pointer-events: auto;
}
.share-popup.active .popup-content {
    transform: scale(1);
    opacity: 1;
}
.ac-btn.wishlist-link.wishlist-item {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 16px;
    right: 32px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color1);
    font-size: 24px;
    transition: 0.4s;
    z-index: 2;
    cursor: pointer;
    & i:before {
        transition: 0.4s;
    }
    &.wished,
    &:hover {
        background: var(--color1);
        color: var(--white);
    }
}
.wishlist-item.loading {
    pointer-events: none;
    position: relative;
}
.wishlist-item.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border: 2px solid var(--color1);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    transform: translate(-50%, -50%);
    background: var(--gray2);
    padding: 4px;
}
.wishlist-item.wished.loading:after {
    background: var(--color1);
    border-color: white;
    border-top-color: transparent;
}
@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.new-product {
    position: absolute;
    z-index: 2;
    left: 32px;
    top: 16px;
    width: 64px;
    height: 32px;
    background: var(--color1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    font-size: 14px;
    line-height: 16px;
    font-family: var(--Medium);
    padding-top: 2px;
}
/* custom popup */
#custom-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(36 39 41 / 60%);
    z-index: 9998;
}
#custom-add-to-cart-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #fff;
    border-radius: clamp(16px, 3vw, 24px);
    max-width: 800px;
    width: calc(100% - 32px);
    text-align: center;
    z-index: 9999;
    transition: all 0.3s ease;
    padding: 48px clamp(16px, 3vw, 32px) clamp(16px, 3vw, 32px);
}
#custom-add-to-cart-popup.show {
    display: block;
    transform: translate(-50%, -50%) scale(1);
}
#custom-popup-close {
    position: absolute;
    top: clamp(12px, 2vw, 16px);
    left: clamp(12px, 3vw, 32px);
    cursor: pointer;
    font-size: 8px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    color: var(--color1);
    border: 1px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    &:hover {
        background: var(--color1);
        color: white;
    }
}
.popup-head {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: #D9FFEC;
    border-radius: 16px;
    padding: 16px clamp(16px, 2vw, 24px);
}
#custom-popup-text {
    font-size: 16px;
    font-family: var(--Medium);
}
/* Gallery */
.product-gallery-item.has-border, .gallery-top-wrapper {
    border: 1px solid var(--line);
    background: #F7f7f7;
    margin-bottom: 16px;
    border-radius: clamp(24px, 3vw, 32px);
    overflow: hidden;
    /* min-height: 380px; */
    max-height: 416px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-top {
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
}
.websima-product-gallery .for-lightgallery img,
.gallery-top .swiper-slide img {
    width: 100%;
}
.gallery-bottom {
    .product-thumb-item {
        cursor: pointer;
        overflow: hidden;
        border-radius: 16px;
        background: #F7F7F7;
        img {
            width: 100%;
            transition: 0.4s ease;
        }
        &:after {
            content: "\e932";
            opacity: 0;
            visibility: hidden;
            font-family: 'icomoon';
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            font-size: 25px;
            line-height: 1;
            margin: auto;
            transition: 0.4s;
            z-index: 1;
            color: var(--white);
            background: linear-gradient(0deg, #D7B46A 0%, transparent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
}
.gallery-bottom .swiper-slide.swiper-slide-thumb-active .product-thumb-item:before,
.gallery-bottom .swiper-slide.swiper-slide-thumb-active .product-thumb-item:after,
.gallery-bottom .swiper-slide .product-thumb-item:hover:before,
.gallery-bottom .swiper-slide .product-thumb-item:hover:after {
    opacity: 1;
    visibility: visible;
}
.swiper-pagination.product-pagination {
    bottom: 0 !important;
    margin: 20px 0 0 !important;
}
.websima-swiper-thumb {
    padding-inline: clamp(32px, 4vw, 48px);
    position: relative;
    & .swiper-button-next,
    & .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: var(--nature2);
        color: var(--black);
    }
    & .swiper-navigation.product-navigation {
        position: absolute;
        top: 75%;
        width: calc(100% - 0px);
        right: 0px;
        transform: translateY(-50%);
    }
}
@media only screen and (min-width: 992px) {
    .product-head {
        gap: 16px;
    }
    .woocommerce-tabs .wc-tabs-wrap {
        display: block;
    }
}
@media only screen and (max-width: 768px) {
    .single-product #footer {
        padding-bottom: 144px !important;
    }
    .comment-form-email,
    .comment-form-author {
        width: 100%;
    }
    .single-product .form-submit {
        margin-top: 0;
    }
    .product-sidebar {
        margin-top: 24px;
    }
}
.woocommerce-product-details__short-description.editor-content ul,
.woocommerce-product-details__short-description.editor-content ul li,
.woocommerce-product-details__short-description.editor-content p {
    margin: 0;
}
/**************variation*************/
.product-type-variable .product-form-wrap > .price {
    display: none;
}
.variations tr:nth-last-child(1) {
    border: 0;
    padding-bottom: 0;
    margin-bottom: 8px;
}
.variations tr {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.variations_form.cart select {
    display: block;
}
.variations_form.cart .variations {
    width: 100%;
    position: relative;
}
.variations .value {
    display: block;
    flex: 0 0 100%;
}
.woo-variation-swatches.wvs-show-label .variations td .woo-selected-variation-item-name,
.woo-variation-swatches.wvs-show-label .variations th .woo-selected-variation-item-name {
    font-weight: unset !important;
}
.variations label em {
    color: #838383;
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item.selected {
    border: 1px solid white;
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item) {
    border-radius: 8px;
    margin: 0;
}
.reset_variations:hover {
    background: white;
    color: var(--color2) !important;
}
.reset_variations {
    margin: 10px 0;
    display: inline-block !important;
    background: var(--color2);
    border: 1px solid var(--color2);
    color: #fff !important;
    border-radius: 5px;
    padding: 0 10px;
    transition: .4s;
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 12px;
}
.variations_form.cart select {
    width: 100%;
    border: 1px solid var(--line);
    padding: 10px 16px;
    font-family: inherit;
    border-radius: 12px;
    color: var(--gray);
    font-size: 14px;
    line-height: 26px;
    background: transparent;
    cursor: pointer;
}
.variations_form.cart .value {
    display: flex !important;
    flex-wrap: wrap;
}
.variations_form.cart .value:not(.woo-variation-items-wrapper):before {
    content: "\e919";
    font-family: 'icomoon';
    position: absolute;
    width: 3rem;
    height: 3rem;
    left: 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.variable-item-contents {
    border-radius: 8px !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}
.selected .variable-item-contents {
    border-color: white;
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item .variable-item-span {
    padding: 0 !important;
}
.variable-item.image-variable-item {
    width: 48px !important;
    height: 48px !important;
    background: none !important;
    margin: 0 !important;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).image-variable-item.selected:not(.no-stock) .variable-item-contents::before {
    content: none !important;
}
.websima-variable-selector.woo-variation-items-wrapper .websima-wc-variable-color {
    display: none;
}
.websima-product-gallery-wrapper .loading-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}
.filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--black);
    border-radius: 24px;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    right: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}
input:checked + .slider {
    background-color: var(--color1);
}
input:checked + .slider.red {
    background-color: #c62828;
}
input:checked + .slider:before {
    transform: translateX(-22px);
}


