/* Single product pages */
.single-product-area {
    background: white;
    padding: 40px 15px;
}
.single-product-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -25px -20px;
}
.single-product-block {
    width: 50%;
    padding: 0 25px 20px;
    position: relative;
}
.single-product-left-details {
    position: relative;
    overflow: hidden;
}
.single-product-left-block {
    width: 350px;
    margin: 0 auto;
    max-width: 100%;
}
.single-product-image img {
    max-height: 500px;
    width: auto;
    margin: 0 auto;
}
.price-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
    gap: 20px;
    font-size: 20px;
}
.price-block {
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-value {
    color: var(--main-color);
    font-size: 24px;
}
@media (max-width: 1200px) {
    .single-product-left-block {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .single-product-area {
        padding: 0;
    }
    .single-product-block {
        width: 100%;
    }
    .single-product-image img {
        max-height: 350px;
    }
}



/* Single product header */
.single-product-header {
    position: relative;
    margin-bottom: 20px;
}
.single-product-header h1 {
    font-size: 26px;
    font-weight: 500;
    color: black;
}
@media (max-width: 767px) {
    .single-product-header h1 {
        font-size: 20px;
    }
}


/* Single product gallery */
.gallery-thumbs .swiper-slide {
    border: 1px solid #ddd;
    overflow: hidden;
}
.gallery-thumbs .swiper-slide img {
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    aspect-ratio: 1;
    object-fit: contain;
}
.gallery-thumbs .swiper-slide-active, .gallery-thumbs .swiper-slide:hover {
    border-color: #666;
}
.gallery-top .swiper-slide img {
    object-fit: contain;
    height: 100%;
}
.swiper-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    font-size: 28px;
    transform: translateY(-50%);
    cursor: pointer;
}
.swiper-gallery-next {
    right: 0;
}
.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;
}
.product-gallery-item img {
    aspect-ratio: 1;
    object-fit: contain;
}
@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;
    }
}


/* Single product ratings */
.product-ratings {
    font-size: 13px;
    line-height: 1;
    margin-bottom: 25px;
}
.product-ratings i {
    font-size: 12px;
    margin-right: 5px;
    color: orange;
}
.product-ratings a {
    display: inline-block;
    border-bottom: 1px solid #888;
    padding-bottom: 5px;
}


/* Single product badges */
.single-product-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}
.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 quantity + buttons */
.single-add-to-cart-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 25px;
}
.single-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 15px;
    margin-bottom: 5px;
}
.quantity-input input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
    height: var(--form-height);
    font-size: 18px;
    border-radius: 0;
}
.single-quantity-arrow-block {
    width: 25px;
    height: calc(var(--form-height) / 2);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex!important;
    font-size: 20px;
    cursor: pointer;
    background: var(--border-color);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.single-product-group-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-weight: 600;
}
.single-product-group-buttons > div {
    margin-right: 15px;
    margin-bottom: 5px;
}
.product-content-button {
    background: var(--colored-color);
    padding: 5px 15px;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
    color: white;
    width: 100%;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: uppercase;
    transition: .3s all;
}
.product-inner .credit-button:hover {
    background: var(--second-color);
}
.partly-icon span {
    position: relative;
    padding-left: 40px;
}
.partly-icon span:before {
    content: '';
    background-image: url(/uploads/2025/09/credit-card-1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.product-content-button:not(:last-child) {
    margin-bottom: 5px;
}
.out-of-stock-button {
    background: #111;
    cursor: default;
}
.product-content-button:not(.loading):before {
    font-family: Feather;
    font-size: 16px;
    opacity: .6;
    margin-right: 13px;
}
.add-to-cart-button:not(.loading):before {
    content: "\e9ca";
}
.view-product-button:not(.loading):before {
    content: "\e912";
}
.product-content-button.add-to-cart-button {
    background: var(--main-color);
}
.product-content-button.add-to-cart-button:hover {
    background: #0f4e87;
}
.disabled-shop-button {
    opacity: .5;
}
.single-product-extra-buttons {
    margin-top: 25px;
    margin-bottom: 20px;
    display: flex;
}
.single-product-extra-button {
    display: inline-flex;
    margin-right: 30px;
    margin-bottom: 10px;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    height: 30px;
}
.sp-extra-button-icon {
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: absolute;
    top: -1px;
    left: -1px;
}
.sp-extra-button-text {
    padding: 0 10px 0 40px;
}
.single-product-wishlist-icon {
    background: #ff4545;
}
.single-product-whatsapp-icon {
    background: #00c600;
}
.product-cart-badges {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 5px;
}
.product-cart-badge {
    width: 40px;
    margin-bottom: 3px;
}
@media (max-width: 500px) {
    .single-quick-buy-button a {
        width: 100%;
    }
    .single-product-extra-buttons {
        width: 100%;
        justify-content: space-between;
    }
    .single-product-extra-button {
        font-size: 12px;
        line-height: 1.2;
        width: calc(50% - 5px);
        margin-right: 0;
    }
    .sp-extra-button-icon {
        font-size: 15px;
    }
}


/* 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-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.attr-area {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            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; /* Default inputdan qacmaq ucun*/
}
.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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 0 0 0 1px var(--border-color);
            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%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    line-height: 1.5;
    padding: 2px 8px;
    z-index: 100;
    opacity: 0;
    white-space: nowrap;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    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%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-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;
}
@media (max-width: 500px) {
    .attr-details {
        gap: 0;
    }
}


