.search-modal {
  display: none;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100vw;
  height: 310px;
  z-index: 9999;
  background: #A31C38;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.search-modal.active {
  display: flex;
}

.search-modal__content {
  width: 100vw;
  height: 310px;
  min-height: 310px;
  max-height: 310px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: #A31C38;
}

.search-modal__header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 32px 40px 0 40px;
  position: sticky;
  top: 0;
  background: #A31C38;
  z-index: 1;
}

.search-modal__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}

.search-modal__search-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  overflow-y: auto;
  flex: 1 1 auto;
}

.search-modal__search-label {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-style: italic;
  letter-spacing: 0.1em;
  align-self: flex-start;
}

.search-modal__form {
  display: flex;
  width: 100%;
  height: 62px;
  align-items: center;
  gap: 20px;
}

.search-modal__input {
  flex: 1;
  padding: 18px 24px;
  border-radius: 32px !important;
  border: none;
  font-size: 1.3rem;
  outline: none;
  background: #fff;
}

.search-modal__button {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50% !important;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
  margin-left: 0 !important;
}

.search-modal__button:hover {
  background: rgba(255,255,255,0.1);
}

.search-modal__icon {
  width: 24px;
  height: 24px;
  display: block;
} 