/* Products */
.all-products-area.shop-loading {
    padding: 60px;
}
.products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.product {
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 0 10px 20px;
}
.products .product {
    width: 25%;
}
.products-full .product {
    width: 20%;
}
.products-list .product {
    width: 100%;
}
.swiper-wrapper .product {
    width: 100%!important;
    padding: 0;
}
.product-inner {
    width: 100%;
    position: relative;
    padding-bottom: 90px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.product-thumbnails {
    position: relative;
}
.product-thumbnail {
    position: relative;
    overflow: hidden;
}
.product-thumbnail img {
    background: var(--light-color);
    aspect-ratio: var(--aspect-ratio);
    object-fit: cover;
    transition: .3s all;
}
.product-inner:hover img {
    transform: scale(1.1);
}
.product-action-icons {
    position: absolute;
    top: 10px;
    right: 10px;
}
.product-action-icon {
    width: 35px;
    height: 35px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.0625rem 0.125rem rgb(2 6 23 / 15%);
    border-radius: 50%;
    background: white;
    transition: .3s all;
}
.product-details {
    padding: 15px;
}
.product-details h3 a {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    display: block;
}
.product-bottom {
    position: absolute;
    bottom: 15px;
    width: calc(100% - 30px);
}
.product-price-area .final-price {
    font-weight: 600;
    font-size: 18px;
}
.product-price-area .currency {
    font-size: 18px;
    padding-right: 5px;
}
.product-price-area .sale-price {
    text-decoration: line-through;
    font-size: 14px;
    opacity: .3;
}
.product-buttons {
    margin-top: 8px;
}
.product-button {
    padding: 0 15px;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    border: 1px solid black;
    border-radius: var(--border-radius);
    width: 100%;
    height: 33px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: .15s all;
}
.product-button:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: white;
}
.product-button:not(.loading):after {
    font-family: Feather;
    font-size: 13px;
    margin-left: 7px;
}
.product-disabled-button {
    pointer-events: none;
    border-color: #999;
    color: #999;
}
.products-list .product-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 0;
}
.products-list .product-thumbnails {
    width: 230px;
}
.products-list .product-details {
    width: calc(100% - 260px);
}
.products-list .product-bottom {
    position: relative;
    padding-top: 25px;
}
.products-list .product-details h3 {
    padding-right: 65px;
}
.products-list .product-details h3 a {
    font-size: 15px;
}
.product-price-area {
    line-height: 1.2;
}
@media (max-width: 1200px) {
    .product {
        width: 33.3%!important;
    }
}
@media (max-width: 767px) {
    .products {
        margin: 0 -5px;
    }
    .product {
        width: 50%!important;
        padding: 0 5px 20px;
    }
}
@media (max-width: 330px) {
    .product {
        width: 100%!important;
    }
}



/* Single product pages */
.single-product-area {
    padding-bottom: 60px;
}
.single-product-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px -20px;
    padding: 40px 15px;
    background: white;
}
.single-product-block {
    width: 50%;
    padding: 0 25px 20px;
    position: relative;
}
.single-product-left-details {
    position: relative;
}
@media (max-width: 850px) {
    .single-product-block {
        width: 100%;
    }
}



/* Single product header */
.single-product-header {
    position: relative;
}
.single-product-header h1 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}


/* Single product gallery */
.product-gallery-area {
    display: flex;
    justify-content: space-between;
}
.slider-css-mode {
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    position: relative;
}
.slider-css-mode .product-gallery {
    display: flex;
    overflow-x: auto;
    margin: 0 -2px;
}
.slider-css-mode .product-gallery-item {
    flex-basis: 300px;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0 2px;
    width: auto!important;
}
.gallery-thumbs {
    width: 100px;
    height: 440px;
}
.gallery-thumbs .swiper-slide {
    border: 1px solid var(--border-color);
    overflow: hidden;
    aspect-ratio: var(--aspect-ratio);
    border-radius: var(--border-radius);
}
.gallery-thumbs .swiper-slide img {
    object-fit: cover;
    cursor: pointer;
    aspect-ratio: var(--aspect-ratio);
}
.gallery-thumbs .swiper-slide-active, .gallery-thumbs .swiper-slide:hover {
    border-color: #666;
}
.gallery-top-area {
    width: calc(100% - 110px);
    position: relative;
}
.gallery-top {
    height: 550px;
}
.gallery-top .swiper-slide img {
    object-fit: cover;
    height: 100%;
}
.swiper-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    font-size: 28px;
    transform: translateY(-50%);
    cursor: pointer;
}
.swiper-gallery-prev {
    left: 10px;
}
.swiper-gallery-next {
    right: 10px;
}
.swiper-gallery-bullets {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.swiper-gallery-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: white;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    opacity: .5;
    cursor: pointer;
    transition: .3s all;
}
.swiper-gallery-bullets .swiper-pagination-bullet:hover {
    opacity: 1;
}
.swiper-gallery-bullets .swiper-pagination-bullet-active {
    opacity: 1;
}
.gallery-top {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}
@media (max-width: 767px) {
    .single-product-gallery {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
        left: 50%;
        right: 50%;
        position: relative;
    }
    .gallery-thumbs {
        display: none;
    }
    .gallery-top-area {
        width: 100%;
    }
    .swiper-gallery-nav, .swiper-gallery-bullets {
        display: none;
    }
    .product-gallery {
        transform: none!important;
    }
}
@media (min-width: 768px) {
    .slider-css-mode {
        display: none;
    }
}


