/* Products */
.all-products-area.shop-loading {
    padding: 60px;
}

.products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.product {
    display: flex;
    position: relative;
    padding: 0 10px 20px;
}

.products .product {
    width: 25%;
}

.home .products .product {
    width: 20%;
}

.products-full .product {
    width: calc(100% / 6);
}

.products-list .product {
    width: 100%;
}

.swiper-wrapper .product {
    width: 100% !important;
    padding: 0;
}

.product-inner {
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}

.product-thumbnails {
    position: relative;
}

.product-thumbnail {
    background: var(--light-color);
    aspect-ratio: var(--aspect-ratio);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.product-thumbnail img {
    height: 100%;
    object-fit: contain;
}

.product-thumbnail .default-product-image {
    object-fit: contain;
    width: 80px;
    max-width: 100%;
    margin: 0 auto;
    opacity: .2;
    filter: grayscale(1);
}

.product-action-icons {
    position: absolute;
    top: 0;
    right: 0;
}

.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-top: 15px;
}

.product-details h3 a {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    display: block;
}

.product-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.product-price-area .final-price {
    font-weight: 600;
    font-size: 18px;
}

.product-price-area .currency {
    font-size: 18px;
}

.product-price-area .sale-price {
    text-decoration: line-through;
    font-size: 14px;
    opacity: .3;
}

.product-buttons {
    margin-top: 5px;
    width: calc(100% - 20px);
    margin-bottom: 10px;
}

.products-list .product-buttons {
    display: table;
    margin-bottom: 20px;
}

.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: 10px;
}

.products-list .product-details h3 {
    padding-right: 65px;
}

.products-list .product-details h3 a {
    font-size: 15px;
}

@media (max-width: 999px) {
    .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;
}

.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;
}

.default-single-product-image {
    background: var(--light-color);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-product-image {
    width: 300px;
    margin: 0 auto;
    opacity: .2;
    max-width: 100%;
    object-fit: contain !important;
    padding: 10px;
}

.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) !important;
    border-radius: var(--border-radius);
    height: auto !important;
}

.gallery-thumbs .swiper-slide img {
    object-fit: cover;
    cursor: pointer;
    aspect-ratio: var(--aspect-ratio);
}

.gallery-thumbs .swiper-slide-thumb-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);
}

.zoom-container {
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.zoom-container img {
    width: 100%;
    display: block;
}

.zoom-container:hover img {
    transform: scale(2);
    /* Böyütmə dərəcəsi */
}

.zoom-item {
    overflow: hidden;
    /* Şəkil böyüyəndə kənara çıxmasın */
    position: relative;
    cursor: zoom-in;
    width: 100%;
    /* Sizin dizayna uyğun ölçü */
}

.zoom-item img {
    width: 100%;
    display: block;
}

/* Qalereya şəkilləri çox uzun görünməsin — CSS-slider (mobil/tək şəkil) rejimində
   şəkilləri thumbnail-lərlə eyni sabit nisbətdə (kvadrat) saxlayırıq.
   Desktop swiper (.gallery-top, 550px) JS slider-css-mode class-ını sildiyi üçün
   bu qaydalar ona təsir etmir. */
.slider-css-mode .zoom-container,
.slider-css-mode .single-product-image a {
    display: block;
    aspect-ratio: var(--aspect-ratio);
    overflow: hidden;
    border-radius: var(--border-radius);
}

.slider-css-mode .zoom-container img,
.slider-css-mode .single-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@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;
    flex-shrink: 0;
}

.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;
    margin-bottom: 15px;
}

.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;
    padding: 0;
}

.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;
    gap: 15px;
    margin-bottom: 15px;
}

.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: 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;
    min-width: 45px;
    height: 37px;
    line-height: 1.2;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 5px;
    color: #616161;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 10px !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-type-color label {
    font-size: 0;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    min-width: auto;
    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-type-color input:checked+label,
.simple-product-attr-checked {
    border-color: white !important;
    box-shadow: 0 0 0 1px black !important;
}

.attr-type-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-type-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-type-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;
    min-height: 25px;
    padding: 3px 0;
    text-align: center;
    color: white;
    margin-bottom: 5px;
    font-size: 12px;
    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;
}

.deactive-cart>* {
    opacity: .6;
}

.cart-blocks {
    display: flex;
    flex-wrap: wrap;
    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;
}

.cart-tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding: 15px 0;
    color: black;
}

.cart-td-1 {
    width: 130px;
}