/* 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;
    font-size: 32px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
}
.single-product-right-details .sale-price, .single-sale-price {
    text-decoration: line-through;
    font-size: 22px;
    color: #999;
}
.single-product-right-details .currency, .single-currency {
    padding-right: 10px;
}



/* 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;
}


/* Products */
.products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
.product {
    position: relative;
    display: flex;
}
.products .product {
    width: 25%;
}
.products-5 .product {
    width: 20%;
}
.products-4 .product {
    width: 25%;
}
.products-3 .product {
    width: 33.3%;
}
.products-2 .product {
    width: 50%;
}
.products-1 .product {
    width: 100%;
}
.swiper-wrapper .product {
    width: 100%!important;
    padding: 0;
}
.out-of-stock-product {
    opacity: .3;
}
.product-inner {
    background: white;
    position: relative;
    overflow: hidden;
    padding: 15px 15px 150px;
    width: 100%;
    transition: .15s all;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
}
.all-products-area.shop-loading {
    padding: 60px;
}
.product-thumbnails {
    position: relative;
}
.product-thumbnail {
    position: relative;
    overflow: hidden;
    background: #eee;
}
.product-thumbnail img {
    aspect-ratio: 1;
    object-fit: contain;
    background: white;
    padding: 10px;
}
.default-product-image {
    padding: 50px;
}
.product-action-icons {
    position: absolute;
    top: 7px;
    right: 7px;
}
.product-action-icon {
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.product-details {
    padding-top: 15px;
}
.product-details h3 a {
    font-size: 15px;
    color: #000;
    font-weight: 700;
    display: block;
}
.product-inner:hover .product-details h3 a {
    color: black
}
.product-bottom {
    margin-bottom: 10px;
}
.product-prices {
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color);
}
.product-price-area .currency {
    font-size: 13px;
    transform: translateY(-5px);
    display: inline-block;
}
.sale-price {
    text-decoration: line-through;
    font-size: 15px;
    white-space: nowrap;
    font-weight: 400;
    color: #777;
}
.products-1 .product-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.products-1 .product-thumbnails {
    width: 230px;
}
.products-1 .product-details {
    width: calc(100% - 260px);
}
.products-1 .product-price-area {
    font-size: 28px;
}
.add-to-cart-button-area {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 31px);
    line-height: 1;
    transition: .3s all;
}
.product-excerpt a {
    text-align: center;
    display: block;
}
.product-lightbox {
    display: none;
    width: 500px;
    border-radius: var(--border-radius);
}
.product-lightbox .credit-block {
    margin-bottom: 0;
}
.product-lightbox-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
    text-align: center;
}
.product-credit-cards {
    display: flex;
    gap: 5px;
}
.product-credit-card img {
    width: 36px;
    border-radius: 3px;
}
@media (max-width: 330px) {
    .product {
        width: 100%!important;
    }
}
@media (min-width: 331px) and (max-width: 960px) {
    .product {
        width: 50%!important;
    }
}
@media (min-width: 767px) and (max-width: 999px) {
    .product {
        width: 33.3%!important;
    }
}
@media (max-width: 767px) {
    .products {
        border: 0;
        margin: 0 -7.5px;
    }
    .product-inner {
        border: 0;
        padding: 0 7.5px 130px;
    }
    .add-to-cart-button-area {
        bottom: 7.5px;
        left: 7.5px;
        width: calc(100% - 15px);
    }
    .product-content-button {
        font-size: 11px;
        line-height: 1.3;
    }
}
@media (min-width: 960px) AND (max-width: 1250px) {
    .home .product {
        width: 33.3%!important;
    }
}
@media (min-width: 960px) AND (max-width: 1050px) {
    .home .product {
        width: 50%!important;
    }
}