/* Single product ratings and code */
.single-product-rating-code {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
    gap: 10px;
}
.product-ratings-block {
    margin-right: 30px;
}
.product-ratings-block a {
    display: flex;
    position: relative;
    gap: 10px;
}
.product-ratings {
    display: flex;
    gap: 2px;
}
.product-ratings-default {
    color: #ddd;
}
.product-ratings-active {
    position: absolute;
    top: 0;
    overflow: hidden;
}
.product-ratings-values {
    color: var(--text-color);
    border-bottom: 1px dashed #999;
    white-space: nowrap;
    transition: .15s all;
}
.product-ratings-values:hover {
    color: black;
}
.single-product-code {
    display: flex;
    flex-wrap: wrap;
}
.single-product-code-title {
    color: var(--text-color);
    padding-right: 10px;
}



/* Single product excerpt */
.single-product-excerpt {
    margin-bottom: 15px;
    margin-top: 30px;
    color: #383838;
}
.excerpt-read-more {
    font-weight: 600;
    color: var(--main-color);
    margin-left: 5px;
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-block;
}




/* Single product badges */
.single-product-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    font-weight: 600;
}
.single-product-badge {
    color: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
}
.single-product-badge-sale {
    background: red;
}



/* Single product features */
.product-features {
    margin-bottom: 25px;
}
.product-feature {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #393939;
}
.product-feature-icon {
    width: 26px;
    height: 26px;
    background: var(--extra-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.product-feature:not(:last-child) {
    margin-bottom: 3px;
}



/* Single product quantity + buttons */
.single-quantity {
    display: flex;
    align-items: center;
    border: 1px solid black;
    border-radius: var(--border-radius);
    width: 100px;
    margin-right: 15px;
    background: white;
}
.single-quantity-arrow {
    font-size: 18px;
    font-weight: 400;
    width: 30px;
    text-align: center;
    cursor: pointer;
    height: 100%;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-quantity input {
    border: 0;
    text-align: center;
    box-shadow: none;
    width: 40px;
    height: 42px;
}
.single-add-to-cart-area button {
    height: 44px;
}
.single-add-to-cart-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.single-product-group-buttons {
    display: flex;
    flex-wrap: wrap;
    font-weight: 600;
}
.add-to-cart-button:not(.loading):after {
    content: "\e9ca";
}
.view-product-button:not(.loading):after {
    content: "\e912";
}
.disabled-shop-button {
    opacity: .5;
}



/* Single product extra buttons */
.single-product-extra-buttons {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
}
.single-product-extra-link {
    cursor: pointer;
    display: flex;
    white-space: nowrap;
    gap: 10px;
    font-weight: 500;
    margin-right: 40px;
    transition: .15s all;
}
.single-product-extra-link:hover {
    opacity: .5;
}




/* Dynamic product details */
.dynamic-product-data-area {
    margin-bottom: 30px;
}
.dynamic-product-price {
    font-size: 40px;
    line-height: 1;
}
.dynamic-product-data:not(:empty) {
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 20px;
}


/* Attributes */
#variation-form {
    margin-bottom: 30px;
}
.attr-area {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.attr-area strong {
    width: 70px;
    display: inline-block;
    vertical-align: middle;
}
.attr-parameters {
    width: calc(100% - 70px);
}
.attr-values {
    display: none;
}
.attr-value {
    border: 1px solid #ddd;
    width: 45px;
    height: 37px;
    line-height: 35px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 5px;
    color: #616161;
    padding-left: 0!important;
}
.attr-value[data-attr="attr-color-image"] {
    width: 80px;
    height: 100px;
    border-radius: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}
.label-color[data-attr="attr-color-image"]:before {
    background-size: contain;
    background-repeat: no-repeat;
}
.attr-area input {
    display: none;
}
.attr-area input:checked + label {
    border-color: black;
    color: black;
}
.attr-area-color label {
    font-size: 0;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px var(--border-color);
    border: 4px solid white;
    position: relative;
}
.attr-area-color input:checked + label, .simple-product-attr-checked {
    border-color: white!important;
    -webkit-box-shadow: 0 0 0 1px black!important;
            box-shadow: 0 0 0 1px black!important;
}
.attr-area-color label span {
    font-size: 12px;
    color: white;
    background: black;
    display: block;
    position: absolute;
    bottom: calc(100% + 7px);
    left: 50%;
    transform: translateX(-50%);
    line-height: 1.5;
    padding: 2px 8px;
    z-index: 100;
    opacity: 0;
    white-space: nowrap;
    transition: .15s all;
}
.attr-area-color label span:before {
    content: '';
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.attr-area-color label:hover span {
    opacity: 1;
}
.out-of-attr {
    position: relative;
    opacity: .7;
}
.out-of-attr:before {
    content: '';
    background-image: url(/uploads/ecommerce/cancel-x.svg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    opacity: .5;
}


/* Single prices */
.single-variation-prices {
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--second-color);
}
.price-not-detected {
    font-size: 17px;
    color: black;
}
.single-product-right-details .product-price-area {
    margin-bottom: 20px;
}
.single-product-right-details .final-price {
    font-size: 30px;
}
.single-product-right-details .sale-price, .single-sale-price {
    text-decoration: line-through;
    font-size: 22px;
    color: var(--text-color);
}
.single-product-right-details .currency, .single-currency {
    padding-right: 10px;
    font-size: 22px;
}



/* Single product tabs */
.single-product-accordions {
    margin-bottom: 30px;
}
.single-product-accordions .master-accordion-content > div strong {
    color: black;
} 


/* Single product share */
.single-product-block .master-social-share-area {
    margin-bottom: 0;
}



/* Product content wishlist */
.add-favorite-icon {
    width: 30px;
    height: 30px;
    line-height: 30px!important;
    background: white;
    border-radius: 50%;
}
.non-clickable {
    pointer-events: none;
}



/* Product content colors */
.product-colors {
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.product-color {
    display: inline-block;
}
.product-color-label {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid white;
    margin-right: 5px;
    box-shadow: none;
    box-shadow: 0 0 0 1px #ddd;
}
.current-product-color-label {
    box-shadow: 0 0 0 1px #000;
}
.product .product-color-label {
    width: 20px;
    height: 20px;
    border: 3px solid white;
}



/* Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
}
.product-badge {
    width: 50px;
    height: 25px;
    text-align: center;
    color: white;
    margin-bottom: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: var(--border-radius);
}
.out-of-stock-badge {
    background: #1f1f1f;
}
.sale-badge {
    background: red;
}



/* Cart table*/
.cart-area {
    position: relative;
}
.cart-notifications:not(:empty) {
    margin-bottom: 20px;
}
.cart-notifications .alert:not(:last-child) {
    margin-bottom: 15px;
}
.cart-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cart-block-1 {
    width: calc(100% - 450px);
    padding: 40px;
    background: white;
}
.cart-block-2 {
    width: 350px;
    max-width: 100%;
}
.cart-tbody {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.cart-tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding: 15px 0;
}
.cart-td-1 {
    width: 130px;
}
.cart-td-2 {
    width: calc(100% - 160px);
    position: relative;
}
.cart-image {
    background: var(--light-color);
    display: block;
}
.cart-image img {
    aspect-ratio: var(--aspect-ratio);
    object-fit: cover;
    border-radius: var(--border-radius);
}
.cart-variations:not(:empty) {
    font-size: 14px;
    margin: 5px 0;
    color: var(--text-color);
}
.cart-td-top {
    display: flex;
    justify-content: space-between;
}
.cart-product-title {
    padding-right: 30px;
}
.cart-product-title a {
    display: table;
    line-height: 1.4;
    color: black;
}
.cart-price {
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}
.cart-td-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    margin-left: -7px;
}
.cart-quantity {
    display: flex;
    align-items: center;
}
.cart-quantity-input input {
    border: 1px solid var(--border-color);
    height: 30px;
    width: 50px;
    text-align: center;
}
.cart-quantity-arrow {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 17px;
    cursor: pointer;
}
.coupon-name {
    font-weight: 600;
    color: var(--main-color);
}
.remove-from-cart {
    color: #d41d1d;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 2px;
}
.cart-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 55%);
    padding: 100px 0;
    z-index: 1;
    display: none;
}
@media (max-width: 960px) {
    .cart-block-1 {
        width: 100%;
        margin-bottom: 40px;
    }
    .cart-block-2 {
        width: 100%;
    }
    .cart-td-1 {
        width: 80px;
    }
    .cart-td-2 {
        width: calc(100% - 100px);
        position: relative;
    }
}
@media (max-width: 767px) {
    .cart-block-1 {
        padding: 40px 20px;
    }
}



/* Cart reports */
.cart-details h2 {
    font-size: 20px;
    margin-bottom: 15px;
}
.cart-reports {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    font-size: 16px;
}
.cart-final-report {
    font-weight: 600;
}
.cart-final-report .cart-report-second {
    font-size: 20px;
}
.cart-details-price-area {
    margin-bottom: 30px;
}
.cart-button {
    margin-bottom: 10px;
}
.cart-whatsapp-button:before {
    content: '\f232';
    font-family: 'Font Awesome 6 Brands';
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 10px;
}
.cart-return-to-shop {
    display: table;
    margin-top: 15px;
    color: black;
}
.cart-return-to-shop:before {
    content: '\e910';
    font-family: Feather;
    margin-right: 10px;
    font-size: 18px;
    display: inline-block;
    transform: translateY(2px);
}
.remove-coupon {
    width: 20px;
    height: 20px;
    background: red;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: 5px;
    cursor: pointer;
}
@media (min-width: 600px) and (max-width: 960px) {
    .cart-details {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .cart-main-action, .cart-call-me {
        width: 48%;
    }
    .cart-main-action {
        order: 2;
    }
}



/* Checkouts */
.checkout-notifications:not(:empty) {
    margin-bottom: 30px;
}
.checkout-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.checkout-1 {
    width: 60%;
    background: white;
    padding: 40px;
}
.checkout-2 {
    width: 33%;
}
.checkout-page .cart-canvas-products {
    padding: 0;
    height: auto;
    overflow: hidden;
}
.checkout-products a {
    pointer-events: none;
}
.checkout-bottom {
    margin-top: 25px;
}
.checkout-price-blocks {
    display: flex;
    justify-content: space-between;
    line-height: 1;
    align-items: center;
    border-top: 1px solid #c9c9ca;
    padding: 15px 0;
}
.checkout-final-price div:last-child {
    font-size: 24px;
}
.checkout-final-price {
    font-weight: 600;
    font-size: 17px;
    align-items: flex-end;
}
.checkout-note {
    margin-bottom: 30px;
}
.payment-method:not(:last-child) {
    margin-bottom: 5px;
}
.checkout-submit {
    margin-top: 25px;
}
.payment-method-card label {
    display: flex !important;
    gap: 15px;
    font-weight: 500;
}
.payment-method-card label img {
    width: 34px;
    border: 1px solid var(--border-color);
    padding: 5px;
    border-radius: var(--border-radius);
}
@media (max-width: 1000px) {
    .checkout-block {
        width: 100%;
    }
    .checkout-1 {
        order: 2;
    }
    .checkout-2 {
        order: 1;
        margin-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .checkout-1 {
        padding: 40px 20px;
    }
}



/* Order detailss */
#customer-order-area {
    margin-bottom: 30px;
}
.order-success-status-icon {
    width: 100px;
    margin: 0 auto 30px;
}
.order-status {
    margin-bottom: 30px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}
.order-declined {
    color: red;
}
.thank-you {
    color: #1bb01b;
}
.order-details-heading {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px 0 0;
    margin-bottom: 40px;
}
.order-details-block {
    width: 20%;
    padding-bottom: 10px;
}
.order-details-first-heading {
    margin-bottom: 3px;
}
.customer-order-table {
    margin-bottom: 40px;
}
.customer-order-table table {
    margin: 0;
}
.customer-website-note {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}
.order-table-image {
    width: 100px;
}
.order-table-image img {
    aspect-ratio: var(--aspect-ratio);
    object-fit: cover;
    border-radius: var(--border-radius);
}
.order-product-quantity {
    color: #999;
}
.order-table-price {
    white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 900px) {
    .order-details-block {
        width: 33.3%;
    }
}
@media (min-width: 501px) and (max-width: 767px) {
    .order-details-block {
        width: 50%;
    }
}
@media (max-width: 500px) {
    .order-details-block {
        width: 100%;
    }
}


/* Uncompleted payment */
.complete-payment-blocks {
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}
.cp-first {
    font-size: 18px;
    margin-bottom: 15px;
}


/* Canvas sidebars */
.canvas-product {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 20px 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.disabled-canvas-product {
    opacity: .25;
}
.canvas-product:last-child {
    border-bottom: 0;
}
.canvas-product-image {
    width: 90px;
}
.canvas-product-image a {
    background: var(--light-color);
    display: block;
}
.canvas-product-image img {
    aspect-ratio: var(--aspect-ratio);
    object-fit: cover;
    border-radius: var(--border-radius);
}
.canvas-product-details {
    width: calc(100% - 90px);
    padding-left: 15px;
}
.canvas-product-title {
    line-height: 1.4;
    margin-bottom: 10px;
}
.canvas-product-title a {
    color: black;
}
.canvas-product-variation {
    color: var(--text-color);
    margin-top: 5px;
}
.canvas-product-variation .variation-comma:first-child {
    display: none;
} 
.remove-canvas-product {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top: -5px;
    right: -20px;
    text-align: center;
    font-size: 24px;
    font-weight: 100;
    cursor: pointer;
    color: #ccc;
}
.canvas-variation-details {
    color: var(--text-color);
}
.canvas-variation-details:last-child .canvas-variation-comma {
    display: none;
}
.canvas-product-qauntity {
    font-size: 14px;
    color: #999;
}
.cart-canvas-price-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 17px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
    line-height: 1;
}
.cart-canvas-footer a {
    margin-bottom: 10px;
    text-transform: uppercase;
}
.cart-canvas-cart {
    background: white;
    color: black;
}
.cart-canvas-cart:hover {
    background: var(--main-color);
    color: white;
}
.cart-canvas-footer-area {
    position: absolute;
    bottom: 0;
    height: 200px;
    background: white;
    padding: 0 15px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}
.cart-canvas-products {
    height: calc(100% - 200px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 15px;
    min-height: --webkit-fill-avaliable;
}


/* Quick buys */
.quick-canvas-sidebar .cart-canvas-body {
    padding: 25px;
}
.quick-canvas-sidebar img {
    width: 200px;
    margin: 0 auto 30px;
}
.quick-canvas-sidebar h2 {
    text-align: center;
    margin-bottom: 30px;
}
#quick button {
    width: 100%;
    margin-top: 5px;
    text-transform: uppercase;
    justify-content: center;
}
.quick-canvas-sidebar .cart-canvas-body {
    overflow-y: auto;
}
.quick-success-message:before {
    content: '\f058';
    font-family: FontAwesome;
    display: block;
    text-align: center;
    font-size: 32px;
    margin-bottom: 5px;
    color: #06bb06;
}
.quick-success-message {
    font-weight: 600;
    text-align: center;
    font-size: 17px;
    display: none;
}



/* Empty canvas */
.empty-canvas-area {
    text-align: center;
    margin: 40px 0;
}
.empty-canvas-icon:before {
    font-size: 70px;
    color: #ddd;
    line-height: 1.4;
}
.empty-canvas-title {
    font-size: 22px;
    text-transform: uppercase;
    margin: 15px 0;
}
.empty-canvas-button a {
    display: inline-block;
    border-bottom: 2px solid #ddd;
}



/* Color attributes */
.color-attribute {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin-right: 5px;
}
.color-all-select .color-attribute {
    background:
	-o-linear-gradient(
		cyan,
		transparent
	),
	-o-linear-gradient(
		135deg,
		magenta,
		transparent
	),
	-o-linear-gradient(
		45deg,
		yellow,
		transparent
	);
    background:
	linear-gradient(
		cyan,
		transparent
	),
	linear-gradient(
		-45deg,
		magenta,
		transparent
	),
	linear-gradient(
		45deg,
		yellow,
		transparent
	);
    background-blend-mode: multiply;
}
.color-select input {
    display: none;
}
.color-select label {
    display: inline-block;
    vertical-align: middle;
    color: var(--main-color);
    font-size: 17px;
    cursor: pointer;
    position: relative;
}
.color-select label:after {
    content: '';
    display: block;
    width: 0;
    opacity: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    background: var(--main-color);
    transition: .3s all;
}
.color-select label:hover:after, .color-select input:checked + label:after {
    width: 100%;
    opacity: 1;
}
.color-select {
    margin-bottom: 10px;
}



/* Mobile shop toolbars */
body {
    padding-bottom: 52px;
}
.mobile-shop-toolbar-area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    transform: translateY(0);
    transition: .4s all;
}
.mobile-shop-toolbar {
    display: flex;
    align-items: center;
    width: 100%;
    border-top: 1px solid rgba(240,242,245,1);
    background: white;
}
.toolbar-element {
    width: 20%;
    height: 52px;
}
.toolbar-element-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 26px;
    line-height: 0;
}
.toolbar-element-icon {
    position: relative;
    color: black;
}
.shop-toolbar-notify {
    position: absolute;
    top: 0;
    right: -5px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    background: var(--main-color);
    border-radius: 50%;
    color: white;
    font-weight: 600;
    font-size: 10px;
}
.without-shop-toolbar .mobile-shop-toolbar-area {
    transform: translateY(52px);
}
.without-shop-toolbar {
    padding: 0;
}
.toolbar-shop-whatsapp .fa-brands {
    background: #00ab00;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
    .mobile-shop-toolbar-area {
        display: none;
    }
}



/* Sale countdowns */
.cool-countdown {
    margin-top: 10px;
}
.cool-countdown .countdown {
    list-style-type: none;
    padding: 0 0 10px;
    margin: 0;
    border-collapse: separate;
    display: flex;
    flex-wrap: wrap;
}
.cool-countdown .countdown li {
    font-size: 20px;
    display: table-cell;
    position: relative;
    width: 60px;
    padding-bottom: 5px;
    margin-right: 5px;
    background: #eee;
    text-align: center;
    border-radius: 5px;
}
.cool-countdown .countdown li span.countdown-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    width: 100%;
    color: #000;
    margin-top: -8px;
}
.cool-countdown .countdown li span.countdown-number {
    display: block;
    font-size: 26px;
    width: 100%;
    border-bottom: 0;
}
@media (min-width: 321px) and (max-width: 500px) {
    .cool-countdown .countdown li span.countdown-number {
        font-size: 30px;
    }
    .cool-countdown .countdown li span.countdown-label {
        margin-top: -5px;
    }
    .cool-countdown .countdown li:before {
        font-size: 20px;
    }
}
@media (max-width: 320px) {
    .cool-countdown .countdown li span.countdown-number {
        font-size: 22px;
    }
    .cool-countdown .countdown li span.countdown-label {
        font-size: 11px;
    }
    .cool-countdown .countdown li:before {
        font-size: 20px;
    }
}



