/* ==========================================================================
   Product Title and Meta
   ========================================================================== */

.mt-64 {
    margin: 64px auto;
}

@media screen and (min-width:768px) {
    .mt-64 {
        margin: 80px auto;
    }
}

.product-single-timer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
    background-color: var(--color2);
    padding: 0.5rem;
    color: #fff;
}

.product-single-timer .product-timer-title {
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-family: var(--main_bold);
}

.product-title-avg-share .product-title {
    font-size: 21.5px;
    margin-bottom: 1rem;
	line-height:1.5;
}

.product-title-avg-share .product-avg-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E2E2E2;
}

.product-meta-wrapper {
    margin-bottom: 1rem;
}

.product-avg-share .socials {
    display: flex;
    gap: 9px;
    align-items: center;
}

.product-avg-share .product-avg-rate {
    color: #121212;
    font-size: 16px;
}

.product-avg-share .product-avg-rate::before {
    content: "\e92c";
    font-family: "icomoon";
    color: #FFAB36;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.category_product {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    flex-wrap: wrap;

}

.category_product .icon-category {
    color: var(--color1);
    font-size: 1.25rem;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.category_product a {
    display: flex;
    align-items: center;
    color: #121212;
    transition: 0.3s;
    font-size: 0.875rem
}

.category_product a:hover {
    color: var(--color1);
}

.category_product a:not(:last-child)::after {
    content: '';
    background-color: var(--color1);
    width: 6px;
    height: 6px;
    margin-left: 6px;
}

/* .price-discount,
.price-discount .price{
    display: flex;
    align-items: center;
    gap: 10px;
	justify-content:flex-start;
}

.price-discount .discount-percentage,
.price-discount .on-sale {
    color: #fff;
    background-color: var(--color1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
} */
.product-price .price .woocommerce-Price-amount.amount bdi:not(:where(del bdi)),
.product-price .price_holder ins .woocommerce-Price-amount.amount bdi .summary .price .woocommerce-Price-amount.amount bdi:not(:where(del bdi)),
.summary .price_holder ins .woocommerce-Price-amount.amount bdi {
    font-size: 1.125rem;
}

.summary .price {
    gap: 0.75rem;
}

/* ==========================================================================
   under the hero items
   ========================================================================== */
.right-side .tfooter-items {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent;
    padding: 0;
    text-align: left
}

.right-side .tfooter-content {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #E2E2E2;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
}

.right-side .tfooter-content:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.right-side .product-hero-items {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
}

.right-side .tfooter-content i {
    width: 40px;
    height: 40px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-side .tfooter-content .tfooter-title {
    margin-top: 0;
}



/* ==========================================================================
   Product Slider and Thumbnail
   ========================================================================== */
/* #single-product-thumbnail img {
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
} */

.wrap-thumbnail-single {
    position: relative;
    margin:  0;
	width:100%;
}

.item-thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
	height:100%;
}

.item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-thumbnail:after {
    content: "\e926";
    font-family: icomoon;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--color1);
    opacity: 0;
    transition: 0.3s;
    z-index: 3;
    background-color: #fff;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-thumbnail:hover:after {
    opacity: 1;
}

.item-thumbnail:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #EA7A6080;
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
}

.item-thumbnail:hover:before {
    opacity: 1;
}

/* ==========================================================================
   Product Attributes and Variations
   ========================================================================== */
.product-attr-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.woocommerce-product-attributes.shop_attributes {
    width: 100%;
    margin-top: 1rem;
}

