﻿/* CSS Variables */
:root {
    --font-size-heading: 24px;
    --font-size-subheading: 16px;
    --font-size-btn: 14px;
    --secondary-border: solid 2px var(--secondary);
    --container-max-width: 1400px;
}



/* Devices >=992px */
@media (min-width: 992px) {
    .filter-mobile {
        display: none !important;
    }

    .filter-desktop {
        display: block !important;
    }

    .sort-desktop {
        display: flex !important;
    }

    .container-fluid {
        max-width: var(--container-max-width);
    }

    .blog-card, .overlay {
        transition: 0.3s all;
    }

    .overlay {
        opacity: 0;
    }

        .overlay .btn {
            background-color: black;
            color: white;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            width: 80%;
        }

    .card-blur:hover .overlay {
        opacity: 1;
    }

    .card-blur:hover .blog-card {
        -webkit-filter: blur(2px);
        filter: blur(2px);
    }
    .modal-dialog { max-width: 750px; }
}

/* iPad Pro Specific */
@media only screen and (width: 1024px) {
    .srch-card {
        min-height: 100px !important;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1299px) {

    .container-fluid {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }

    .banner-desktop .card-img-overlay {
        margin-right: 2%;
        top: 16%;
    }

    .banner-desktop h1 {
        font-size: 48px;
    }

    .banner-desktop p {
        font-size: 18px;
    }

    .offer-products .h4, #product-list .h4 {
        font-size: 24px;
    }

    .offer-products .btn-show-all {
        font-size: 14px !important;
    }

    .card-body {
        padding: .5rem;
    }

    .blog p {
        font-size: 14px;
        margin-bottom: 24px;
        overflow: hidden;
        white-space: nowrap;
    }

    .blog small {
        font-size: 11px;
        margin-top: 3%;
    }
    .blog .btn {
        font-size: 12px;
    }
     

    .row-banner p, .row-banner h2 {
        font-size: 32px;
    }
    .row-banner .btn {
        font-size: 16px;
    }
    .row-banner .right-overlay {
        margin-right: 2%;
        margin-top: 4%; 
    }
    .row-banner .left-overlay {
        margin-right: 44%;
        margin-top: 4%; 
    }
}