.cart-td-2 {
    width: calc(100% - 160px);
    position: relative;
}

.cart-image {
    background: var(--light-color);
    aspect-ratio: var(--aspect-ratio);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
}

.cart-image img {
    object-fit: cover;
    height: 100%;
}

.cart-image .default-product-image {
    object-fit: contain;
    width: 80%;
}

.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;
}

.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;
    padding: 0;
    text-align: center;
}

.cart-quantity-arrow {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 17px;
    cursor: pointer;
    user-select: none;
}

.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;
    }
}



/* 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 {
    background: #162d55;
    color: #fff;
    padding: 20px 25px;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
}

.cart-details-price-area h2,
.cart-details-price-area .cart-report {
    color: #fff;
}

.cart-details-price-area .cart-reports {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.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%;
}

.checkout-2 {
    width: 33%;
}

.checkout-details-block {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--light-color);
    padding: 30px;
}

.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;
    }
}



/* Order details */
#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;
    aspect-ratio: var(--aspect-ratio);
    background: var(--light-color);
    overflow: hidden;
}

.order-table-image img {
    object-fit: cover;
}

.order-table-image .default-cart-product-image {
    object-fit: contain;
    width: 80%;
    margin: 0 auto;
    opacity: .2;
}

.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-main-product {
    position: relative;
}

.canvas-product-stock {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--border-radius);
    z-index: 10;
    line-height: 1;
}

.canvas-product {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 20px 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.deactive-canvas-product>* {
    opacity: .3;
}

.canvas-product:last-child {
    border-bottom: 0;
}

.canvas-product-image {
    width: 90px;
    aspect-ratio: var(--aspect-ratio);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--light-color);
    display: flex;
    align-items: center;
}

.canvas-product-image a {
    background: var(--light-color);
    display: block;
}

.canvas-product-image img {
    object-fit: cover;
}

.canvas-product-image .default-product-image {
    width: 80%;
}

.canvas-product-details {
    width: calc(100% - 90px);
    padding-left: 15px;
}

.canvas-product-title {
    line-height: 1.4;
    margin-bottom: 10px;
}

