@media only screen and (min-width: 1024px) {
    .desktop-logo{
    margin-left: 55px !important;
  }
   .hero-slide-des{
        display: block !important;
    }
    .hero-slide-mobile{
        display: none !important;
    }
 

}
@media only screen and (min-width: 1200px) {
    .hero-slide-des{
        display: block !important;
    }
    .hero-slide-mobile{
        display: none !important;
    }
}

@media only screen and (min-width: 992px) {
    /* Laptop styles */ .hero-slide-des{
        display: block !important;
    }
    .hero-slide-mobile{
        display: none !important;
    }
}
/* mobile media query */
@media only screen and (max-width: 767px) {
    .hero-slide-mobile{
        display: block !important;
    }
    .hero-slide-des{
        display: none !important;
    }
    .wrap-sw-over {
  padding-bottom: 40px;
  margin-bottom: -40px;
  padding-left: 60px !important;
  margin-left: -30px;
}
}
@media only screen and (max-width: 480px) {
     .hero-slide-mobile{
        display: block !important;
    }
    .hero-slide-des{
        display: none !important;
    }
}
   /* Bottom black overlay on slider image */
.hero-slide-des .wrap-slider {
    position: relative;
}

.hero-slide-des .wrap-slider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%; /* overlay height */
    background: linear-gradient(
        to top,
        rgba(5, 5, 5, 0.616),
        rgba(0, 0, 0, 0.014)
    );
    pointer-events: none;
}
.shop-now-btn {
  font-size: 15px;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.shop-now-btn .arrow {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* hover effect (optional, premium look) */
.shop-now-btn:hover .arrow {
  transform: translateX(4px);
}
.shop-new:hover{
    text-decoration: underline;
}

.viewMoreBtn {
    text-align: center;
    width: 137px;
    background-color: #5c443e;
    border-radius: 39px;
    margin: auto;
    padding: 12px 0;
    color: white;
    font-weight: 500;
    font-size: 18px !important;
}
      /* =========================================
   DESKTOP HEADER – EXACT SCREENSHOT DESIGN
   ========================================= */
        @media (min-width: 1200px) {

            header#header {
                width: 100%;
                background: #fff;
                border-bottom: 1px solid #e5e5e5;
            }

            .px_15.lg-px_40 {
                padding: 0 40px;
            }

            .wrapper-header {
                display: grid !important;
                grid-template-columns: 220px 1fr 220px;
                align-items: center;
                height: 70px;
            }

            /* REMOVE BOOTSTRAP GRID EFFECT */
            .wrapper-header>[class*="col-"] {
                all: unset;
            }

            /* ================= LOGO ================= */
            .logo-header {
                display: flex;
                align-items: center;
            }

            .logo-header img {
                height: 38px;
                width: auto;
            }

            /* ================= MENU ================= */
            .box-navigation {
                display: flex;
                justify-content: center;
            }

            .box-nav-ul {
                display: flex;
                align-items: center;
                gap: 40px;
                margin: 0;
                padding: 0;
            }

            .box-nav-ul li {
                list-style: none;
            }

            .box-nav-ul a {
                font-family: 'Figtree', sans-serif;
                font-size: 15px;
                font-weight: 400 !important;
                color: #111;
                text-decoration: none;
            }

            .box-nav-ul a:hover {
                color: #000;
            }

            /* ================= ICONS ================= */
            .nav-icon {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                gap: 22px;
            }

            .nav-icon-item {
                position: relative;
            }

            .nav-icon-item i {
                font-size: 20px;
                color: #111;
            }

            .count-box {
                position: absolute;
                top: -6px;
                right: -8px;
                width: 18px;
                height: 18px;
                background: #000;
                color: #fff;
                font-size: 11px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* ================= HIDE MOBILE ================= */
            .tf-lg-hidden {
                display: none !important;
            }
        }

        @media (min-width: 1200px) {

            .desktop-toggle {
                margin-left: 10px;
                cursor: pointer;
            }

            .desktop-toggle svg {
                color: #111;
                transition: 0.2s;
            }

            .desktop-toggle:hover svg {
                color: #000;
            }

        }