/* Ratings */
.form-rating {
    margin-bottom: 5px;
}
.form-element-rating {
    display: inline-block;
    vertical-align: middle;
}
.rating {
    border: none;
    width: 100%;
    padding: 0;
}
.rating > input { 
    display: none;
} 
.rating > label:before { 
    margin: 0 2px;
    font-size: 1.25em;
    font-family: 'FontAwesome';
    display: inline-block;
    content: "\f005";
}
.rating > .half:before { 
    content: "\f089";
    position: absolute;
}
.rating > label { 
    color: #ddd; 
    float: right; 
    cursor: pointer;
	width: auto;
}
.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700;  } /* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85;  } 



/* Quick buys */
.quick-buy-blocks {
    display: flex;
    flex-wrap: wrap;
}
.quick-buy-first {
    width: 300px;
    text-align: center;
}
.quick-buy-second {
    width: calc(100% - 300px);
    padding-left: 50px;
}
.quick-buy-price-item {
    display: inline-block;
    padding-right: 10px;
}
.quick-buy-price {
    font-size: 22px;
    color: var(--main-color);
}
.quick-buy-sale {
    color: #999;
    text-decoration: line-through;
}
.quick-buy-block button {
    float: right;
}
.required-star {
    color: red;
    padding-left: 3px;
}



