.elementor-917 .elementor-element.elementor-element-2c27bdb{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--padding-top:50px;--padding-bottom:30px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-917 .elementor-element.elementor-element-a154533 > .elementor-widget-container{padding:0px 0px 0px 0px;}#elementor-popup-modal-917 .dialog-widget-content{animation-duration:0.5s;background-color:#58A0B500;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}#elementor-popup-modal-917{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-917 .dialog-message{width:710px;height:auto;}#elementor-popup-modal-917 .dialog-close-button{display:flex;top:10%;font-size:20px;}body:not(.rtl) #elementor-popup-modal-917 .dialog-close-button{right:3%;}body.rtl #elementor-popup-modal-917 .dialog-close-button{left:3%;}@media(min-width:768px){.elementor-917 .elementor-element.elementor-element-2c27bdb{--content-width:700px;}}/* Start custom CSS for html, class: .elementor-element-a154533 *//* Container styling */
.refined-search {
  display: flex;
  flex-wrap: wrap; /* allows wrapping if needed */
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background-color: rgba(0, 0, 0, 0.6); /* slightly more opaque */
  border-radius: 20px;
  width: 3000px;
  margin: 0 auto;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  width: 100%; /* allows full section width */
}

/* Input field */
.refined-search input[type="text"] {
  flex: 1 1 auto; /* expands but doesn’t shrink too much */
  min-width: 300px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Red Hat Display', sans-serif;
  padding: 16px 20px;
  box-sizing: border-box;
}

.refined-search input::placeholder {
  color: #ccc;
}

/* Radio buttons */
.search-type {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  margin-right: 24px; /* more room from search button */
}

.search-type label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}

.search-type input[type="radio"] {
  accent-color: #FDCE34;
  width: 16px;
  height: 16px;
}

/* Search button */
.refined-search-button {
  flex: 0 0 auto;
  background-color: #FFFFFF !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50px;
  padding: 0 24px;
  height: 55px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Red Hat Display', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.refined-search-button:hover {
  background-color: #FDCE34 !important;
  color: #000000 !important;
}

/* Mobile */
@media (max-width: 768px) {
  .refined-search {
    flex-direction: column;
    border-radius: 16px;
    padding: 20px;
  }

  .refined-search-button {
    width: 100%;
    border-radius: 10px;
    margin-top: 12px;
  }

  .search-type {
    justify-content: center;
    margin-right: 0;
  }
}


.elementor-popup-modal {
  backdrop-filter: blur(6px);
}

.refined-search {
  padding: 14px 20px;
  background-color: rgba(0, 0, 0, 0.8); /* ← Already semi-transparent */
}/* End custom CSS */