@media only screen and (min-width: 1300px) and (max-width: 1499px) {

    .container-fluid {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }
}
/* Tablets only (600px – 1023px) */
@media (min-width: 600px) and (max-width: 1023px) {
    .mobile {
        display: none !important;
    }

    .desktop {
        display: block !important;
    }
    .banner-desktop .card-img-overlay {
        margin-right: 2%;
        top: 16%;
    }
    .banner-desktop h1 {
        font-size: 32px;
    }

    .banner-desktop p {
        font-size: 16px;
    }

    .offer-products .h4, #product-list .h4 {
        font-size: 24px;
    }

    .offer-products .btn-show-all {
        font-size: 14px !important;
    }
    .banner-desktop {
        margin-top: 48px;
    }
    .banner-desktop .card-img-overlay {
        margin-right: 0;
        top: 14%;
        text-align: right;
    }
    .row-banner .right-overlay {
        top: -10%;
        text-align: right; 
    }
    .row-banner .left-overlay {
        top: 0;
        right: 30%;
    }
    .row-banner .btn {
        margin-top: 8px;
    }
    .index-h1 h1 {
        font-size: 24px;
        font-weight: 600;
    }

}
@media (max-width: 1023px) {
    .navbar-collapse {
        padding: 16px;
        padding-bottom: 24px;
        position: absolute;
        top: 100%;
        left: -24px !important;
        right: -24px !important;
        background-color: var(--gray-10) !important;
        z-index: 1050;
        max-height: unset !important;
        overflow-y: hidden !important;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Mobile Portrait Product Cards */
    .product-card:not(.landscape) {
        width: auto !important;
        max-width: 100% !important;
        min-width: auto !important;
        height: 240px !important;
        min-height: 240px !important;
        max-height: 240px !important;
        border-radius: 12px !important;
        padding: 8px !important;
        border: 1px solid #EFEFEF !important;
        background: #FFFFFF !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        flex: none !important;
        flex-grow: 0 !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .product-card:not(.landscape) .card-img-top {
        width: 124px !important;
        height: 104px !important;
        border-radius: 8px !important;
        margin-bottom: 0 !important;
        flex: none !important;
        order: 0 !important;
        align-self: stretch !important;
        flex-grow: 0 !important;
        object-fit: contain !important;
    }

    .product-card:not(.landscape) .card-body {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        padding: 0px !important;
        gap: 8px !important;
        width: 124px !important;
        max-width: 124px !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 114px !important;
        flex: 1 1 auto !important;
        order: 1 !important;
        align-self: stretch !important;
        flex-grow: 1 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .product-card:not(.landscape) .card-title {
        width: 124px !important;
        height: auto !important;
        font-family: 'Kalameh(FaNum)', 'Kalameh', "kalame", sans-serif !important;
        font-style: normal !important;
        font-weight: 500 !important;
        font-size: 12px !important;
        line-height: 160% !important;
        letter-spacing: 0% !important;
        text-align: right !important;
        color: #2C3E50 !important;
        margin: 0 !important;
        flex: none !important;
        order: 0 !important;
        align-self: stretch !important;
        flex-grow: 0 !important;
        max-width: 124px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .product-card:not(.landscape) .card-title.text-truncated-2-lines {
        -webkit-line-clamp: 4 !important;
        line-clamp: 4 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: normal !important;
    }

    .product-card:not(.landscape) .card-body:has(.product-rate-row) .card-title,
    .product-card:not(.landscape) .card-body:has(.card-text-top:not(:empty)) .card-title,
    .product-card:not(.landscape) .card-body:has(.card-text .discount-row) .card-title {
        height: 19px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 1 !important;
        line-clamp: 1 !important;
        -webkit-box-orient: vertical !important;
    }

    .product-card:not(.landscape) .card-text {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: flex-start !important;
        padding: 0px !important;
        gap: 0 !important;
        margin: 0 !important;
        margin-top: auto !important;
        width: 124px !important;
        max-width: 124px !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        flex: 1 1 auto !important;
        order: 1 !important;
        align-self: stretch !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        position: relative !important;
    }

    .product-card:not(.landscape) .card-text-top {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 124px !important;
        max-width: 124px !important;
        min-width: 0 !important;
        margin: 0 !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
        min-height: 0 !important;
        order: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

    .product-card:not(.landscape) .card-text-top:empty {
        display: none !important;
    }

    .product-card:not(.landscape) .card-text-top > span,
    .product-card:not(.landscape) .card-text-top > .badge {
        flex-shrink: 0 !important;
        order: 2 !important;
    }

    .product-card:not(.landscape) .card-text-top .product-rate-row {
        flex-shrink: 0 !important;
        order: 1 !important;
        margin-right: auto !important;
    }

    .product-card:not(.landscape) .card-text > .discount-row {
        margin-bottom: 0 !important;
        order: 1 !important;
    }

    .product-card:not(.landscape) .discount-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 0px !important;
        gap: 5px !important;
        width: 124px !important;
        max-width: 124px !important;
        min-width: 0 !important;
        height: 16px !important;
        flex: none !important;
        order: 0 !important;
        align-self: stretch !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

    .offer-products .product-card:not(.landscape) .discount-row,
    .new-products .product-card:not(.landscape) .discount-row {
        width: 124px !important;
        max-width: 124px !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 4px !important;
        margin-bottom: 0 !important;
        align-self: stretch !important;
        justify-content: flex-start !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        gap: 5px !important;
    }

    .offer-products .product-card:not(.landscape) .card-text > .discount-row,
    .new-products .product-card:not(.landscape) .card-text > .discount-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .offer-products .product-card:not(.landscape) .card-text,
    .new-products .product-card:not(.landscape) .card-text {
        width: 124px !important;
        max-width: 124px !important;
        min-width: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .offer-products .product-card:not(.landscape) .discount-row .discount-badge-container,
    .new-products .product-card:not(.landscape) .discount-row .discount-badge-container {
        width: auto !important;
        max-width: 93px !important;
        min-width: 0 !important;
        flex: none !important;
        flex-grow: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        margin-right: auto !important;
        margin-left: 0 !important;
        padding: 0 !important;
        gap: 5px !important;
    }

    .product-card:not(.landscape) .discount-row:empty {
        display: none !important;
    }

    .product-card:not(.landscape) .discount-row .discount-badge-container {
        width: auto !important;
        max-width: 93px !important;
        min-width: 0 !important;
        flex: none !important;
        flex-grow: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        margin-right: auto !important;
        margin-left: 0 !important;
        padding: 0 !important;
        gap: 5px !important;
    }

    .product-card:not(.landscape) .discount-row .discount-percent {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 6px 5px !important;
        gap: 10px !important;
        width: 31px !important;
        height: 16px !important;
        background: #E74C3C !important;
        border-radius: 16px !important;
        flex: none !important;
        order: 0 !important;
        flex-grow: 0 !important;
        font-family: 'Yekan Bakh' !important;
        font-style: normal !important;
        font-weight: 400 !important;
        font-size: 10px !important;
        line-height: 15px !important;
        text-align: right !important;
        color: #FFFFFF !important;
    }

    .product-card:not(.landscape) .discount-row .old-price {
        width: 57px !important;
        height: 8px !important;
        font-family: 'Kalameh(FaNum)' !important;
        font-style: normal !important;
        font-weight: 400 !important;
        font-size: 12px !important;
        line-height: 20px !important;
        text-align: right !important;
        text-decoration-line: line-through !important;
        color: #636C75 !important;
        flex: none !important;
        order: 1 !important;
        flex-grow: 0 !important;
    }

    .product-card:not(.landscape) .card-text > .price-action {
        margin-top: 0 !important;
        order: 2 !important;
    }

    .product-card:not(.landscape) .price-action {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 0px !important;
        gap: 4px !important;
        width: 124px !important;
        max-width: 124px !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 27px !important;
        flex: none !important;
        flex-shrink: 0 !important;
        order: 2 !important;
        flex-grow: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        position: relative !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .product-card:not(.landscape) .price-action b,
    .product-card:not(.landscape) .price-action .remove-price {
        width: 100% !important;
        max-width: 124px !important;
        height: 16px !important;
        font-family: 'Kalameh(FaNum)', 'Kalameh', "kalame", sans-serif !important;
        font-style: normal !important;
        font-weight: 500 !important;
        font-size: 16px !important;
        line-height: 100% !important;
        letter-spacing: 0% !important;
        text-align: left !important;
        color: #2C3E50 !important;
        flex: none !important;
        order: 0 !important;
        flex-grow: 0 !important;
        margin: 0 !important;
        display: block !important;
        visibility: visible !important;
    }

    .product-card:not(.landscape) .price-action .btn {
        width: 124px !important;
        max-width: 124px !important;
        min-width: 0 !important;
        height: 27px !important;
        background: #EFEFEF !important;
        border-radius: 16px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 4px 8px !important;
        gap: 10px !important;
        flex: none !important;
        flex-shrink: 0 !important;
        order: 1 !important;
        align-self: stretch !important;
        flex-grow: 0 !important;
        font-family: 'Yekan Bakh FaNum', 'Kalameh(FaNum)', 'Kalameh', "kalame", sans-serif !important;
        font-style: normal !important;
        font-weight: 600 !important;
        font-size: 12px !important;
        line-height: 100% !important;
        letter-spacing: 0% !important;
        color: #2C3E50 !important;
        border: none !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .product-card:not(.landscape) .card-img-overlay {
        display: none !important;
    }
}
/* Extra small devices (phones, <=600px) */
@media (max-width: 600px) {
    .index-h1 h1{ 
        font-size: 24px;
        font-weight: 600;
    }

    .mobile-none {
        display: none;
    }

    .desktop-none {
        display: block;
    }

    .navbar-brand img {
        width: 44px;
    }

    .menu {
        margin: 0 16px;
        padding: 12px 0;
    }

    .navbar-light .navbar-toggler {
        border: none;
    }

    .navbar .btn {
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: var(--secondary-border);
    }

    .navbar .shopCartBtn {
        display: none !important;
    }

        .navbar .shopCartBtn .btn {
            display: none !important;
        }

    #shopCartBtn1 {
        display: none !important;
    }

    .navbar .btn i {
        font-size: 16px;
    }

    .banner-one {
        height: auto !important;
        min-height: auto !important;
    }

    .banner-two {
        min-height: 120px !important;
        max-height: 120px !important;
    }

    .mycard {
        width: 200px !important;
    }

    .mobile-bottom-nav {
        display: block !important;
    }

    .filter-mobile {
        display: -webkit-box !important;
    }

    .filter-desktop, .sort-desktop, .desktop, .desktop-inline, .desktop-flex {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .banner-desktop {
        margin-top: 48px;
    }

        .banner-desktop .card-img-overlay,
        .row-banner .right-overlay,
        .row-banner .left-overlay {
            margin-right: 0;
            top: 8%;
            text-align: center;
            padding: 0 5% !important;
        }

        .banner-desktop h1,
        .row-banner .h2,
        .row-banner p {
            font-size: var(--font-size-heading);
        }

        .banner-desktop p {
            font-size: var(--font-size-subheading);
        }

        .banner-desktop a,
        .row-banner .btn {
            font-size: var(--font-size-btn);
        }

        .banner-desktop .card {
            overflow: hidden;
        }

        .banner-desktop img, .banner-desktop .card {
            border-radius: 12px;
        } 
         
    .row-banner {
        margin: 64px 0;
    }

        .row-banner .right-overlay,
        .row-banner .left-overlay {
            top: 5%;
        }

    .section-header,
    h6.section-header,
    .h6.section-header,
    p.section-header,
    p.h6.section-header {
        font-family: "kalame" !important;
        font-weight: 600 !important;
        font-style: normal !important;
        font-size: 16px !important;
        line-height: 120% !important;
        letter-spacing: 0% !important;
        text-align: right !important;
        color: #2C3E50 !important;
    }

        .section-header::after {
            width: 20%;
        }

    .new-products .section-header::after,
    .new-products-header .section-header::after,
    .top-sell-products .section-header::after {
        width: 35%;
    }

    .blog .section-header::after {
        width: 35%;
    }

    .categories .section-header {
        margin-top: 32px;
    }

    .categories a {
        font-size: 12px;
        text-align: justify !important;
    }

    .navbar-scrolled .menu {
        margin: 0;
    }

    .menu-fa {
        display: block !important;
    }

    .blog-img {
        padding: 0;
    }

    .mobile-event-none {
        pointer-events: none !important;
    }

    .card-header h5,
    .mobile-bottom-nav a {
        font-size: medium !important;
    }

    .cart-img {
        max-width: 100%;
        transition: none !important;
    }

        .cart-img:hover {
            transform: none !important;
        }

    product-index-col {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .product-card {
        width: 100% !important;
    }

    .service-info {
        margin-bottom: 64px;
    }

        .service-info img {
            width: 56px;
            margin-left: 0;
            margin-bottom: 8px;
        }

        .service-info .col-6 {
            font-size: 16px !important;
            line-height: 1.6 !important;
            padding: 10px 4px !important;
            min-height: 70px !important;
            height: auto !important;
            overflow: visible !important;
            white-space: normal !important;
            word-wrap: break-word !important;
            display: block !important;
        }

    .blog {
        margin-bottom: 64px;
    }

        .blog p {
            font-size: 16px;
            margin-bottom: 24px;
        }

    .offer-products-container, .new-products-container {
        padding-left: 0;
    }

    .offer-products {
        padding: 24px 16px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        margin-top: 64px;
        height: 377px;
    }

        .offer-products .row.mb-4 {
            flex-direction: column;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px !important;
        }

            .offer-products .row.mb-4 > div {
                width: 100%;
                text-align: center;
                margin: 0;
            }

                .offer-products .row.mb-4 > div:nth-child(2) {
                    display: none;
                }

        .offer-products .h4 {
            font-family: 'Kalameh(FaNum)', 'Kalameh', "kalame", sans-serif;
            font-weight: 600;
            font-style: normal;
            font-size: 20px;
            line-height: 120%;
            letter-spacing: 0%;
            text-align: center;
            white-space: nowrap;
            margin-bottom: 8px !important;
        }

            .offer-products .h4 br {
                display: none;
            }

        .offer-products .row.mb-4 > div:last-child {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .offer-products .btn-show-all {
            margin: 0 auto;
        }

    .btn-show-all {
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 8px 32px;
        gap: 8px;
        width: 160px;
        height: 40px;
        border: 1px solid #E74C3C !important;
        border-radius: 16px;
        font-family: 'Kalameh(FaNum)', 'Kalameh', "kalame", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        text-align: center;
        color: #E74C3C !important;
        background-color: transparent;
        white-space: nowrap;
    }

        .btn-show-all svg {
            width: 16px;
            height: 16px;
            margin-left: 8px;
            margin-right: 0;
            flex-shrink: 0;
        }

            .btn-show-all svg path,
            .btn-show-all svg line,
            .btn-show-all svg polyline,
            .btn-show-all svg polygon,
            .btn-show-all svg circle,
            .btn-show-all svg ellipse,
            .btn-show-all svg rect {
                stroke: #E74C3C !important;
                fill: none !important;
                stroke-width: 1.5px;
            }

    .offer-products .product-list, .new-products .product-list {
        padding-left: 0;
    }

    .btn-show-all {
        font-size: 14px;
    }

    .new-products {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-left: 0;
        height: 680px !important;
    }

    .top-sell-products-container {
        padding-left: var(--bs-gutter-x, .75rem);
        padding-right: var(--bs-gutter-x, .75rem);
        margin-left: auto;
        margin-right: auto;
    }

    .slider-nav {
        display: flex !important;
        margin: auto;
        justify-content: center;
        margin-top: 16px;
    }

        .slider-nav svg {
            width: 40px;
            margin-right: 8px;
            margin-left: 8px;
            border-radius: 50%;
            border: 1px solid var(--danger);
            padding: 8px;
        }

    .top-sell-products {
        margin-bottom: 64px;
        margin-top: 64px;
    }

    .p-sm-0 {
        padding: 0;
    }

    footer {
        padding: 16px 0;
        text-align: justify;
    }

        footer .logo {
            width: 64px;
            margin-bottom: 16px !important;
        }

        footer .h4 {
            font-size: 16px;
            margin-bottom: 16px !important;
        }

        footer .h6 {
            font-size: 16px;
        }

    #product-list .product-index-col {
        padding-left: 8px;
        padding-right: 8px;
    }

    .all-products {
        margin-top: 16px;
        margin-bottom: 120px;
    } 

    .breadcrumb-item {
        font-size: 14px;
    }
    .product-info-container .breadcrumb {
        margin-bottom: 16px;
    }
    .swiper-category p {
        font-size: 14px;
    }

    h1.section-header {
        font-size: 20px !important;
    }

    .filter-mobile .btn, .filter-mobile .btn:active, .filter-mobile .btn:hover, .filter-mobile .btn:focus {
        border-radius: 8px;
        background: transparent;
        border: 2px solid;
        border-color: var(--tertiary);
        padding: 4px 32px;
        margin-top: 24px;
        font-weight: 600;
        font-size: 14px;
    }

    .product-filter {
        padding-left: 4px;
        text-align: justify;
    }

    .all-products .section-header::after {
        width: 55%;
    }

    .tag-category-section .card-img-overlay .bg-transparent {
        margin-left: 2px;
        font-size: 14px;
    }

    .tag-category-section .card-img-overlay {
        right: 4px;
    }

    .offer-card .offer-description {
        font-size: 24px;
    }

    .offer-card .offer-title {
        font-size: 16px;
    }

    .offer-card .offer-desc {
        min-height: 148px;
    }

    .offer-section {
        margin-top: 64px;
    }

    .brand-section {
        margin-top: 64px;
        margin-bottom: 64px;
    }

    .offer-section {
        margin-top: 64px;
        margin-bottom: 64px;
    }

    .contactUs .breadcrumb {
        margin-bottom: 32px;
    }

    .contactUs h1 {
        font-size: 24px;
    }

    .contactUs .contactUs-form {
        margin-top: 32px;
    }

        .contactUs .contactUs-form .card .card-body {
            padding: 24px 8px;
        }

        .contactUs .contactUs-form .contact-us-map #map {
            height: 250px;
            margin-top: 32px;
        }

    .address-section {
        display: flex;
        justify-content: start;
        padding-left: 8px;
        padding-right: 8px;
        align-content: center;
    }

        .address-section svg {
            width: 24px;
            height: 24px;
        }

    .contactUs {
        margin-bottom: 64px;
    }

    .order-m-1 {
        order: 1 !important;
    }

    .order-m-0 {
        order: 0 !important;
    }

    .about-us img {
        width: 100%;
        height: 200px;
        margin-bottom: 24px;
    }

    .comment-item .card-body {
        padding: 4px 12px;
    }

    .comment-item .star-rating svg {
        width: 16px;
        height: 16px;
    }

    .comment-item h6 {
        margin-bottom: 16px;
    }

    .comment-item .rate-text {
        display: none;
    }

    .comment-item {
        min-width: 264px;
        margin-left: 8px;
        height: 100%;
    }

        .comment-item .comment-item-rate {
            float: left;
            margin-top: 8px;
        }

    .comment-list {
        display: flex;
        overflow-x: scroll;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE 10+ */
    }

        .comment-list::-webkit-scrollbar {
            display: none; /* Chrome, Safari */
        }

    .comment-summary .card-body {
        padding: 16px;
    }

    .comment-summary .star-rating svg {
        width: 16px;
        height: 16px;
    }

    .category-short-text, .category-text {
        padding: 24px 16px;
    }

        .category-short-text .qoute {
            display: none;
        }

        .category-text img {
            max-height: 140px;
            object-fit: cover;
        }

    .category-info .accordion-item {
        padding: 24px 16px;
    }

        .category-info .accordion-item:has(.show) button {
            font-size: 16px;
        }

    .category-page .product-card:not(.landscape) {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        height: 100% !important;
    }

    .category-page h3.card-title {
        overflow: unset !important;
        margin-bottom: 16px;
    }

    .category-page img {
        height: 160px !important;
        object-fit: scale-down !important;
    }
    .category-page .product-card:not(.landscape) .card-body {
        display: unset !important;
        max-width: 100%!important;
        width: 100%!important;
    }
    .category-page .card-body {
        display: unset !important;
    }

    .category-page .product-card:not(.landscape) .price-action {
        display: flex !important;
        flex-direction: row-reverse !important;
        align-items: center !important;
        padding: 0px;
        gap: 9px;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 28px;
        justify-content: space-between !important;
    }
    .category-page .product-card:not(.landscape) .price-action {
        display: flex !important;
        flex-direction: column !important;
        flex-direction: column !important;
        justify-content: space-around !important;
        flex-wrap: wrap;
        margin: auto;
        text-align: center;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .category-page .product-card .price-action .btn.btn-dark.btn-sm {
        width: 100% !important;
        max-width: 100% !important;
    }
    .product-large-img img {
        max-height: 200px;
        object-fit: scale-down;
    }
}

/* Devices >=600px and <992px */
@media (min-width: 600px) and (max-width: 991.98px) {
    .index-h1 h1 {
        font-size: 24px;
        font-weight: 600;
    }

    .filter-mobile {
        display: -webkit-box !important;
    }

    .filter-desktop, .sort-desktop {
        display: none !important;
    }

    .desktop, .desktop-flex {
        display: none !important;
    }

    .desktop-inline {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .mobile-none {
        display: none;
    }

    .desktop-none {
        display: block;
    }

    .banner-desktop {
        margin-top: 136px;
    }

        .banner-desktop .card-img-overlay,
        .row-banner .right-overlay,
        .row-banner .left-overlay {
            margin-right: 0;
            top: 8%;
            text-align: center;
            padding: 0 5% !important;
        }

        .banner-desktop h1,
        .row-banner h2,
        .row-banner p {
            font-size: var(--font-size-heading);
        }

        .banner-desktop p {
            font-size: var(--font-size-subheading);
        }

        .banner-desktop a,
        .row-banner .btn {
            font-size: var(--font-size-btn);
        }

    .row-banner {
        margin: 64px 0;
    }

        .row-banner .right-overlay,
        .row-banner .left-overlay {
            top: 5%;
        }

    .navbar-scrolled .menu {
        margin: 0;
    }

    .menu-fa {
        display: block !important;
    }

    .blog-img {
        padding: 0;
    }

    .cart-img {
        transition: none !important;
    }

        .cart-img:hover {
            transform: none !important;
        }

    .product-card {
        width: 100% !important;
    }

    .address-section {
        display: flex;
        justify-content: start;
        padding-left: 8px;
        padding-right: 8px;
        align-content: center;
        margin-bottom: 15px;
    }

    .order-m-1 {
        order: 1 !important;
    }

    .order-m-0 {
        order: 0 !important;
    }

    .about-us img {
        width: 100%;
        height: 300px;
        margin-bottom: 24px;
    }

    .category-page .product-card:not(.landscape) {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        height: 100% !important;
    }

    .category-page h3.card-title {
        overflow: unset !important;
        margin-bottom: 16px;
    }

    .category-page img {
        height: 160px !important;
        object-fit: scale-down !important;
    }

    .category-page .card-body {
        display: unset !important;
    }

    .category-page .product-card:not(.landscape) .price-action {
        display: flex !important;
        flex-direction: row-reverse !important;
        align-items: center !important;
        padding: 0px;
        gap: 9px;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 28px;
        justify-content: space-between !important;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .banner-desktop {
        margin-top: 64px;
    }
    .categories .section-header {
        margin-top: 32px;
    }
    .offer-products {
        margin-top: 40px;
    }
    .mobile-bottom-nav {
        width: 400px!important;
    }
        .mobile-bottom-nav > div {
            width: 400px!important;
        }
    .navbar {
        padding-top: 16px;
    }
    .product-card:not(.landscape) .card-body, .product-card:not(.landscape) .card-title {
        width: 100% !important;
        max-width: 100% !important;
    }
    .product-card:not(.landscape) .price-action .btn {
        width: auto !important; 
    }
    .category-page .product-card:not(.landscape) .card-body {
        display: unset !important;
    }
    .category-page .product-card:not(.landscape) {
        display: block !important;
    }
        .category-page .product-card:not(.landscape) .card-title {
            margin-bottom: 16px !important;
            margin-top: 16px !important;
        }
    .category-page .product-card:not(.landscape) .price-action {
        display: flex !important;
        flex-direction: row-reverse !important;
        align-items: center !important;
        padding: 0px;
        gap: 9px;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 28px;
        justify-content: space-between !important;
    }
    .product-large-img img {
        max-height: 400px;
        object-fit: scale-down;
    }
}