.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: 190px;
    background: white;
    padding: 0 15px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.cart-canvas-products {
    height: calc(100% - 190px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 15px;
    min-height: --webkit-fill-avaliable;
}

.cart-canvas-errors {
    padding-top: 15px;
    font-size: 14px;
}




/* 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;
}



/* 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: var(--light-color);
    border-radius: var(--border-radius);
}

.account-order-heading {
    padding: 10px 20px;
}

.account-order-number,
.account-order-price {
    width: 120px;
}

.account-order-date,
.account-order-status {
    width: calc((100% - 540px) / 2);
}

.account-order-buttons-item {
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;
    width: 300px;
}

.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;
    font-size: 14px;
    transition: .15s all;
}

.account-order-button:hover {
    background: var(--main-color);
    color: white;
}

.account-repeat-button {
    background: var(--second-color);
}

.account-cancel-button {
    background: #eb0000;
    color: white;
    padding: 0 12px;
    box-shadow: 0 1px 2px rgb(235 0 0 / 32%);
}

.account-cancel-button:hover {
    background: #333;
    box-shadow: 0 1px 2px rgb(0 0 0 / 38%);
}

.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;
    margin-top: 15px;
}

.order-status-text:not(:empty) {
    font-weight: 600;
    background: #ec0000;
    color: white;
    display: inline-block;
    border-radius: var(--border-radius);
    padding: 3px 10px;
    font-size: 13px;
    margin-top: -5px;
    white-space: nowrap;
}

.order-status-text.order-status-pending {
    background: #4e4ebb;
}

.order-status-text.order-status-cargo {
    background: #db8d00;
}

.order-status-text.order-status-confirmed {
    background: #4cc94c;
}

.order-status-text.order-status-completed {
    background: #378537;
}

.order-status-text.order-status-refunded {
    background: #333333;
}

@media (max-width: 1300px) {

    .account-order-date,
    .account-order-status {
        width: calc((100% - 240px) / 2);
    }

    .account-order-buttons-item {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 1000px) {
    .account-order-heading {
        width: 50%;
    }
}



/* 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 70px;
        overflow-y: auto;
        height: calc(100vh - 120px);
    }
}

@media (max-width: 500px) {
    .product-filters {
        width: 85%;
    }
}


/* Filter */
.filter-product-block {
    margin-bottom: 30px;
    width: 100%;
}

/* Hər filter ayrıca boxda, fərqli (neon çalarlı) fonlarda göstərilir.
   .filter-product-blocks-in birbaşa div övladları filter boxlarıdır
   (kateqoriya, atributlar, qiymət aralığı); gizli input-lar div deyil, təsirlənmir. */
.filter-product-blocks > div {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background: var(--neon-panel-solid);
}

.filter-product-blocks > div:nth-of-type(6n+1) {
    background: rgba(25, 168, 255, .10);
    border-color: rgba(25, 168, 255, .35);
}

.filter-product-blocks > div:nth-of-type(6n+2) {
    background: rgba(177, 75, 255, .10);
    border-color: rgba(177, 75, 255, .35);
}

.filter-product-blocks > div:nth-of-type(6n+3) {
    background: rgba(255, 61, 113, .10);
    border-color: rgba(255, 61, 113, .35);
}

.filter-product-blocks > div:nth-of-type(6n+4) {
    background: rgba(46, 213, 115, .10);
    border-color: rgba(46, 213, 115, .35);
}

.filter-product-blocks > div:nth-of-type(6n+5) {
    background: rgba(255, 184, 0, .10);
    border-color: rgba(255, 184, 0, .35);
}

.filter-product-blocks > div:nth-of-type(6n+6) {
    background: rgba(0, 209, 255, .10);
    border-color: rgba(0, 209, 255, .35);
}

.filter-product-heading {
    margin-bottom: 10px;
    font-weight: 600;
}

.filter-product-block>.filter-product-content {
    padding-right: 10px;
}

.filter-product-content {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
}

.filter-toggle-children {
    position: absolute;
    top: 3px;
    right: 0;
    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;
}

.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-attr-color {
    display: inline-block;
    position: relative;
    width: 100%;
}

.filter-attr-color .filter-product-content {
    overflow: unset;
}

.filter-attr-color .form-filter-item {
    display: inline-block;
    padding: 0 4px 12px 0;
}

.filter-attr-color label {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid white;
    position: relative;
    padding: 0 !important;
    font-size: 0;
}

.filter-attr-color 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-attr-color label:hover:before,
.filter-attr-color input:checked+label:before {
    border-color: black;
}

.filter-attr-color input {
    display: none;
}

.filter-tooltip {
    background: black;
    font-size: 12px;
    color: white;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 7px;
    margin-left: -2px;
    display: none;
    border-radius: 5px;
    text-align: center;
    line-height: 1.2;
    transition: .15s all;
}

.filter-attr-color .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: white;
}

.shop-sort input:checked+label {
    color: white;
    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: #dfe6ec;
    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 {
    background: #f5f5f5;
    padding: 5px 10px 5px 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.remove-filter-tag {
    cursor: pointer;
    opacity: .3;
}



/* Combined products */
.combined-products-area {
    padding-bottom: 50px;
}

.related-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;
    overflow: hidden;
}

#alert:before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 3px;
    background: #da5959;
    width: 0;
    display: block;
    left: 0;
    transition: width 2.5s linear;
}

#alert.active:before {
    width: 100%;
}


/* =============================================================
   NEON SKIN — e-ticarət hissələri (məhsul, shop, səbət).
   Bu override-lar ecommerce.css-də saxlanır ki, faylın öz
   qaydalarını cascade-də üstələsin.
   ============================================================= */

