/** Shopify CDN: Minification failed

Line 209:10 Unexpected "{"
Line 209:19 Expected ":"
Line 210:10 Unexpected "{"
Line 210:19 Expected ":"
Line 223:10 Unexpected "{"
Line 223:19 Expected ":"

**/
.search-dropdown__content {
  padding: 24px 56px !important;
}


/* ===============================
   Header Search Container
================================ */
.headersearch {
  position: relative;
}

/* Search icon positioning - match other header icons */
.headericon--search {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}

/* ===============================
   Icon Toggle Styles
================================ */
.headericon--summary span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.headericon--summary .svg-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Default state - show search icon, hide close icon */
.headericon--summary .svg-wrapper:first-child {
  opacity: 1;
  visibility: visible;
}

.headericon--summary .header__icon-close {
  opacity: 0;
  visibility: hidden;
}

/* When details is open - hide search icon, show close icon */
.headersearch details[open] .headericon--summary .svg-wrapper:first-child {
  opacity: 0;
  visibility: hidden;
  width: 4rem;
  height: 4rem;
}

.headersearch details[open] .headericon--summary .headericon-close {
  opacity: 1;
  visibility: visible;
}

/* ===============================
   Search Dropdown
================================ */
.search-dropdown {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  margin-top: 16px;
  background: rgb(var(--color-background));
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.headersearch details[open] .search-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-dropdowncontent {
  padding: 16px 42px;
}

.search-row {
  display: flex;
  align-items: top;
  width: 100%;
}

.search-modalform {
  flex: 1;
}



/* ===============================
   Search Button - Left Side
================================ */
.searchbutton {
  flex-shrink: 0;
  width: 5.2rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.searchbutton .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

.searchbutton svg {
  width: 2rem;
  height: 2rem;
}

/* ===============================
   Search Input - Updated
================================ */
.searchinput {
  flex: 1;
  padding: 2.2rem 0.8rem 0.8rem 0;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  outline: none;
  min-width: 0;
  color: rgb(var(--color-foreground));
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.searchinput::placeholder {
  color: transparent;
}

.searchinput::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.searchinput::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

/* ===============================
   Clear Button - Right Side
================================ */
.clearbutton {
  flex-shrink: 0;
  margin-right: 8px;
  padding: 0 1.6rem;
  background: none;
  border: none;
  font-style: italic;
  cursor: pointer;
  color: rgba(var(--color-foreground), 0.7);
  text-decoration: underline;
  transition: color 0.2s ease;
  align-self: center;
  font-size: 1.4rem;
}


.clearbutton.hidden {
  display: none;
}

/* Legacy support for clear button */
.clear__button.hidden {
  display: none;
}

/* ===============================
   Floating Label - Updated
================================ */
.section-{{ section.id }}-padding .field__label,
.section-{{ section.id }}-padding .fieldlabel {
  position: absolute;
  left: 5.2rem; /* Start after search button */
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.6);
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 1;
}

/* Float label when focused or has content */
.section-{{ section.id }}-padding .searchinput:focus ~ .fieldlabel,
.searchinput:not(:placeholder-shown) ~ .fieldlabel,
.searchinput:focus ~ .field__label,
.searchinput:not(:placeholder-shown) ~ .field__label {
  top: 0.6rem;
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.8);
  transform: none;
}

/* ===============================
   Legacy Support - Keep existing functionality
================================ */
/* Reset button (keeping for backwards compatibility) */
.reset__button {
  background: transparent;
  border: none;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reset__button svg {
  width: 2rem;
  height: 2rem;
}

/* Original search button support */
.search__button {
  flex-shrink: 0;
  width: 5.2rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.search__button .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

.search__button svg {
  width: 2rem;
  height: 2rem;
}

/* Original input support */
.search__input {
  flex: 1;
  padding: 2.2rem 0.8rem 0.8rem 0;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  outline: none;
  min-width: 0;
  color: rgb(var(--color-foreground));
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search__input::placeholder {
  color: transparent;
}

.search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.search__input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

/* ===============================
   Close Button Fix
================================ */
.search-modal__close-button {
  position: static;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  /* Force better anti-aliasing */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===============================
   Responsive Design
================================ */
@media screen and (max-width: 750px) {
  .search-dropdown {
    width: 300px;
    right: -50px;
  }
}

@media screen and (max-width: 480px) {
  .search-dropdown {
    width: 280px;
    right: -80px;
  }
}