.th-hero-wrapper .hero-1
{
height: 70vh;
}
/* Add this CSS to your stylesheet */

/* Sticky sidebar for large screens */
@media (min-width: 992px) {
  .sidebar-area.style3 {
    position: sticky;
    top: -255px; /* Distance from top when sticky */
    align-self: flex-start; /* Prevents stretching */
    max-height: calc(100vh - 40px); /* Prevents overflow */
    /* overflow-y: auto; Adds scroll if content is too tall */
  }

  /* Optional: Smooth scrolling for the sidebar */
  .sidebar-area.style3 {
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
  }

  .sidebar-area.style3::-webkit-scrollbar {
    width: 6px;
  }

  .sidebar-area.style3::-webkit-scrollbar-track {
    background: #f5f5f5;
  }

  .sidebar-area.style3::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }

  .sidebar-area.style3::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
}

/* Alternative approach: Sticky individual widgets */
@media (min-width: 992px) {
  .widget.sticky-form,
  .widget.widget_offer {
    position: sticky;
    top: 20px;
  }

  /* Add spacing between sticky widgets */
  .widget.sticky-form {
    margin-bottom: 20px;
  }
}

.categories {
  position: relative;
}

.categories .readmore {
  position: relative;
  cursor: pointer;
}

.categories .dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 0px;
  z-index: 999;
  min-width: 180px;
}

.categories .readmore:hover .dropdown-list {
  display: flex;
 flex-wrap: wrap;
 gap: 10px;
}

.more-categories li{
    color:black;
   background: linear-gradient(to right, var(--yellow-color), #eeff4488);
    padding: 5px;
    font-size: 12px;
    border-radius: 0px;
    line-height: 11px;
    font-weight: 500;
    display: inline-block;
    line-height: 11px;
    height: fit-content;
}
a.whatsapp {
    position: fixed;
    z-index: 9999;
    right: 20px;
    bottom: 80px;
}

.space-bottom {
    padding-bottom: 80px;
}