/* ---- Məhsul kartları ---- */
.product-inner {
    background: var(--neon-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 12px 90px;
    backdrop-filter: blur(6px);
    transition: .25s all;
}

.product:hover .product-inner {
    border-color: rgba(25, 168, 255, .6);
    box-shadow: var(--neon-glow), 0 10px 30px rgba(0, 0, 0, .5);
    transform: translateY(-4px);
}

.product-thumbnail {
    background: #0b1230;
    border: 1px solid var(--border-color);
}

.product-details h3 a {
    color: var(--neon-text);
}

.product-details h3 a:hover {
    color: var(--main-color);
}

/* Məhsul altında qısa açıqlama */
.product-details .product-excerpt {
    margin: 6px 0 10px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-color, #9aa4c4);
    display: -webkit-box;
    overflow: hidden;
}

.product-details .product-excerpt a {
    color: inherit;
}

.product-price-area .final-price {
    color: var(--main-color);
    text-shadow: 0 0 12px rgba(25, 168, 255, .4);
}

.product-price-area .currency {
    color: var(--main-color);
}

.product-action-icon {
    background: var(--neon-panel-solid);
    border: 1px solid var(--border-color);
    color: var(--neon-text);
    box-shadow: none;
}

.product-action-icon:hover,
.product-action-icon .fe-check {
    color: var(--main-color);
}

.product-button {
    border: 1px solid rgba(25, 168, 255, .45);
    background: rgba(25, 168, 255, .06);
    color: var(--neon-text);
}

.product-button:hover {
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    border-color: transparent;
    color: #fff;
    box-shadow: var(--neon-glow);
}

.product-disabled-button {
    border-color: var(--border-color);
    background: var(--neon-panel-solid);
    color: var(--text-color);
}

.product-badge {
    box-shadow: var(--neon-glow);
}

/* ---- Shop: grid keçidi & seçilmiş filtrlər ---- */
.shop-grid-element {
    color: var(--neon-text);
}

.active-shop-grid,
.shop-grid-element:hover {
    background: rgba(25, 168, 255, .15);
    border: 1px solid rgba(25, 168, 255, .4);
    color: white;
    opacity: 1;
    box-shadow: var(--neon-glow);
}

.shop-grid-element img {
    filter: invert(1);
}

.selected-filter-attr {
    background: var(--neon-panel);
    border: 1px solid var(--border-color);
    color: var(--neon-text);
    border-radius: var(--border-radius);
}

.selected-filter-attr:hover {
    border-color: rgba(25, 168, 255, .5);
}

.remove-filter-tag {
    color: var(--extra-color);
}

.remove-filter-tag:hover {
    opacity: 1;
}

.shop-sort:hover,
.shop-sort.active-sort {
    color: var(--main-color);
}

/* ---- Səbət (cart canvas) paneli ---- */
.cart-canvas {
    background: var(--neon-panel-solid);
    color: var(--neon-text);
    border-color: var(--border-color);
}


/* =============================================================
   SINGLE PRODUCT — məhsul səhifəsinin tamamlanması (NEON).
   Yuxarıdakı bazis qaydalarda stilsiz qalmış komponentlər və
   açıq-tema qalıqları burada neon temaya uyğunlaşdırılıb.
   Cascade-də sonuncu olduğu üçün override kimi işləyir.
   ============================================================= */

/* ---- Açıq-tema qalıqlarının neon-a uyğunlaşdırılması ---- */
.single-product-excerpt {
    color: var(--text-color);
}

.product-ratings-values:hover {
    color: var(--neon-text);
}

.single-variation-prices,
.dynamic-product-price,
.single-product-right-details .final-price {
    color: var(--main-color);
    text-shadow: 0 0 14px rgba(25, 168, 255, .35);
}

.price-not-detected {
    color: var(--neon-text);
}

/* Say seçici (quantity) */
.single-quantity {
    border-color: var(--border-color);
    background: var(--neon-panel);
}

.single-quantity input {
    background: transparent !important;
    color: var(--neon-text) !important;
}

.single-quantity-arrow {
    color: var(--neon-text);
}

/* Atribut / variasiya düymələri */
.attr-value {
    border-color: var(--border-color);
    background: var(--neon-panel);
    color: var(--text-color);
}

.attr-area input:checked+label,
.attr-area .simple-product-attr-checked {
    border-color: var(--main-color) !important;
    color: var(--neon-text) !important;
    box-shadow: 0 0 0 1px var(--main-color) !important;
}

/* Əlavə düymələr (istək listi / whatsapp) */
.single-product-extra-link:hover {
    opacity: 1;
    color: var(--main-color);
}

/* ---- Qalereya üzərində "ayda ödəniş" badge-i ---- */
.single-product-gallery {
    position: relative;
}

.single-product-gallery .product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    width: auto;
    min-height: 0;
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    border-radius: var(--border-radius);
    box-shadow: var(--neon-glow);
}

/* ---- Stok / artikul ---- */
.product-stocks {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 25px;
    margin: 15px 0;
    font-size: 14px;
    color: var(--text-color);
}

.product-articul-code {
    color: var(--neon-text);
    font-weight: 600;
}

.stock-on {
    color: #2fe089;
    font-weight: 600;
}

.stock-off {
    color: var(--extra-color);
    font-weight: 600;
}

/* ---- Üstünlük ikonları (blocks.php pf-*) ---- */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.product-features .product-feature {
    color: var(--neon-text);
}

.pf-icon-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pf-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    background: var(--neon-panel);
    border: 1px solid var(--border-color);
    border-radius: 50%;
}

