.mobile-search-bar {
    display: none;
}

@media (min-width:993px) and (max-width:1200px) {
    .sold-out-text {
        font-size: 1.1rem;
    }

    .new-product-img a {
        height: 200px;
    }

    #product-details .title {
        font-weight: 600;
        font-size: 1.8rem;
    }
}

@media (min-width:992px) {
    .single-product-buttons {
        display: flex;
        gap: 15px;
    }

    .single-product-buttons .btn-outline-soft {
        margin-top: 0px !important;
    }
}

@media(max-width:992px) {
    .top-bar {
        height: 30px;
        padding: 0 10px;
    }

    .top-bar .container {
        padding: 0;
        display: flex !important;
        gap: 20px;
    }

    .top-bar .container spam {
        margin-left: 0 !important;
    }

    .show_only_dextop {
        display: none;
    }

    .phone_email_wapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 5px;
    }

    .top-left {
        display: block;
        line-height: 18px;
        width: 100%;
    }

    .top-left span,
    .top-right {
        display: none !important;
    }

    .top-email {
        display: block !important;
        line-height: 18px;
    }

    .main-header,
    .desktop-nav,
    .category-wrap {
        display: none !important;
    }

    .mobile-header {
        display: flex;
        height: 72px;
        background: #f5f5f5;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        position: relative;
        z-index: 1000;
    }

    .mobile-header.hide {
        display: none !important;
    }

    .mobile-header .logo {
        width: 100px;
        overflow: hidden;
    }

    .mobile-header .logo img {
        width: 100%;
        overflow: hidden;
    }

    .offcanvas-header .logo {
        width: 100px;
        overflow: hidden;
    }

    .offcanvas-header .logo img {
        width: 100%;
        overflow: hidden;
    }

    .mobile-menu-btn,
    .mobile-search-btn,
    .mobile-filter-btn,
    .mobile-back-btn {
        border: 0;
        background: transparent;
        padding: 0;
        font-size: 18px;
        color: #111;
        line-height: 1;
    }

    .mobile-menu-btn {
        font-size: 22px;
        color: #777;
    }

    .mobile-icons {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 22px;
    }

    .whatsapp {
        color: #08c75a;
    }

    .messenger {
        color: #1877f2;
    }

    .mobile-seller-dropdown {
        position: relative;
    }

    .mobile-seller-menu {
        display: none;
        position: absolute;
        right: 0;
        top: 36px;
        width: 220px;
        background: #fff;
        box-shadow: 0 5px 18px rgba(0, 0, 0, .16);
        z-index: 9999;
    }

    .mobile-seller-menu a {
        display: block;
        padding: 8px 10px;
        color: #6b6b85;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid #eee;
    }

    .mobile-seller-dropdown:hover .mobile-seller-menu,
    .mobile-seller-dropdown.active .mobile-seller-menu {
        display: block;
    }

    .mobile-search-bar {
        height: 72px;
        background: #f5f5f5;
        align-items: center;
        gap: 10px;
        padding: 0 16px;
        position: fixed;
        z-index: 1001;
        width: 100%;
        top: 0;
    }

    .mobile-search-bar.active {
        display: flex !important;
    }

    .mobile-back-btn {
        width: 20px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }

    .mobile-search-input {
        height: 40px;
        flex: 1;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: var(--radius-1);
        display: flex;
        align-items: center;
        padding: 0 12px;
        gap: 10px;
    }

    .mobile-search-input input {
        flex: 1;
        border: 0;
        outline: 0;
        background: transparent;
        font-size: 14px;
        min-width: 0;
    }

    .mobile-offcanvas {
        width: 90% !important;
        z-index: 99999;
    }

    .mobile-offcanvas .offcanvas-body {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .mobile-offcanvas .offcanvas-body a {
        padding: 10px 13px;
        color: #111;
        text-decoration: none;
        font-size: 13px;
    }

    .container {
        max-width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        overflow: hidden;
    }

    .hero-section .hero-wrap,
    .hero-section .banner-slider,
    .hero-section .banner-slider .owl-stage-outer,
    .hero-section .banner-slider .owl-stage,
    .hero-section .banner-slider .owl-item,
    .hero-section .banner-slider .item,
    .hero-section .banner-slider img {
        height: 300px;
    }

    .hero-section .mega-menu {
        display: none !important;
    }

    .flash-sale-section .flash-header {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        align-content: center;
    }

    .flash-sale-section .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-category-section .featured-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-section .service-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    #cart-section .cart-row {
        grid-template-columns: 56px 76px 1fr;
        grid-template-areas:
            "remove img info"
            "price qty total";
    }

    #cart-section .cart-row> :nth-child(1) {
        grid-area: remove;
    }

    #cart-section .cart-row> :nth-child(2) {
        grid-area: img;
    }

    #cart-section .cart-row> :nth-child(3) {
        grid-area: info;
    }

    #cart-section .cart-row> :nth-child(4) {
        grid-area: price;
        text-align: left;
    }

    #cart-section .cart-row> :nth-child(5) {
        grid-area: qty;
        justify-self: start;
    }

    #cart-section .cart-row> :nth-child(6) {
        grid-area: total;
        text-align: right;
    }

    #cart-section .qty-wrap {
        justify-content: flex-start;
    }

    .footer-section .footer-top {
        display: block;
    }

    .best-selling-section .best-header,
    .new-products-header,
    .top-brand-header {
        padding-left: 5px;
        padding-right: 5px;
    }

    .footer-section .footer-about,
    .footer-widget.footer-accordion,
    .footer-bottom p {
        padding-left: 5px;
    }

    .footer-accordion-first {
        padding-top: 15px;
    }

    #checkout-section .order-head,
    #checkout-section .order-row {
        grid-template-columns: 1fr 110px 110px;
    }

    #checkout-section .order-head .hide-sm,
    #checkout-section .order-row .imgcell {
        grid-column: 1 / 2;
    }

    #checkout-section .order-row {
        grid-template-areas:
            "prod price total";
    }

    .new-product-card .new-actions {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    #products-section #products {
        grid-template-columns: repeat(4, 1fr);
        gap: 0px;
    }

    #tab-wishlist .wishlist-custom {
        grid-template-columns: repeat(5, 1fr);
        gap: 0px;
    }

    .app-shell .sidebar {
        display: none;
    }

    .show-only-phone {
        display: block !important;
    }

    .floating-contact-wrapper {
        bottom: 75px;
        right: 10px;
    }
}


