/* CATALOGUE PRODUCT STYLE */
.product-top-category {
    line-height: 1.3;
}
.woocommerce .product .feat_img {
    aspect-ratio: 412 / 480;
    background: var(--color-white);
}
.woocommerce .product .feat_img > a > img {
    position: absolute;
    width: 100%;
    max-width: unset;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease-out;
}
.woocommerce .product:hover .feat_img > a > img {
    transform: scale(1.05);
}
/* price */
.woocommerce .product .loop-price {
    display: flex;
    align-items: center;
    gap: 8px;
}
.woocommerce .product .loop-price del {
    order: 1;
    color: var(--color-dgray);
}
.woocommerce .product .loop-price ins {
    text-decoration: none;
}
@media(min-width: 744px) {
    .woocommerce .product .loop-price {
        gap: 10px;
    }
}
@media(min-width: 1200px) {
    .woocommerce .product .loop-price {
        gap: 15px;
    }
}
/* FEATURED PRODUCT */
.woocommerce .featured_product .inner-container {
    padding: 30px;
    aspect-ratio: 1 / 1;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}
.woocommerce .featured_product .inner-container > a {
    top: 5px;
}
.woocommerce .featured_product .feat_img {
    width: 412px;
    max-width: 100%;
    margin: 0 auto;
}
.woocommerce .featured_product span.onsale.itsnew {
    top: 30px;
    right: 30px;
}
.woocommerce .featured_product .yith-add-to-wishlist-button-block {
    bottom: 30px;
    right: 30px;
}
@media(min-width: 744px) {
    .woocommerce .featured_product .inner-container {
        padding: 40px 20px 30px;
    }
    .woocommerce .featured_product .yith-add-to-wishlist-button-block {
        bottom: 30px;
        right: 30px;
    }
    .woocommerce .featured_product span.onsale.itsnew {
        top: 30px;
        right: 30px;
    }
}
@media(min-width: 992px) {
    .woocommerce .product.featured_product .feat_img {
        aspect-ratio: 412 / 350;
    }
    .woocommerce .product.featured_product .wooloop-product__title {
        min-height: 2.8em;
    }
}
@media(min-width: 1200px) {
    .woocommerce .featured_product .inner-container {
        height: 100%;
    }
    .woocommerce .featured_product .yith-add-to-wishlist-button-block {
        bottom: 30px;
        right: 30px;
    }
    .woocommerce .featured_product span.onsale.itsnew {
        top: 35px;
        right: 35px;
    }
}
/* SINGLE PRODUCT */
/* .single-product .gallery-wrapper .img-container img {
    max-width: 300px;
    max-height: 450px;
    object-fit: contain;
} */
.single-product .row-wrapper {
    height: calc(100vh - var(--pt-calc, 68px));
    height: auto;
    overflow: hidden;
}
.woocommerce div.product form.cart {
    margin-bottom: 0;
}
/* .single-product .row-wrapper .popup_gallery {
    height: calc(78vh - var(--pt-calc, 68px));
    overflow: hidden;
} */
.single-product .gallery-wrapper::-webkit-scrollbar, .single-product .content-wrapper::-webkit-scrollbar {
    width: 1px;
}
.single-product .gallery-wrapper::-webkit-scrollbar-track, .single-product .content-wrapper::-webkit-scrollbar-track {
    background: var(--color-gray);
}
.single-product .gallery-wrapper::-webkit-scrollbar-thumb, .single-product .content-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--color-dgray);
}
/* .single-product .gallery-draggable {
    overscroll-behavior: contain;
    overscroll-behavior-y: contain;
    touch-action: none;
    position: relative;
    isolation: isolate;
    contain: layout style;
} */
/* .single-product .gallery-draggable::-webkit-scrollbar {
    display: none;
} */
/* .single-product .gallery-slide {
    scroll-snap-align: start;
    min-height: 400px;
} */
/* .single-product .gallery-nav-dots {
    padding-left: calc(var(--vs-gutter-x) * 2) !important;
    position: absolute;
    width: auto;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 34px;
    z-index: 10;
}
.single-product .gallery-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gray);
    cursor: pointer;
    transition: background 0.3s ease;
}
.single-product .gallery-nav-dot.active {
    background: var(--color-black);
} */
.single-product .drag_pointer {
    width: 50px;
    height: 2px;
    background: var(--color-black);
}
/* @media (min-width: 744px) {
    .single-product .gallery-wrapper .img-container img {
        max-width: 646px;
        max-height: 730px;
    }
    .single-product .gallery-nav-dots {
        padding-left: var(--vs-gutter-x) !important;
    }
    .single-product .row-wrapper .popup_gallery {
        height: calc(85vh - var(--pt-calc, 68px));
        overflow: hidden;
    }
} */
/* @media (min-width: 1200px) {
    .single-product .gallery-wrapper .img-container img {
        max-width: 1026px;
        max-height: calc(100vh - var(--pt-calc, 68px));;
    }
    .single-product .row-wrapper {
        height: calc(100vh - var(--pt-calc, 68px));
        overflow: hidden;
    }
    .single-product .row-wrapper .popup_gallery {
        height: calc(90vh - var(--pt-calc, 68px));
        overflow: hidden;
    }
} */
.woocommerce div.product div.summary {
    float: unset;
    width: 100%;
    margin: 0;
}
/* price */
.woocommerce.single-product div.product span.price {
    display: flex;
    align-items: end;
    gap: 7px;
    color: var(--color-black);
    font-size: inherit;
    font-weight: normal;
}
.woocommerce.single-product .price del {
    order: 1;
    color: var(--color-dgray);
    font-size: 13px;
    line-height: 1.3;
}
.woocommerce.single-product div.product span.price ins {
    font-weight: normal;
    text-decoration: none;
}
.single-product a.added_to_cart {
    display: none !important;
}
/* Quantity */
.single-product .summary .woo-quantity .input-group {
    width: 290px;
    height: 50px;
    max-width: 100%;
    border: 1px solid var(--color-black);
}
.single-product .summary .woo-quantity .input-group .qty {
    background: transparent;
    border: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0;
}
@media(min-width: 744px) {
    .single-product .summary .woo-quantity .input-group {
        width: 300px;
    }
}
.btn-quant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 50px;
    padding: 0;
    border: none !important;
    background: transparent;
}
.btn-quant svg {
    width: 12px;
}
.btn-quant svg * {
    transition: fill 0.3s ease;
}
.btn-quant:hover svg * {
    fill: var(--color-blue) !important;
}
/* Variations Dropdown */
.v-dropdown {
    width: 290px;
}
.btn-variation {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 290px;
    max-width: 100%;
    height: 50px;
    padding: 0 20px;
    background: transparent;
    border: 1px solid var(--color-black);
    border-bottom: 3px solid var(--color-black) !important;
}
@media(min-width: 744px) {
    .v-dropdown {
        width: 300px;
    }
    .btn-variation {
        width: 300px;
    }
}
.btn-variation.show {
    background: var(--color-white);
    border-color: var(--color-white);
}
.v-dropdown .dropdown-menu {
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0;
    top: -2px !important;
}
.v-dropdown .dropdown-item {
    padding: 20px;
}
.v-dropdown .dropdown-item:hover {
    background: var(--color-black);
    color: var(--color-white);
}
.v-dropdown .dropdown-toggle::after {
    width: 20px;
    height: 20px;
    border: none !important;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40.66 45.74'%3E%3Cpath d='M23.22,34.73l13.31-13.4,4.13,4.22-20.37,20.19L0,25.55l4.13-4.22,13.31,13.4-.09-34.73h5.87V34.73h0Z' style='fill:%23000000;'/%3E%3C/svg%3E") no-repeat center / 11px;
}
/* Single Product Tabs */
#accordionTabs .accordion-item {
    background: transparent;
    border-bottom: 1px solid var(--color-gray);
}
#accordionTabs .accordion-button {
    padding: 0;
    color: var(--color-black);
    background: transparent;
    box-shadow: none !important;
}
.accordion-button::after, .accordion-button:not(.collapsed)::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40.66 45.74'%3E%3Cpath d='M23.22,34.73l13.31-13.4,4.13,4.22-20.37,20.19L0,25.55l4.13-4.22,13.31,13.4-.09-34.73h5.87V34.73h0Z' style='fill:%23000000;'/%3E%3C/svg%3E") no-repeat center / 11px;
}
.woocommerce table.shop_attributes,
.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td,
.woocommerce table.shop_attributes td p {
    margin: 0;
    padding-left: 0;
    border: none;
    text-transform: uppercase;
    font-size: inherit;
    font-family: var(--font-b) !important;
    font-weight: normal;
    font-style: normal;
}
/* Add to Cart */
.single-product .btn-buy {
    display: inline-block;
    text-align: center;
    width: 290px;
    min-width: 290px;
    height: 50px;
    background: var(--color-black);
    color: var(--color-white);
    font-weight: normal !important;
    transition: background 0.3s ease, color 0.3s ease;
    border: none!important;
    box-shadow: none!important;

    display: none!important;
}
.single-product .btn-buy.disabled {
    background: var(--color-dgray)!important;
    pointer-events: none!important;
}
.btn-buy.disabled .available, .btn-buy:not(.disabled) .not-available {
    display: none;
}
.single-product .btn-buy:hover {
    background: var(--color-white);
    color: var(--color-blue);
}
@media(min-width: 744px) {
    .single-product .btn-buy {
        width: 300px;
    }
}