.woocommerce-product-attributes.shop_attributes tbody {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.woocommerce-product-attributes.shop_attributes .woocommerce-product-attributes-item {
    flex: 0 0 calc(50% - 0.5rem);
    background-color: #F5F5F5;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    min-height: 44px;
}

.woocommerce-product-attributes.shop_attributes .woocommerce-product-attributes-item__label {
    color: #939896;
    font-size: 15px;
}

.woocommerce-product-attributes.shop_attributes .woocommerce-product-attributes-item__value {
    color: #121212;
}

.woocommerce-product-attributes.shop_attributes .woocommerce-product-attributes-item__value {
    margin-left: 10px;
    font-size: 14px;
    line-height: 1.5;
    text-align: right;
}

/* Hero attributes (length, weight, etc.) */
.product-hero-attribute {
    display: flex;
    align-items: center;
    gap: 16px 10px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.product-hero-attribute .product-attr-len,
.product-hero-attribute .product-hero-wei {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FAFAFE;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: #414142;
    font-size: 14px;
}

.product-hero-attribute .product-attr-len span,
.product-hero-attribute .product-hero-wei span {
    color: #8D8D8F;
}

/* Variations form */
.summary.entry-summary form.variations_form.cart {
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.product-type-variable .summary.entry-summary>.price {
    display: none;
}

.single_variation_wrap {
    display: flex;
    width: 100%;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin-top: 1rem
}

.woocommerce-variation-add-to-cart.variations_button {
    display: flex;
    align-items: center;
    margin-right: auto;
    gap: 0.5rem;
    width: 100%;
}

.variations_form.cart.wvs-loaded>div {
    width: 100%;
}

.woocommerce-variation-description {
    display: block;
    flex: 0 0 100%;
    color: #939896;
    order: 1;
    font-size: 0.825rem;
    line-height: 1;
}

.woocommerce-variation.single_variation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex: 0 0 100%;
    gap: 0.5rem;

}

table.variations {
    width: 100%;
    position: relative;
}

table.variations th.label {
    width: 100%;
    display: block;
    font-family: var(--main_bold);
    font-size: 1.125rem;
    text-transform: capitalize;
}

table.variations tr.variation-color th.label {
    font-size: 1rem;
}

.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: 100;
    font-size: 0.875rem;
}

table.variations tr {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
}

table.variations td.value {
    width: 100%;
}

.variation-color li.variable-item {
    width: 54px !important;
    height: 54px !important;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item) {
    border-radius: 0px !important;
}

table.variations td.value select {
    font-family: var(--main_bold);
    font-size: 16px;
    padding: 0.65rem 0.75rem !important;
    height: 3rem;
    background-color: #F5F5F5;
    border: 1px solid transparent;
    transition: 0.3s;
    text-overflow: ellipsis;
    position: relative;
    display: block;
    margin-bottom: 1rem;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.834 7.5L10.0007 12.5L7.50065 10.3571M4.16732 7.5L5.13954 8.33333" stroke="%23939896" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: 1.5rem;
    background-position: right;
    background-repeat: no-repeat;
    cursor: pointer;
}

.variation-color {
    border-top: 1px solid #E2E2E2;
    border-bottom: 1px solid #E2E2E2;
    padding: 1rem 0;
    /*  margin-bottom: 3.5rem; */
}

a.reset_variations {
    position: absolute;
    right: 0;
    top: 8px;
    font-size: 14px;
    color: var(--color1);
    border-bottom: 1px solid var(--color1);
    line-height: 1;
}

/* ==========================================================================
   Product Price and Add to Cart
   ========================================================================== */
/* .summary.entry-summary .price_holder {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.price_holder del bdi {
    color: #939896 !important;
}

.summary.entry-summary .price_holder del,
.summary.entry-summary .price_holder ins {
    text-decoration: none;
}

.summary.entry-summary del .woocommerce-Price-amount.amount bdi {
    font-size: 19px;
    line-height: 13px;
}
.price-discount .price .woocommerce-Price-amount.amount bdi,
.summary.entry-summary ins .woocommerce-Price-amount.amount bdi {
    font-size: 1.5rem;
    line-height: 13px;
    font-family: var(--main_bold);
}

.summary.entry-summary .woocommerce-Price-currencySymbol {
    font-size: 14px;
} */

.product-main-data .price>.woocommerce-Price-amount.amount bdi {
    font-size: 1.5rem;
    color: var(--color1);
    line-height: 13px;
}

.summary .stock {
    margin-top: 0.875rem;
    font-size: 0.75rem;
}

.summary .stock.out-of-stock {
    color: var(--danger);
}

.summary.entry-summary form.cart {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.875rem;
}

.button-notify,
.summary.entry-summary form.cart .single_add_to_cart_button {
    background-color: var(--color1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 100%;
    border: 1px solid transparent;
    margin-top: 0;
    cursor: pointer;
    transition: 0.3s;
    gap: 0.5rem;
}

.button-notify:hover,
.summary.entry-summary form.cart .single_add_to_cart_button:hover {
    background-color: transparent;
    color: var(--color1);
    border: 1px solid var(--color1);

}

.button-notify:before {
    content: "";
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.25rem;
    left: 0;
    z-index: 0;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAxOCAyMCIgZmlsbD0iI0VBN0E2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDE1VjE2QzEyIDE3LjY1NjkgMTAuNjU2OSAxOSA5IDE5QzcuMzQzMTUgMTkgNiAxNy42NTY5IDYgMTZWMTVNMTIgMTVINk0xMiAxNUgxNS41OTA1QzE1Ljk3MyAxNSAxNi4xNjUyIDE1IDE2LjMyMDEgMTQuOTQ3OEMxNi42MTYgMTQuODQ4IDE2Ljg0NzUgMTQuNjE1NiAxNi45NDczIDE0LjMxOThDMTYuOTk5NyAxNC4xNjQzIDE2Ljk5OTcgMTMuOTcxNSAxNi45OTk3IDEzLjU4NTlDMTYuOTk5NyAxMy40MTcyIDE2Ljk5OTUgMTMuMzMyOSAxNi45ODYzIDEzLjI1MjRDMTYuOTYxNCAxMy4xMDA0IDE2LjkwMjQgMTIuOTU2MyAxNi44MTI2IDEyLjgzMTJDMTYuNzY1MSAxMi43NjUxIDE2LjcwNDggMTIuNzA0OCAxNi41ODU4IDEyLjU4NThMMTYuMTk2MyAxMi4xOTYzQzE2LjA3MDYgMTIuMDcwNiAxNiAxMS45MDAxIDE2IDExLjcyMjRWOEMxNiA0LjEzNCAxMi44NjYgMC45OTk5OTEgOSAxQzUuMTM0MDEgMS4wMDAwMSAyIDQuMTM0MDEgMiA4VjExLjcyMjRDMiAxMS45MDAyIDEuOTI5MjQgMTIuMDcwNiAxLjgwMzU3IDEyLjE5NjNMMS40MTQwNiAxMi41ODU4QzEuMjk0NzYgMTIuNzA1MSAxLjIzNTA0IDEyLjc2NSAxLjE4NzUgMTIuODMxMkMxLjA5NzY2IDEyLjk1NjQgMS4wMzgxNSAxMy4xMDA0IDEuMDEzMiAxMy4yNTI0QzEgMTMuMzMyOSAxIDEzLjQxNzIgMSAxMy41ODZDMSAxMy45NzE1IDEgMTQuMTY0MiAxLjA1MjQ1IDE0LjMxOTdDMS4xNTIyNSAxNC42MTU2IDEuMzg0OCAxNC44NDggMS42ODA2NiAxNC45NDc4QzEuODM1NTYgMTUgMi4wMjcwMSAxNSAyLjQwOTU2IDE1SDYiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-position: center;
}

.button-notify {
    margin-top: 0.875rem;
    font-size: clamp(14px, 2vw, 22px);
}

form.cart .single_add_to_cart_button::before {
    content: "\e913";
    font-family: 'icomoon';
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.25rem;
    left: 0;
    z-index: 0;
    background-color: transparent;
    color: #fff;
}

.summary.entry-summary form.cart .single_add_to_cart_button:hover::before {
    color: var(--color1);
}

.summary.entry-summary form.cart .single_add_to_cart_button::after {
    content: none;
}

.button.var-btn-cart {
    width: 100%;
    background: #fff;
    color: var(--color1);
    border-color: transparent;
    margin-top: 0;
    font-size: 1rem;
    font-family: var(--main_bold);
}

.button.var-btn-cart:before {
    content: none;
}

.button.var-btn-cart i {
    width: 88px;
    display: flex;
    align-items: center;
    background: var(--color1);
    height: 40px;
    color: #fff;
    justify-content: center;
    font-size: 24px;
    margin-left: 10px;
}

/* ==========================================================================
   Rating Styles
   ========================================================================== */
.woocommerce p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
    margin-right: 1px;
    color: var(--color1);
    font-size: 19px;
}

.woocommerce .stars span {
    display: flex;
    gap: 4px;
    overflow: hidden;
}

.stars {
    margin: 0 !important;
}

.woocommerce p.stars a::before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: 'icomoon';
    text-indent: 0;
    content: "\e92b";
    transition: all 0.3s;
    color: #FFC700;
}