/* Product sidebars */
.product-sidebar-widget {
    margin-bottom: 40px;
}
.product-sidebar-title {
    font-size: 22px;
    color: var(--main-color);
    margin-bottom: 30px;
}
.product-sidebar-content input {
    display: none;
}
.product-sidebar-content label {
    color: var(--main-color);
    font-size: 17px;
    display: table;
    margin-bottom: 5px;
    cursor: pointer;
    position: relative;
}
.product-sidebar-content label:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    opacity: 0;
    height: 2px;
    transition: .3s all;
    background: var(--main-color);
}
.product-sidebar-content label:hover:after, .product-sidebar-content input:checked + label:after {
    width: 100%;
    opacity: 1;
}
.product-price-filter {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.product-price-element {
    width: 50%;
    padding: 0 5px;
}
.product-price-element input {
    width: 100%;
    border: 1px solid #ddd;
    height: 30px;
}
.product-sidebar-widget input[type="radio"]:checked + label:after {
    width: 100%;
}



/* Load more products */
.load-more-products-area {
    text-align: center;
    margin-top: 40px;
}
.products-count-text {
    color: #767676;
}
.products-count-line {
    width: 300px;
    height: 2px;
    background: #ddd;
    margin: 25px auto 35px;
    position: relative;
}
.products-count-progress {
    height: 2px;
    background: #1f1f1f;
}
.load-products-button {
    height: 50px;
    margin: 0 auto;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: 1px solid #1f1f1f;
    padding: 0 25px;
    font-size: 15px;
    background: white;
    cursor: pointer;
}
.load-products-button:hover {
    background: var(--main-color);
    color: white;
}



/* Single product about */
.single-product-about-area {
    padding-bottom: 40px;
    scroll-margin-top: 120px;
}



/* Single product comments */
.single-product-comments-area {
    padding-bottom: 60px;
    scroll-margin-top: 120px;
}
.sp-comment-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px -40px;
}
.sp-comment-block {
    padding: 0 25px 40px;
    width: 50%;
}
.comments-stars-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: var(--light-color);
    padding: 20px 20px 20px 0;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
}
.comments-stars-1 {
    width: 120px;
}
.comments-stars-2 {
    width: calc(100% - 120px);
}
.comments-stars-line {
    display: flex;
    align-items: center;
}
.comment-icon {
    text-align: center;
    font-size: 32px;
    color: orange;
}
.comment-icon-details {
    text-align: center;
}
.comment-rating-value {
    white-space: nowrap;
    width: 70px;
    font-weight: 600;
}
.comment-rating-value i {
    color: orange;
    padding-right: 3px;
}
.comment-line {
    width: 90%;
    height: 4px;
    background: #ddd;
    position: relative;
}
.comment-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: orange;
}
.comment-rating-count {
    width: 90px;
    text-align: right;
    white-space: nowrap;
}
.comment-final-rating {
    font-weight: 600;
    font-size: 22px;
}
.comment {
    margin-bottom: 0;
}
.comment-header {
    margin-bottom: 10px;
}
.date.float-right {
    font-size: 14px;
}
.comment-name {
    color: #767676;
}
.comment-author {
    display: none;
}
.comment-block {
    padding: 10px 15px;
    border-left: 0;
    border-right: 0;
    padding: 15px 0;
    border-top: 0;
}
@media (max-width: 767px) {
    .sp-comment-block {
        width: 100%;
    }
}