.pf-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pf-icon-title {
    font-weight: 600;
    line-height: 1.3;
    color: var(--neon-text);
}

.pf-icon-desc {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-color);
}

/* ---- "Bizə yazın" / paylaşım ikonları ---- */
.single-product-top-block {
    margin-top: 25px;
}

/* "Bizə yazın" / xüsusiyyət bloku iki dəfə daxil edilir: desktop-da qalereya
   yanında (yuxarı), mobil-də səhifənin sonunda (aşağı). Hər viewport-da yalnız
   biri görünsün ki, təkrarlanmasın. Layout 850px-də tək sütuna keçir. */
.single-product-bottom-block {
    display: none;
}

@media (max-width: 850px) {
    .single-product-top-block {
        display: none;
    }

    .single-product-bottom-block {
        display: block;
        margin-top: 30px;
    }
}

.product-share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.product-share-text {
    font-weight: 600;
    color: var(--neon-text);
}

.product-share-icons {
    display: flex;
    gap: 10px;
}

.product-share-icon a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    background: var(--neon-panel);
    border: 1px solid var(--border-color);
    transition: .25s all;
}

.product-share-icon a:hover {
    border-color: rgba(25, 168, 255, .6);
    box-shadow: var(--neon-glow);
    transform: translateY(-3px);
}

.product-share-whatsapp a {
    color: #25d366;
}

.product-share-instagram a {
    color: #e1306c;
}

/* ---- Oyunlar / FPS kartları ---- */
.product-games-area {
    margin-top: 25px;
    padding: 18px;
    background: var(--neon-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.product-games-text {
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--text-color);
}

.product-games {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-game {
    flex: 1 1 90px;
    min-width: 80px;
    text-align: center;
    padding: 12px 8px;
    background: var(--neon-panel-solid);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: .25s all;
}

.product-game:hover {
    border-color: rgba(25, 168, 255, .5);
    box-shadow: var(--neon-glow);
    transform: translateY(-3px);
}

.pg-image img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    margin: 0 auto 8px;
}

.pg-name {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.3;
    color: var(--neon-text);
}

.pg-fps {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--main-color);
}

/* ---- Hissə-hissə ödəniş kartları (BirKart / TamKart) ---- */
.payment-cards-area {
    margin: 20px 0;
    background: var(--neon-panel);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .18);
}

/* Ay seçimi — pill formalı düymələr, hamısı bir sırada yan-yana */
.payment-cards-months {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px;
    background: var(--neon-panel-solid);
    border-bottom: 1px solid var(--border-color);
}

.payment-cards-month {
    flex: 1 1 0;
    width: auto !important;
    min-width: 0;
    text-align: center;
    padding: 10px 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-color);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: .2s all;
}

.payment-cards-month:hover {
    color: var(--neon-text);
    background: rgba(25, 168, 255, .08);
}

.payment-cards-month.active {
    color: #fff;
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    box-shadow: var(--neon-glow);
}

/* Dəyər paneli */
.payment-cards-value {
    display: none;
    padding: 14px;
}

/* JS olmadıqda da default olaraq aktiv (sonuncu) ay görünsün */
.payment-cards-value:last-child {
    display: block;
}

.payment-cards-value table {
    width: 100%;
    margin: 0;
    border: 0;
}

.payment-cards-value tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Hər ödəniş variantı ayrıca kart */
.payment-cards-value tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: var(--neon-panel-solid);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: .2s all;
}

.payment-cards-value tr:hover {
    border-color: rgba(25, 168, 255, .5);
    box-shadow: var(--neon-glow);
    transform: translateY(-2px);
}

.payment-cards-value td {
    border: 0;
    padding: 0;
    vertical-align: middle;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--neon-text);
}

.payment-card img {
    width: 48px;
    height: auto;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.payment-card-price {
    text-align: right;
    white-space: nowrap;
    font-weight: 700;
    font-size: 15px;
    color: var(--main-color);
}

/* Hissə-hissə (kredit) bloku yalnız məbləğ göstərir — mərkəzə hizala */
.credit-info-block .payment-cards-value tr {
    justify-content: center;
}

.credit-info-block .payment-card-price {
    text-align: center;
    font-size: 17px;
}

/* ---- Kredit bloku ---- */
.credit-block {
    margin: 20px 0;
    padding: 18px;
    background: var(--neon-panel);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .18);
}

.credit-input {
    margin-bottom: 15px;
}