/* Product content wishlist */
.add-favorite-icon {
    width: 40px;
    height: 40px;
    line-height: 40px !important;
    border-radius: 5px;
    font-size: 22px;
    text-shadow: 0 0 10px #969eba5c;
    color: #969eba;
}
.add-favorite-icon.added {
    color: var(--extra-color);
    font-weight: 600;
}
.non-clickable {
    pointer-events: none;
}



/* Product content colors */
.product-colors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    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;
    -webkit-box-shadow: none;
    box-shadow: none;
    box-shadow: 0 0 0 1px #ddd;
}
.current-product-color-label {
    box-shadow: 0 0 0 1px #000;
}



/* 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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1;
    background: red;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-weight: 600;
}
.out-of-stock-badge {
    background: #1f1f1f;
}
.sale-badge {
    background: red;
}



/* Cart table*/
.cart-area {
    position: relative;
}
.cart-notifications:not(:empty) {
    margin-bottom: 15px;
}
.cart-notifications .alert:not(:last-child) {
    margin-bottom: 15px;
}
.cart-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cart-block-1 {
    width: calc(100% - 450px);
}
.cart-block-2 {
    width: 350px;
    max-width: 100%;
}
.cart-tbody {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
    background: white;
    padding: 40px;
}
.cart-tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
}
.cart-td-first {
    width: 130px;
}
.cart-td-second {
    width: calc(100% - 160px);
    position: relative;
}
.cart-image {
    background: #f5f5f5;
    display: block;
}
.cart-product-id {
    font-size: 13px;
    color: #767676;
    font-family: Arial;
    display: inline;
}
.cart-variations {
    font-size: 14px;
    margin: 10px 0;
}
.cart-td-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.cart-price {
    width: 100%;
    font-weight: 600;
    font-size: 17px;
    line-height: 1;
}
.cart-product-title {
    font-size: 17px;
    padding-right: 15px;
}
.cart-product-title a {
    display: table;
    line-height: 1.3;
    color: black;
}
.cart-td-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}
.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;
    background: var(--border-color);
    color: black;
}
.coupon-name {
    font-weight: 600;
    color: var(--main-color);
}
.remove-from-cart {
    color: #909090;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}
.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: 959px) {
    .cart-block-1 {
        width: 100%;
        margin-bottom: 40px;
    }
    .cart-block-2 {
        width: 100%;
    }
    .cart-td-first {
        width: 80px;
    }
    .cart-td-second {
        width: calc(100% - 100px);
        position: relative;
    }
}
@media (max-width: 800px) {
    .cart-tbody {
        padding: 0;
    }
}