/* Account orders */
.account-order-details {
    margin-bottom: 20px;
}
.account-order-headings {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: var(--border-radius);
}
.account-order-heading {
    width: 140px;
    padding: 10px 20px;
    flex: 1;
}
.order-number {
    width: 120px;
}
.account-order-buttons-item {
    flex-shrink: 0;
    padding: 10px 20px;
}
.account-order-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.account-order-button {
    background: white;
    display: flex;
    text-align: center;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 1px 2px #ddd6d6;
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 0 15px;
    cursor: pointer;
    transition: .15s all;
}
.account-order-button:hover {
    background: var(--main-color);
    color: white;
}
.account-repeat-button {
    background: var(--second-color);
}
.aoh-1 {
    text-transform: uppercase;
    font-size: 12px;
    color: #767676;
}
.aoh-2 {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 5px;
}
.account-order-price .aoh-2 {
    white-space: nowrap;
}
.account-order-details-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}



/* Mobile menus */
.menu-item.menu-extra-mobile a {
    background: #f5f5f5;
    border-bottom: 1px solid #efefef;
}
.menu-item.menu-extra-mobile a:hover {
    background: #eee;
}



/* Single product stocks */
.single-product-stock {
    margin-bottom: 10px;
    color: var(--extra-color);
    font-weight: 600;
}
.single-out-of-stock {
    display: table;
    background: #1f1f1f;
    color: white;
    padding: 8px 15px;
    line-height: 1;
    border-radius: var(--border-radius);
}



