/* Search Modal Styles */
.search-menu-item {
  display: inline-block; }

.search-menu-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  font-size: 1rem;
  transition: opacity 0.2s ease;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>');
  color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px; }
  .search-menu-button:hover {
    opacity: 0.7; }
  .search-menu-button:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px; }

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center; }
  .search-modal[hidden] {
    display: none; }
  .search-modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer; }
  .search-modal__content {
    position: relative;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease; }
  .search-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem; }
  .search-modal__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold; }
  .search-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
    flex-shrink: 0;
    transition: opacity 0.2s ease; }
    .search-modal__close:hover {
      opacity: 0.7; }
    .search-modal__close:focus {
      outline: 2px solid currentColor;
      outline-offset: 2px; }
  .search-modal__form {
    display: block; }
  .search-modal__input-wrapper {
    display: flex;
    gap: 0.5rem; }
  .search-modal__input {
    flex: 1;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.2s ease; }
    .search-modal__input:focus {
      outline: none;
      border-color: #333;
      box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1); }
  .search-modal__button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;
    transition: background-color 0.2s ease; }
    .search-modal__button:hover {
      background-color: #555; }
    .search-modal__button:focus {
      outline: 2px solid #333;
      outline-offset: 2px; }

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0; }
  to {
    transform: translateY(0);
    opacity: 1; } }
@media (max-width: 576px) {
  .search-modal__content {
    width: 95%;
    padding: 1.5rem; }
  .search-modal__header {
    flex-direction: column;
    align-items: flex-start; }
  .search-modal__close {
    align-self: flex-end;
    margin-top: -0.5rem; }
  .search-modal__input-wrapper {
    flex-direction: column; }
  .search-modal__button {
    width: 100%;
    justify-content: center; } }
.mobile_nav .search-menu-item {
  padding: 10px 5%; }

/*# sourceMappingURL=search.css.map */