/* Cart reports */
.cart-details h2 {
    font-size: 20px;
    margin-bottom: 15px;
}
.cart-reports {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    font-size: 16px;
}
.cart-final-report {
    font-weight: 600;
    padding-bottom: 0;
}
.cart-final-report .cart-report-second {
    font-size: 20px;
}
.cart-details-price-area {
    background: #ffffff;
    padding: 20px 25px;
    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;
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    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: 959px) {
    .cart-details {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .cart-main-action, .cart-call-me {
        width: 48%;
    }
    .cart-main-action {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
}
@media (max-width: 800px) {
    .cart-details-price-area {
        background: #f7f7f7;
    }
}



/* Checkouts */
.checkout-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 -25px;
}
.checkout-block {
    padding: 0 25px;
}
.checkout-first {
    width: 60%;
}
.checkout-second {
    width: 33%;
}
.checkcout-content {
    background: white;
    padding: 40px;
}
.checkout-details {
    margin-bottom: 30px;
}
.create-new-account {
    display: none;
}
.checkout-page .cart-canvas-products {
    padding: 0;
    height: auto;
    overflow: hidden;
}
.checkout-products a {
    pointer-events: none;
}
.checkout-bottom {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
}
.checkout-price-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    line-height: 1;
    align-items: center;
}
.checkout-price-blocks:not(:last-child) {
    margin-bottom: 10px;
}
.checkout-final-price div:last-child {
    font-size: 24px;
}
.checkout-note {
    margin-bottom: 30px;
}
.payment-method {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.checkmark {
    width: 25px;
    height: 25px;
    border: 1px solid #ccc;
    display: inline-block;
}
.checkout-final-price {
    font-weight: 600;
    font-size: 17px;
    align-items: flex-end;
}
@media (min-width: 1000px) and (max-width: 1100px) {
    .checkout-first {
        width: 66.6%;
    }
}
@media (max-width: 767px) {
    .checkout-block {
        width: 100%;
    }
    .checkout-first {
        margin-bottom: 40px;
    }
}
@media (min-width: 768px) and (max-width: 999px) {
    .checkout-first, .checkout-second {
        width: 50%;
    }
}
@media (max-width: 800px) {
    .checkcout-content {
        padding: 0;
    }
    .checkout-bottom {
        background: #f5f5f5;
    }
}


/* Order detailss */
#customer-order-area {
    margin-bottom: 30px;
}
.order-status {
    margin-bottom: 30px;
    text-align: center;
    font-size: 22px;
}
.order-declined {
    color: red;
}
.thank-you {
    color: green;
}
.order-details-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        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: 1;
    object-fit: cover;
}
@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;
}


/* 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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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);
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    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 */
.mobile-shop-toolbar-area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
}
.mobile-shop-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            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: var(--second-color);
}
.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 {
    -webkit-transform: translateY(52px);
        -ms-transform: translateY(52px);
            transform: translateY(52px);
}
.without-shop-toolbar {
    padding: 0;
}
@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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        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;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        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%;
}
.filter-prices-block {
    padding-top: 15px;
}



/* 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: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: 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 comments */
#product-comments-area {
    scroll-margin-top: 120px;
}
.single-product-comment-area {
    padding-bottom: 80px;
}
.sp-comment-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -25px -40px;
}
.sp-comment-block {
    padding: 0 25px 40px;
    width: 50%;
}
.comments-stars-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid #ddd;
    background: #f5f5f5;
    padding: 20px 20px 20px 0;
    margin-bottom: 30px;
}
.comments-stars-first {
    width: 120px;
}
.comments-stars-second {
    width: calc(100% - 120px);
}
.comments-stars-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.comment-icon {
    text-align: center;
    font-size: 32px;
    color: orange;
}
.comment-icon-details {
    text-align: center;
}
.comment-rating-value {
    width: 70px;
}
.comment-rating-value .fa {
    color: orange;
}
.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: 80px;
    text-align: right;
}
.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: #f5f5f5;
}
.account-order-heading {
    width: 140px;
    padding: 10px 20px;
}
.order-number {
    width: 120px;
}
.order-date {
    width: calc(100% - 500px);
}
.go-to-order {
    width: 100px;
}
.go-to-order a {
    background: white;
    display: block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border: 1px solid #1f1f1f;
}
.go-to-order a:hover {
    background: var(--main-color);
    color: white;
}
.aoh-first {
    text-transform: uppercase;
    font-size: 12px;
    color: #767676;
}
.aoh-second {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 5px;
}


