/* Desktop */
body {
    padding-top: 200px;
}

/* Tablet */
@media (max-width: 991px) {
    body {
        padding-top: 120px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    body {
        padding-top: 80px;
    }
}


.search-overlay {
    position: fixed;
    inset: 0;
    background: #f6f6ec;
    z-index: 9999;
    padding: 40px 80px;
}

.search-overlay-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.search-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    padding: 6px 0;
    cursor: pointer;
    font-size: 14px;
}

.search-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.search-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
}

.search-product-card img {
    width: 100%;
    border-radius: 10px;
}

.search-product-card .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
}



.page-header{
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}
.header.header-2.header-intro-clearance {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
}
.product-image-manual {
    width: 100%;
    height: 190px; /* Adjust this value for your desired square size */
    object-fit: cover;
    object-position: center;
    border-radius: 6px; /* optional for soft corners */
    background-color: #f8f8f8; /* fallback background */
}

.page-header {
    padding: 1.5rem 0 1.5rem !important;
}
.product-manual{
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}
    /* Footer Bar */
    .mobile-footer {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding-bottom: 10px;
      border-top: 1px solid #ddd;
      box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
      z-index: 999;
    }
    .btn-cart{
        border-radius: 7px;
    }

    .mobile-footer a {
      flex: 1;
      text-align: center;
      font-size: 14px;
      text-decoration: none;
      color: #333;
    }

    .mobile-footer a i {
      display: block;
      font-size: 3rem;
      
    }

    /* Show only on mobile */
    @media(min-width: 768px) {
      .mobile-footer {
        display: none;
      }
    }.btn-wishlist.active {
    color: #fff !important;
    background-color: #e63946 !important; /* red heart */
    border-radius: 50%;
    border-color: #e63946 !important;
}




/* Mobile */
@media (max-width: 575px) {
    .intro-slider-container,
    .intro-slide {
        height: 250px !important;
    }
}
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile search */
.mobile-search {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
}

.mobile-search input {
    border: none;
    outline: none;
    padding: 6px 12px;
    width: 150px;
    font-size: 13px;
}

.mobile-search button {
    border-radius: 0;
    padding: 6px 12px;
}



/* Smaller width on very small screens */
@media (max-width: 575px) {

    .mobile-search {
        display: none;
    }
    .mobile-search input {
        width: 110px;
    }

  .nav-pills.nav-big .nav-item+.nav-item {
    margin-left: 0rem !important;
  }
}