/* All products */
.all-products-blocks {
    display: flex;
    flex-wrap: wrap;
}
.product-filters {
    width: 250px;
}
.product-area {
    width: calc(100% - 250px);
    padding-left: 30px;
}
@media (min-width: 960px) {
    .product-filters .canvas-header {
        display: none;
    }
}
@media (max-width: 960px) {
    .product-filters {
        width: 350px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1000;
        background: white;
        transform: translate3d(-100%,0,0);
        transition: .4s all;
    }
    .active-product-filters {
        transform: none;
    }
    .product-area {
        width: 100%;
        padding-left: 0;
    }
    .filter-product-blocks {
        padding: 30px 30px 110px;
        overflow-y: auto;
        height: calc(100vh - 120px);
    }
}
@media (max-width: 500px) {
    .product-filters {
        width: 85%;
    }
}


/* Filter */
.filter-product-block {
    margin-bottom: 30px;
    width: 100%;
}
.filter-product-heading {
    margin-bottom: 10px;
    font-weight: 600;
}
.filter-product-content {
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}
.filter-toggle-children {
    position: absolute;
    top: 3px;
    right: 0;
    background: var(--main-color);
    color: white;
    width: 20px;
    height: 20px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
    border-radius: var(--border-radius);
}
.filter-toggle-children .fe {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: .4s all;
}
.open-filter-toggle-children .fe {
    transform: rotate(180deg);
}
.filter-product-children {
    margin: 10px 0 10px 25px;
    display: none;
}
.form-filter-item:not(:last-child) {
    margin-bottom: 4px;
}
.active-filter-main {
    z-index: 100;
    position: relative;
}
.filter-prices {
    position: relative;
}
@media (min-width: 960px) {
    .filter-prices:before {
        content: '-';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: 600;
    }
}
.filter-price input {
    height: 40px;
    border-color: #bbb;
}
.filter-price label {
    font-weight: 400;
    color: var(--text-color);
    font-size: 13px;
}