@media (min-width:577px) and (max-width:992px) {
    .top-category-section .top-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #products-section #products {
        grid-template-columns: repeat(3, 1fr);
        gap: 0px;
    }

    #tab-wishlist .wishlist-custom {
        grid-template-columns: repeat(3, 1fr);
        gap: 0px;
    }

    .product-filter-hide {
        display: none;
    }

    .product-filter-menu {
        display: block !important;
    }
}

@media (min-width:576px) and (max-width:772px) {

    .hero-section .hero-wrap,
    .hero-section .banner-slider,
    .hero-section .banner-slider .owl-stage-outer,
    .hero-section .banner-slider .owl-stage,
    .hero-section .banner-slider .owl-item,
    .hero-section .banner-slider .item,
    .hero-section .banner-slider img {
        height: 250px;
    }

    .sold-out-text {
        font-size: 1rem;
    }

    .top-category-section .top-category-card {
        min-height: 170px;
        padding: 8px 8px;
    }
}

@media (min-width:576px) {
    #scrollToTopBtn {
        bottom: 10px;
        right: 70px;
    }
}

@media (min-width:576px) and (max-width:991px) {
   .featured-category-section .featured-category-grid{
        grid-template-columns: repeat(4, 1fr);
   }

   .featured-category-section .featured-category-card {
        min-height: 140px;
        padding: 15px 5px;
        display: grid;
        align-items: center;
        gap: 0px;
        justify-content: center;
    }

    .featured-category-section .category-content h3 {
        font-size: 12px;
        text-align: center;
    }

    #product-details .title {
        font-weight: 600;
        font-size: 1.5rem;
    }
}


