.hero-section {
  width: 100%;
  height: 75vh; /* Adjusted from 60vh */
  overflow: hidden;
  margin-bottom: 2rem;
}


.hero-background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section .content-wrapper {
  position: relative;
  z-index: 2;
}


 .wishlist-btn {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
  }




  .color-swatch.active {
  border: 3px solid #000 !important;
  box-shadow: 0 0 0 2px #fff, 0 0 6px 2px rgba(0, 0, 0, 0.3);
}

  .z-1050 {
    z-index: 1050;
  }

  select.form-select:focus {
  box-shadow: none;
  border-color: #ced4da; /* optional: keep default border */
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-decoration: none;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
  }

  /* 🔒 Lock parent and child dropdown hover */
.dropdown-item-wrapper {
  position: relative;
}

.dropdown-item-wrapper .child-dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 800px;
  max-width: 90vw;
  z-index: 1050;
  background-color: white;
}

.dropdown-item-wrapper:hover .child-dropdown-menu {
  display: block;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  margin-top: 0; /* Optional: removes weird margin on some systems */
}

@media (min-width: 992px) {
  .category-parent-wrapper:hover > .child-dropdown-menu {
    display: block !important;
  }

  .child-dropdown-menu a:hover {
    background-color: #f8f9fa;
  }

}

/* Ensure submenu appears on hover */
.dropdown:hover .submenu {
  display: block;
}

.submenu {
  display: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dropdown-item {
  padding: 8px 16px;
  color: #333;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

/* Style the "No products" area */
.no-products {
  color: #777;
  padding: 10px;
  text-align: center;
  background-color: #f1f1f1;
}


.bi-share-fill:hover {
  color: #0d6efd;
  transform: scale(1.1);
}

 .share-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important; /* Force full circle */
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    padding: 0 !important; /* Remove button padding */
  }

  .share-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  }

  .share-icon i {
    font-size: 1.5rem;
    line-height: 1;
  }

  .modal-content {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 16px;
  }

  .input-group input {
    border-radius: 8px 0 0 8px;
  }

  .input-group .btn {
    border-radius: 0 8px 8px 0;
  }
  @media (max-width: 991px) {
  .category-parent-wrapper > a:focus + .child-dropdown-menu,
  .category-parent-wrapper:hover > .child-dropdown-menu {
    display: block !important;
  }

}