.woocommerce p.stars a:hover~a::before {
    content: "\e92b";
}

.woocommerce p.stars:hover a::before {
    content: "\e92c";
}

.woocommerce p.stars.selected a.active::before {
    content: "\e92c";
}

.woocommerce p.stars.selected a.active~a::before {
    content: "\e92b";
}

.woocommerce p.stars.selected a:not(.active)::before {
    content: "\e92c";
}

/* Comment form rating */
.comment-form-rating {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product-tags {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid #E2E2E2;
}

.product-tags a {
    background-color: #F5F5F5;
    color: var(--color3);
    height: 28px;
    padding: 0 26.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: 0.3s;
}

.product-tags a:hover {
    border: 1px solid var(--color1);
    color: var(--color1);
    background-color: transparent;
}

.sidebar-single-proinfo .product-avg-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-single-proinfo .product-avg-rate {
    color: var(--color2);
    font-size: 14px;
    display: flex;
    align-items: self-end;
    flex-direction: row-reverse;
    gap: 5px;
    line-height: 1;
}

.sidebar-single-proinfo .product-avg-rate::before {
    content: '\e92b';
    font-family: "icomoon";
    color: var(--color2);
    width: 20px;
    height: 18px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Social Sharing and Copy Button
   ========================================================================== */
.socials-share {
    display: flex;
    align-items: center;
    gap: 9px;
}

.socials-share a {
    width: 26px;
    height: 26px;
    font-size: 1.125rem;
    background-color: #EFE6C2;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color3);
}

.copy-btn {
    cursor: pointer;
    position: relative;
    width: 26px;
    height: 26px;
    font-size: 1.125rem;
    background-color: #EFE6C2;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color3);
}


.socials-share a:hover {
    background-color: var(--color2);
    color: #fff;
}

.copy-btn .tooltip-url {
    position: absolute;
    box-shadow: 0 1px 7px rgba(67, 43, 179, 0.1);
    background: var(--color2);
    padding: 4px 5px;
    bottom: 115%;
    min-width: 65px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    white-space: nowrap;
    font-size: 14px;
    direction: ltr;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.copy-btn:hover .tooltip-url {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Sticky Add to Cart (Mobile)
   ========================================================================== */
.mobile-sticky-addcard {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 0.5rem 1rem;
    z-index: 10;
    box-shadow: 0px -4px 24px 0px #C3C3C34D;
}

.mobile-sticky-addcard .product-price .stock.in-stock {
    display: none;
}

.mobile-sticky-addcard form.cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-sticky-addcard form.cart .single_add_to_cart_button {
    background: var(--color1);
    color: #fff;
    font-size: 0;
    height: 40px;
    margin-top: 0;
    width: 90px;
}

.mobile-sticky-addcard form.cart .quantity {
    width: 90px;
    height: 40px;
}

.mobile-sticky-addcard .product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    margin-bottom: 0;
    padding: 0;
}

/* ==========================================================================
   Add to Cart Message
   ========================================================================== */

.woocommerce-notices-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    z-index: 1000;
}


.woocommerce-notices-wrapper.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.woocommerce-notices-wrapper>* {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 3.5rem 1rem 2rem !important;
    text-align: center !important;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0;
    opacity: 0;
    transform: translate(-50%, -60%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: none !important;
}

.woocommerce-notices-wrapper.active>* {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.woocommerce-notices-wrapper .button {
    width: 100%;
    margin-top: 0.5rem;
    color: var(--color1);
}

.woocommerce-notices-wrapper .button:hover {
    color: var(--color2);
}

.woocommerce-notices-wrapper .button::before {
    content: none;
}

.close-notice.btn-close-sidebar:hover {
    background: var(--color1);
    color: #fff;
}

.close-notice.btn-close-sidebar {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 32px;
    height: 32px;
    background: #ED19441A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    border: none;
    color: var(--color1);
    transition: 0.3s
}

.websima-add-to-cart-message {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: 0.3s;
    text-align: left;
}

.websima-add-to-cart-message>p {
    display: flex;
    flex-direction: column;
    color: var(--color2);
    position: relative;
}

.websima-add-to-cart-message>p strong {
    font-family: inherit;
    color: #414142;
}


.websima-add-to-cart-message .widget-title.title-bundle {
    margin-top: 0;
}

/* ==========================================================================
   Miscellaneous
   ========================================================================== */
.widget-title.title-bundle {
    font-size: 1.25rem;
    color: #414142;
    margin-top: 2rem;
}

.single-product .form-submit {
    justify-self: flex-end;
    grid-column: unset;
}

#review_form>div>#reply-title {
    display: none;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
/* Small screens (max-width: 768px) */
@media screen and (max-width: 768px) {
    .product-meta .category_product span {
        padding: 0.8rem 0.5rem;
    }

    .product-hero-attribute .product-attr-len,
    .product-hero-attribute .product-hero-wei {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .woocommerce-product-attributes.shop_attributes .woocommerce-product-attributes-item {
        flex: 0 0 100%;
    }

    .cart-popup {
        display: block;
    }

    .product-video-popup span.close-btn {
        top: 12%;
    }

    .product-video-popup .popup-content {
        width: 90%;
    }

    .single-product .form-submit {
        justify-self: center;
    }


}

@media screen and (max-width: 992px) {
    .left-side .wishlist-link.wishlist-item {
        left: 1rem !important;
        top: 1rem !important;
    }

    #single-product-thumbnail .swiper-slide {
        height: auto !important;
    }

    .product-single-timer {
        justify-content: center;
    } 
    .item-thumbnail img {
        height: 100%;
        object-fit: contain;
    }
}

/* Large screens (min-width: 992px) */
@media screen and (min-width: 992px) {

    #single-product-thumbnail {
        height: 100%;
    }

    .summary.entry-summary .price {
        order: 1;
    }

    .product-main-data_inner {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-between;
    }

    #single-product-thumbnail {
        display: block;
    }

    .product-main-data_inner .left-side {
        -ms-flex: 0 0 calc(100% - 0.5rem);
        flex: 0 0 calc(100% - 0.5rem);
        max-width: calc(100% - 0.5rem);
        display: flex;
        width:100%;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    /* .product-main-data_inner .left-side {
        height: auto !important;
        max-height: 60vh;
    } */

    .left-side{
    max-width: 60%;
    margin: auto;
}
    .wrap-thumbnail-single {
        margin-top: 0.25rem;
    }
}

/* ==========================================================================
   about Section
   ========================================================================== */
.section-about img {
    width: 100%;
}

.video-poster {
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.video-btn i {
    font-size: 75px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(21.21px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 74px;
    height: 76px;
}

.section-about .about-bg {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    background-color: var(--color2);
    z-index: -1;
    background-image: url(../img/bg-pattern-desktop.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (min-width:768px) {
    .section-about .about-button {
        margin-left: 1rem;
        margin-top: 2rem;
    }

    .section-blog {
        padding: 3rem 0 0;
    }
}

@media screen and (max-width:767.99px) {
    .video .play-button {
        left: 50%;
        top: 20%;
    }

    .section-about .about-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-container {
        margin-bottom: 1.5rem;
    }

    .video-element {
        min-height: 217px;
        object-fit: cover;
    }

    .video-btn i {
        width: 40px;
        height: 40px;
        font-size: 40px;
    }

    .section-about .about-bg {
        top: 12%;
        right: 0;
        bottom: 66%;
        width: 60%;
    }

    .section-about .about-button {
        margin-top: 0.5rem;
    }
}

.left-side .wishlist-link.wishlist-item {
    position: absolute;
    z-index: 2;
    background: #fff;
    left: 2rem;
    top: 2rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color1);
}

.left-side .wishlist-link.wishlist-item.wished,
.left-side .wishlist-link.wishlist-item:hover {
    background: var(--color1);
    color: #fff;
}

.left-side .wishlist-link.wishlist-item.wished i:before {
    content: "\e923";
}

.left-side {
    position: relative;
    margin-bottom: 2rem;
}

.right-side {
    position: sticky;
    top: 50px;
}


.section-learn-more .learn-more-bg-right {
    display: none;
}

.summary .price .woocommerce-Price-amount.amount bdi:not(:where(del bdi)) {
    font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
    .section-about .about-bg-bg-left {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 6%;
        background-color: var(--color2);
        z-index: -1;
        background-image: url(../img/bg-pattern-desktop.svg);
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .section-about {
        padding: 3rem 0;
    }

    .section-about:has(.about-bg-bg-left) .section-title .top-title-heading {
        color: var(--color1);
    }

    .section-about:has(.about-bg-bg-left) .section-title .top-title-heading::after {
        background-color: var(--color1);
    }
}
.thumbs-swiper_wrap {
    position: relative;
}
@media screen and (max-width: 768px) {
    .thumbs-swiper .sw-navigation.sw-between .swiper-nav-next {
       right:0;
        top: 0;
    }
    .thumbs-swiper .sw-navigation.sw-between .swiper-nav-prev {
        bottom: 0;
        top: 0;
        left: 0;
    }

    #single-product-thumbnail {
        max-width: calc(100% - 4rem);
        margin: auto;
    }
}

#single-product-slider a.for-lightgallery {
    display: flex;
    align-items: center;
    justify-content: center;
}
#stock-notify-modal {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgb(36 36 36 / 98%);
    display: none;
}