/* ============================
   Search Overlay
============================ */
.qcp-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6rem;
  overflow-y: auto;
  transition: opacity 0.3s ease;
}

.qcp-search-overlay.hidden {
  display: none;
  opacity: 0;
}

.qcp-search-overlay-inner {
  position: relative;
    width: 94%;
    max-width: 100%;
    background: #fff;
    color: #000;
    padding: 1rem 5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* ============================
   Search search toggle Button
============================ */
.search-toggle{

  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Add spacing */
.search-toggle {
  margin-right: 30px; /* adjust gap */
}

/* ============================
   Close Button
============================ */
.qcp-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: #000;
  transition: transform 0.2s;
}

.qcp-close:hover {
  transform: scale(1.1);
}

/* ============================
   Input Field
============================ */
.qcp-search-input {
  width: 100%;
  padding: 15px 30px;
  font-size: 1.2rem;
  border: none;
  background: transparent;
  outline: none;
  font-family: "GT America", sans-serif;
}

.search-block-form-divider {
    width: 85%;
    display: flex;
    justify-content: center;
    position: absolute;
    padding-left: 30px;
}

div#search-tabs {margin-left: 30px;margin-right: 35px;}

/* ============================
   Tabs
============================ */
.search-tabs {
  display: flex;
  gap: 2rem;
  margin: 16px  35px 32px 30px;
  border-bottom: 1px solid #ddd;
  
}

.search-tabs .tab {
  font-family: "GT America", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem 0;
  color: #777;
  position: relative;
  transition: color 0.2s;
}

.search-tabs .tab:hover {
  color: #000;
}

.search-tabs .tab.active {
  color: #000;
  font-weight: 700;
  background:none;
}
.search-tabs.hidden {
  display: none !important;
}

.search-tabs .tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

.search-tabs .count {
  margin-left: 6px;
  color: #999;
  font-weight: 600;
}

/* ============================
   Results Grid
============================ */
.search-results {
  margin: 16px 30px 30px 30px;
}

.results-heading {
  border-top: 1px solid #000;
  margin: 2rem 0 1rem;
  color: #000;
  font-family: "GT America", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.search-item {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-item a {
    background-color: #F7F6F6;
    display: flex;
    width: 274.25px;
    padding-right: 18px;
    align-items: center;
    gap: 18px;
}

.search-item img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  flex-shrink: 0;
}

.search-item .title {
  color: #000;
    font-family: "GT America";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 19.2px;	
}

/* ============================
   No Results
============================ */
.no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  gap: 1rem;
  text-align: center;
}

.no-results-txt {
 
 font-family: "Lyon Arabic Display";
font-size: 60px;
font-style: normal;
font-weight: 500;
line-height: 60px;


}

.no-results-btn {
  padding: 12px 24px;
  background-color: #EEFF75;
  border: none;
  cursor: pointer;
   font-family: "GT America";
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
   transition: background 0.2s;
  
 
}