/* Filter color */
.filter-color-block {
    display: inline-block;
    position: relative;
    width: 100%;
}
.filter-color-block .filter-product-content {
    overflow: unset;
}
.filter-color-block .form-filter-item {
    display: inline-block;
    padding: 0 4px 12px 0;
}
.filter-color-block label {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid white;
    position: relative;
    padding: 0!important;
    font-size: 0;
}
.filter-color-block label:before {
    content: '';
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: .15s all;
}
.filter-color-block label:hover:before, .filter-color-block input:checked + label:before {
    border-color: black;
}
.filter-color-block input {
    display: none;
}
.filter-tooltip {
    background: black;
    font-size: 12px;
    color: white;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    padding: 1px 7px;
    margin-left: -2px;
    display: none;
    border-radius: 5px;
    transition: .15s all;
}
.filter-color-block .form-filter-item:hover .filter-tooltip {
    display: block;
}
.filter-tooltip:before {
    content: '';
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}


/* Shop top area */
.shop-tools-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.shop-sort-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}
.shop-tool-block {
    position: relative;
    z-index: 1;
}
.shop-tool-1 {
    display: none;
}
.shop-tool-button {
    display: none;
}
.shop-sort {
    padding: 0 12px;
}
.shop-sort input {
    display: none;
}
.shop-sort label {
    color: var(--text-color);
    padding-left: 0!important;
}
.shop-sort label:hover {
    color: black;
}
.shop-sort input:checked + label {
    color: black;
    font-weight: 600;
}
.shop-sort input:checked + label:before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--second-color);
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
}
.shop-grid {
    display: flex;
    align-items: center;
    gap: 5px;
}
.shop-grid-element {
    width: 34px;
    padding: 8px;
    border-radius: var(--border-radius);
    opacity: .4;
    cursor: pointer;
    transition: .15s all;
}
.active-shop-grid, .shop-grid-element:hover {
    background: #ffffff;
    opacity: 1;
}
.shop-tool-1 .fe {
    margin-right: 5px;
}
.shop-tool-2 .fe {
    margin-left: 5px;
}
.active-main {
    position: relative;
    z-index: 100;
}
@media (max-width: 960px) {
    .shop-tool-1, .shop-tool-button {
        display: block;
    }
    .shop-tool-3 {
        display: none;
    }
    .shop-tool-2 .shop-tool-button {
        text-align: right;
    }
    .shop-sort-blocks {
        padding: 5px 0;
        margin: 0;
        width: 150px;
        border: 1px solid #ddd;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        background: white;
        display: none;
    }
    .shop-sort {
        padding: 5px 15px;
    }
}



/* Selected filter */
.selected-filter-attr-area {
    margin-bottom: 30px;
}
.selected-filter-attr {
    display: inline-block;
    background: #f5f5f5;
    padding: 5px 10px 5px 15px;
    margin-right: 10px;
}
.remove-filter-tag {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    cursor: pointer;
}



/* Combined products */
.combined-products-area {
    padding-bottom: 50px;
}



/* Coupon */
.cart-coupon-form-area {
    margin-bottom: 30px;
}
.coupon-form-blocks {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.coupon-form-button {
    width: 120px;
}
.coupon-form-input {
    width: calc(100% - 130px);
}



/* Cool alert */
#alert:empty {
    display: none;
}
#alert:not(:empty) {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    background: #ffbaba;
    border-radius: var(--border-radius);
    padding: 15px 30px;
    font-weight: 600;
    border: 1px solid #ed7777;
}