@media(max-width:575px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #products-section #products {
        grid-template-columns: repeat(2, 1fr);
    }

    #tab-wishlist .wishlist-custom {
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }

    .flash-sale-section .flash-sale-section {
        padding: 25px 0;
    }

    .flash-sale-section .flash-title {
        font-size: 24px;
    }

    .flash-sale-section .flash-links {
        width: 100%;
        gap: 12px;
        flex-wrap: wrap;
        display: flex;
        justify-content: center;
    }

    .flash-sale-section .flash-links a {
        font-size: 12px;
    }

    .flash-sale-section .flash-links a+a {
        padding-left: 12px;
    }

    .flash-sale-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flash-sale-section .product-card {
        min-height: 210px;
        padding: 12px 8px;
    }

    .flash-sale-section .product-img {
        height: 110px;
    }

    .flash-sale-section .product-img img {
        max-height: 110px;
    }

    .flash-sale-section .product-price {
        font-size: 15px;
    }

    .flash-sale-section .old-price {
        font-size: 13px;
    }

    .flash-sale-section .product-card:hover {
        transform: translateY(-3px) scale(1.01);
    }

    .flash-sale-section .product-tooltip {
        max-width: 150px;
        white-space: normal;
        text-align: center;
        font-size: 11px;
    }

    .flash-slide .product-grid> :nth-child(3) {
        display: none !important;
    }

    .best-selling-section .best-selling-section {
        padding: 25px 0;
    }

    .best-selling-section .best-header h2 {
        font-size: 20px;
    }

    .new-products-section {
        padding: 10px 0;
    }

    .new-products-header h2 {
        font-size: 20px;
    }

    .new-product-card {
        min-height: 300px;
        padding: 10px 10px;
    }

    .new-product-img {
        margin-bottom: 16px;
    }

    .new-product-card h3 {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .new-actions button {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .new-cart-btn {
        height: 32px;
        font-size: 11px;
        font-weight: 600;
    }

    .top-category-section .top-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .top-category-section .top-category-card {
        min-height: 95px;
        padding: 4px 0px;
    }

    .top-category-section .category-img {
        width: 95px;
        height: 65px;
    }

    .top-category-section .category-content h5 {
        font-size: 12px;
        font-weight: 500;
    }

    .featured-category-section .featured-category-section {
        padding: 25px 0;
    }

    .featured-category-section .featured-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .featured-category-section .featured-category-card {
        min-height: 15px;
        padding: 4px 0px;
        display: grid;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    .featured-category-section .category-img {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .featured-category-section .category-content h3 {
        font-size: 10px;
        text-align: center;
    }

    .featured-category-section .category-content ul li a {
        font-size: 13px;
    }

    .top-brand-section .top-brand-section {
        padding: 25px 0;
    }

    .top-brand-section .top-brand-header h2 {
        font-size: 20px;
    }

    .top-brand-section .brand-card {
        min-height: 185px;
        padding: 24px 12px 22px;
    }

    .top-brand-section .brand-img {
        height: 90px;
        margin-bottom: 14px;
    }

    .top-brand-section .brand-img img {
        max-width: 115px;
        max-height: 85px;
    }

    .service-section {
        padding: 18px 0;
    }

    .service-section .service-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-section .service-item {
        padding: 14px;
        border: 1px solid #eee;
        display: grid !important;
        text-align: center;
    }

    .service-section .service-item .service-icon {
        margin: 0 auto;
    }

    .footer-section {
        padding: 25px 0 34px;
        background: #000;
    }

    .footer-section .footer-about {
        text-align: center;
        padding-bottom: 34px;
    }

    .footer-section .tagline {
        font-size: 12px;
        margin-bottom: 18px;
        color: var(--warning-color);
    }

    .footer-section .follow-title {
        display: none;
    }

    .footer-section .social-links {
        justify-content: center;
        gap: 16px;
    }

    .footer-section .social-links a {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .footer-section .footer-accordion {
        border-top: 1px solid rgba(255, 255, 255, .08);
        cursor: pointer;
    }

    .footer-section .footer-accordion:last-of-type {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-section .footer-widget h3 {
        margin: 0;
        padding: 20px 15px;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        text-transform: capitalize;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-section .footer-widget h3 span {
        display: inline-block;
        color: #8b8f99;
        font-size: 20px;
        font-weight: 700;
    }

    .footer-section .footer-widget ul,
    .footer-section .footer-accordion-content {
        display: none;
        padding: 0 15px 18px;
    }

    .footer-section .footer-accordion.active ul,
    .footer-section .footer-accordion.active .footer-accordion-content {
        display: block;
    }

    .footer-section .footer-widget ul li {
        margin-bottom: 10px;
    }

    .footer-section .footer-bottom {
        margin-top: 35px;
        flex-direction: column;
        gap: 22px;
        text-align: center;
        margin-bottom: 3rem;
    }

    .footer-section .payment-img img {
        height: auto;
        max-height: 32px;
    }

    .footer-section .footer-bottom p {
        font-size: 14px;
    }

    .hero-section .cart-dropdown-wrapper {
        display: none;
    }

    .floating-social {
        right: 14px;
        bottom: 78px;
        gap: 10px;
    }

    .floating-social a {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .hero-section .hero-wrap,
    .hero-section .banner-slider,
    .hero-section .banner-slider .owl-stage-outer,
    .hero-section .banner-slider .owl-stage,
    .hero-section .banner-slider .owl-item,
    .hero-section .banner-slider .item,
    .hero-section .banner-slider img {
        height: 180px;
    }

    #catZone .cat-ava {
        width: 100%;
        height: 100px;
        border-radius: var(--radius-1);
        margin: 0 auto 0px;
    }

    #catZone .cat-tile {
        padding: 5px 3px;
    }

    #catZone .cat_name {
        font-size: 12px;
    }

    #contact-section .form-card {
        padding: 20px;
    }

    .sold-out-text {
        font-size: 1rem;
        font-weight: 500;
    }

    #checkout-section .order-head {
        display: grid;
        justify-content: center;
        grid-template-columns: unset !important;
    }

    #checkout-section .order-head .text-center , #checkout-section .order-head .text-end{
        text-align: left !important;
    }

    #checkout-section .order-row {
        display: grid;
        justify-content: center;
    }

    #checkout-section .order-row {
        grid-template-areas: unset;
    }

    #checkout-section .order-row {
        grid-template-columns: unset;
    }

    #checkout-section .price, #checkout-section .total {
        text-align: left !important;
    }
    #product-details .title {
        font-weight: 600;
        font-size: 1.1rem;
    }
}


@media (max-width:400px) {
    .new-product-img a {
        height: 150px;
    }
    .sold-out-stamp {
        top: 48%;
        width: 160px;
    }

    #product-details .title {
        font-weight: 600;
        font-size: 0.9rem;
    }
}
