/* === SEARCH FIELD === */
.ajax-search-field {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.popup-content-first {
  max-width: 1200px;
  margin: 0 auto;
}

.ajax-search-field input {
  width: 100%;
  padding: 15px;
  font-size: 22px;
  background: #1a1a1a80;
  color: #EDB86E;
  border: none;
  border-radius: 6px 6px 0 0;
  font-family: 'Playfair Display', serif;
  transition: all 0.3s ease;
  outline: none;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(270deg, #050607, #BA9056 50%, #151517);
  border-image-slice: 1;
}

.ajax-search-field input:focus {
  border-bottom-color: #f0c578;
  background-color: #222;
}

.ajax-search-field label {
  position: absolute;
  left: 12px;
  top: 18px;
  font-size: 20px;
  color: #aaa;
  pointer-events: none;
  transition: all 0.2s ease;
  background: #1a1a1a;
  padding: 0 4px;
  font-family: 'LucidaCalligraphy', cursive;
}

.ajax-search-field input:focus + label,
.ajax-search-field input:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: #EDB86E;
  background: #1a1a1a;
}

/* === AJAX SEARCH RESULTS === */
.ajax-search-results {
  margin-top: 15px;
  border: 1px solid #333;
  max-height: calc(100vh - 541px);
  overflow-y: auto;
  display: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(270deg, #050607, #BA9056 50%, #151517);
  border-image-slice: 1;
}

.ajax-item {
  display: flex;
  padding: 10px;
  align-items: center;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(270deg, #050607, #BA9056 50%, #151517);
  border-image-slice: 1;
}

.ajax-img {
  width: 60px;
  height: auto;
  margin-right: 10px;
}

.ajax-info {
  flex: 1;
  color: #EDB86E;
  text-align: left;
  font-size: 13px;
  padding-right: 35px;
}

.ajax-prices {
  text-align: right;
  white-space: nowrap;
  margin-right: 28px;
  font-size: 14px;
  font-style: italic;
  
}

.ajax-price-special,
.ajax-price-normal {
  color: #EDB86E;
  font-weight: bold;
}

.ajax-price-old {
  text-decoration: line-through;
  color: #999;
  margin-left: 5px;
}

.ajax-no-results {
  padding: 10px;
  text-align: center;
  color: #EDB86E;
  font-family: 'LucidaCalligraphy', cursive;
}

.ajax-product {
  display: flex;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

/* Scrollbar */
#ajaxSearchResults::-webkit-scrollbar {
  width: 5px;
}

#ajaxSearchResults::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-left: 1px solid #333;
}

#ajaxSearchResults::-webkit-scrollbar-thumb {
  background: #EDB86E;
  border-radius: 4px;
  transition: background 0.3s ease;
}

#ajaxSearchResults::-webkit-scrollbar-thumb:hover {
  background: #f0c578;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .popup-content-first {
    width: 100% !important;
  }

  .ajax-search-field input {
    font-size: 16px;
    padding: 12px;
  }

  .ajax-search-field label {
    font-size: 14px;
    top: 14px;
  }

  .ajax-search-results {
    max-height: calc(100vh - 233px);
  }
  .ajax-info {
    font-size: 8px;
   
}
.ajax-prices {
    margin-right: 8px;
    font-size: 9px;
    margin-left: 8px;
}
.ajax-item {
 padding: 5px !important;
}
}