.credit-heading-area {
    margin-bottom: 14px;
}

/* "Hissə-hissə ödə!" — başlıq (buton deyil) */
.credit-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--neon-text, #fff);
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.credit-heading i {
    font-size: 20px;
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--main-color);
}

.credit-info {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
}

/* ---- Texniki xüsusiyyətlər (features.php spf-*) ---- */
.single-product-details {
    margin-top: 30px;
}

.spf-block:not(:last-child) {
    margin-bottom: 25px;
}

.spf-item {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.spf-item-title {
    color: var(--text-color);
    width: 33.3%;
}

.spf-item-value {
    width: 66.6%;
    font-weight: 500;
    color: var(--neon-text);
}

/* ---- Çatdırılma / zəmanət qeydləri ---- */
.shipping-details-area {
    margin: 25px 0;
}

.shipping-details {
    position: relative;
    padding: 16px 18px 16px 46px;
    background: rgba(25, 168, 255, .06);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    line-height: 1.55;
    color: var(--text-color);
}

.shipping-details>i {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 18px;
    color: var(--main-color);
}

.shipping-block:not(:last-child) {
    margin-bottom: 10px;
}

/* ---- Şərh bölməsinin başlığı ---- */
.single-product-comments {
    margin-top: 30px;
}

/* ---- Birgə alınan məhsullar başlığı ---- */
.combined-products-area .shop-heading {
    color: var(--neon-text);
}

.combined-products-area .side-swiper-nav {
    background: var(--neon-panel-solid);
    border: var(--neon-border);
    color: var(--neon-text);
}

.combined-products-area .side-swiper-nav:hover {
    color: var(--main-color);
    box-shadow: var(--neon-glow);
}

/* ---- Bölmə başlıqları (shop-heading) ---- */
.single-product-features-area {
    margin-top: 30px;
}

.single-product-features-area .shop-heading {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--neon-text);
    margin-bottom: 15px;
}

.spf-block .shop-heading {
    font-size: 17px;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

/* ---- Responsiv ---- */
@media (max-width: 600px) {
    .product-share {
        flex-wrap: wrap;
    }

    .payment-cards-month {
        font-size: 13px;
        padding: 10px 4px;
    }
}

/* ---- Səbət canvas footer (neon) ---- */
.cart-canvas-footer-area {
    background: var(--neon-panel-solid);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

.cart-canvas-price-area {
    color: var(--neon-text);
    border-bottom: 1px solid var(--border-color);
}

.cart-canvas-cart {
    background: var(--neon-panel);
    color: var(--neon-text);
    border: 1px solid var(--border-color);
}

.cart-canvas-cart:hover {
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    color: #fff;
    border-color: transparent;
    box-shadow: var(--neon-glow);
}

/* ============================================================
   Hissə-hissə ödəniş — listinq kartı və fancybox pəncərəsi
   (compstore.az product-content.php strukturu ilə eyni)
   ============================================================ */

/* Kartda əlavə iki sətir (kart nişanları + kredit düyməsi) üçün yer */
.product-inner {
    padding-bottom: 152px;
}

.product-badges {
    z-index: 2;
}

/* "371₼ / ayda" nişanı */
.product-badge-credit {
    width: auto;
    min-height: 0;
    display: block;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    color: #fff;
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    border-radius: var(--border-radius);
}

/* BirKart / TamKart nişanları */
.product-cart-badges {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.product-cart-badge {
    width: 40px;
    line-height: 0;
}

.product-cart-badge img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

/* "Daxili hissəli ödəniş" düyməsi */
.credit-button {
    margin-top: 5px;
    border-color: var(--main-color);
    color: var(--main-color);
}

.credit-button:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

/* Fancybox pəncərəsi — səhifədə gizli, yalnız popup-da görünür.
   .fancybox-content ilə birlikdə yazılır ki, fancybox-un öz ağ fonunu
   (jquery.fancybox.min.css bu fayldan sonra yüklənir) üstələsin. */
.product-lightbox {
    display: none;
}

.fancybox-content.product-lightbox {
    display: block;
    width: 500px;
    max-width: 100%;
    padding: 22px;
    background: var(--neon-panel-solid);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    color: var(--text-color);
}

.product-lightbox .credit-block {
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
}

.product-lightbox-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 18px;
    text-align: center;
    color: var(--neon-text);
}

@media (max-width: 500px) {
    .fancybox-content.product-lightbox {
        padding: 16px;
    }
}