/* 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: 15px;
}
.single-out-of-stock {
    display: table;
    background: #1f1f1f;
    color: white;
    padding: 8px 15px;
    line-height: 1;
}



/* All products */
.all-products-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        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: 959px) {
    .product-filters {
        width: 300px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1000;
        background: white;
        transform: translate3d(-100%,0,0);
        -webkit-transition: .4s all;
        -o-transition: .4s all;
        transition: .4s all;
    }
    .active-product-filters {
        transform: none;
    }
    .product-area {
        width: 100%;
        padding-left: 0;
    }
    .filter-product-blocks {
        padding: 30px 30px 130px;
        overflow-y: auto;
        height: 100%;
    }
}


/* Filter */
.filter-product-block {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.filter-product-heading {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
}
.filter-product-heading span {
    font-size: 15px;
}
.filter-product-content {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}
.filter-product-block .filter-product-content {
    padding: 10px 0;
}
.filter-product-children {
    margin-left: 15px;
}
.filter-toggle-children {
    position: absolute;
    top: 4px;
    right: 0;
    background: var(--second-color);
    color: white;
    width: 20px;
    height: 20px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
}
.filter-toggle-children .fe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 20px;
    height: 20px;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
}
.open-filter-toggle-children .fe {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.filter-product-children {
    background: rgb(238 238 238 / 42%);
    padding: 7px 15px;
    margin: 10px 0 10px 15px;
    display: none;
}
.active-filter-main {
    z-index: 100;
    position: relative;
}
.filter-product-block.active .filter-product-heading:before {
    transform: translateY(-50%) rotate(180deg);
}


/* Filter color */
.filter-color-block {
    display: inline-block;
    position: relative;
    padding: 5px;
    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: 2px 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%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border: 1px solid #ddd;
    border-radius: 50%;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.filter-color-block label:hover:before, .filter-color-block input:checked + label:before {
    border-color: var(--main-color);
}
.filter-color-block input {
    display: none;
}
.filter-tooltip {
    background: black;
    font-size: 12px;
    color: white;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 1px 7px;
    margin-left: -2px;
    display: none;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    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 var(--main-color);
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}


/* Filter size */
.filter-size-block {
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 5px;
}
.filter-size-block input {
    display: none;
}
.filter-size-block label {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 0!important;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.filter-size:hover, .filter-size-block input:checked + label {
    border-color: var(--main-color);
}


/* Shop top area */
.shop-tools-blocks {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -35px;
}
.shop-sort-blocks {
    display: inline-flex;
    flex-wrap: wrap;
}
.shop-tool-block {
    position: relative;
    z-index: 1;
}
.shop-tool-first {
    display: none;
}
.shop-tool-button {
    display: none;
}
.shop-sort {
    padding: 0 12px;
}
.shop-sort input {
    display: none;
}
.shop-sort label {
    padding: 0!important;
}
.shop-sort input:checked + label {
    color: var(--second-color);
}
.shop-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.shop-grid-element {
    margin-left: 10px;
    opacity: .4;
    cursor: pointer;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
.active-shop-grid, .shop-grid-element:hover {
    opacity: 1;
}
.shop-tool-first .fe {
    margin-right: 5px;
}
.shop-tool-second .fe {
    margin-left: 5px;
}
.active-main {
    position: relative;
    z-index: 100;
}
.shop-tool-block select {
    background-color: white;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
}
@media (max-width: 959px) {
    .shop-tools-blocks {
        margin-bottom: 25px;
    }
    .shop-tool-first, .shop-tool-button {
        display: block;
    }
    .shop-tool-third {
        display: none;
    }
    .shop-tool-second .shop-tool-button {
        text-align: right;
    }
}



/* Selected filter */
.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;
}



/* 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);
}



/* Product shares */
.product-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 30px;
    gap: 25px;
}
.product-share-text {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 17px;
}
.product-share-icons {
    display: flex;
    font-size: 44px;
    gap: 15px;
}
.product-share-whatsapp a {
    color: #23d168;
}
.product-share-instagram a {
    color: #e14262;
}


/* Stock */
.product-stocks {
    margin: 0 -10px 0;
    display: flex;
}
.product-stock {
    padding: 0 10px 20px;
    line-height: 1.4;
}
.stock-on {
    font-weight: 600;
    color: green;
}
.stock-off {
    font-weight: 600;
    color: red;
}
.product-articul-code {
    font-weight: 600;
}