:root {
  --wo-search-navy: #040f3d;
  --wo-search-navy-soft: #0b1d59;
  --wo-search-gold: #dea14b;
  --wo-search-gold-dark: #b97820;
  --wo-search-blue: #4b65bf;
  --wo-search-blue-dark: #3f58ad;
  --wo-search-ink: #172033;
  --wo-search-muted: #667085;
  --wo-search-border: #e3e7ef;
  --wo-search-soft: #f6f8fc;
  --wo-search-white: #fff;
  --wo-search-success: #16794b;
  --wo-search-danger: #b42318;
  --wo-search-container: 1210px;
  --wo-search-radius-sm: 8px;
  --wo-search-radius-md: 14px;
  --wo-search-radius-lg: 22px;
  --wo-search-shadow-sm: 0 8px 24px rgba(4, 15, 61, 0.07);
  --wo-search-shadow-md: 0 18px 48px rgba(4, 15, 61, 0.12);
}

.wo-search-page,
.wo-search-page * {
  box-sizing: border-box;
}

.wo-search-page {
  margin: 0;
  color: var(--wo-search-ink);
  background: var(--wo-search-white);
  font-family: Inter, Montserrat, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wo-search-page img {
  max-width: 100%;
}

.wo-search-page a {
  color: inherit;
}

.wo-search-page button,
.wo-search-page input,
.wo-search-page select {
  font: inherit;
}

.wo-search-container {
  width: min(calc(100% - 32px), var(--wo-search-container));
  margin-inline: auto;
}

.wo-search-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.wo-search-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--wo-search-gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wo-search-page svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Fallback header */
.wo-search-fallback-header {
  color: var(--wo-search-navy);
  background: #fff;
  border-bottom: 1px solid var(--wo-search-border);
}

.wo-search-fallback-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wo-search-logo {
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
}

.wo-search-logo strong {
  color: var(--wo-search-gold);
}

.wo-search-fallback-header nav {
  display: flex;
  gap: 24px;
}

.wo-search-fallback-header nav a {
  font-weight: 700;
  text-decoration: none;
}

/* Hero */
.wo-search-hero {
  padding: 28px 0 48px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 15%, rgba(222, 161, 75, 0.2), transparent 28%),
    linear-gradient(135deg, var(--wo-search-navy), var(--wo-search-navy-soft));
}

.wo-search-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.wo-search-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.wo-search-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wo-search-hero__content {
  max-width: 850px;
}

.wo-search-hero .wo-search-eyebrow {
  color: #f0c67f;
}

.wo-search-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.wo-search-hero__content > p {
  max-width: 720px;
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.wo-search-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 780px;
  min-height: 60px;
  padding: 5px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.wo-search-form__icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 21px;
  display: inline-flex;
  width: 21px;
  height: 21px;
  color: var(--wo-search-muted);
  transform: translateY(-50%);
  pointer-events: none;
}

.wo-search-form input {
  width: 100%;
  min-width: 0;
  padding: 14px 48px 14px 50px;
  border: 0;
  border-radius: 9px;
  outline: 0;
  color: var(--wo-search-ink);
  background: #fff;
  font-size: 1rem;
}

.wo-search-form input::placeholder {
  color: #8a93a4;
}

.wo-search-form input[aria-invalid="true"] {
  box-shadow: inset 0 0 0 2px var(--wo-search-danger);
}

.wo-search-form__clear {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 126px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--wo-search-muted);
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.wo-search-form__clear:hover {
  color: var(--wo-search-navy);
  background: var(--wo-search-soft);
}

.wo-search-form__clear svg {
  width: 18px;
  height: 18px;
}

.wo-search-form__submit {
  min-width: 115px;
  padding: 13px 22px;
  border: 0;
  border-radius: 9px;
  color: var(--wo-search-navy);
  background: var(--wo-search-gold);
  font-weight: 900;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.wo-search-form__submit:hover {
  background: #e7ad5b;
  transform: translateY(-1px);
}

.wo-search-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.87rem;
  font-weight: 700;
}

.wo-search-hero__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.wo-search-hero__benefits svg {
  width: 17px;
  height: 17px;
  color: #f0c67f;
}

/* Ads */
.wo-search-top-ad {
  padding-top: 26px;
}

.wo-home-ad {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--wo-search-border);
  border-radius: var(--wo-search-radius-md);
  background: #fff;
  box-shadow: var(--wo-search-shadow-sm);
}

.wo-home-ad__label {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 8px;
  padding: 3px 7px;
  border-radius: 4px;
  color: #fff;
  background: rgba(4, 15, 61, 0.82);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wo-home-ad__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.wo-home-ad__picture {
  display: block;
  flex: 1 1 auto;
}

.wo-home-ad__picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.wo-home-ad__content {
  display: flex;
  flex: 1 1 440px;
  align-items: center;
  gap: 18px;
  padding: 24px;
}

.wo-home-ad__title {
  color: var(--wo-search-navy);
  font-size: 1.05rem;
}

.wo-home-ad__text {
  color: var(--wo-search-muted);
  font-size: 0.9rem;
}

.wo-home-ad .wo-home-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 7px;
  color: #fff;
  background: var(--wo-search-blue);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.wo-search-ad--sidebar .wo-home-ad__link,
.wo-search-ad--sidebar .wo-home-ad__content {
  flex-direction: column;
  align-items: flex-start;
}

.wo-search-ad--sidebar .wo-home-ad__content {
  gap: 10px;
  padding: 28px 18px 18px;
}

/* Toolbar and layout */
.wo-search-results-section {
  padding: 42px 0 76px;
  background: var(--wo-search-soft);
}

.wo-search-results-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.wo-search-results-toolbar__count {
  margin: 0;
  color: var(--wo-search-navy);
  font-size: 1.08rem;
  font-weight: 900;
}

.wo-search-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.wo-search-active-filters a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid #cfd7e7;
  border-radius: 999px;
  color: var(--wo-search-navy);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.wo-search-active-filters a:hover {
  border-color: var(--wo-search-blue);
}

.wo-search-active-filters svg {
  width: 14px;
  height: 14px;
}

.wo-search-active-filters .wo-search-active-filters__clear {
  border-color: transparent;
  color: var(--wo-search-blue-dark);
  background: transparent;
}

.wo-search-filter-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid var(--wo-search-border);
  border-radius: 8px;
  color: var(--wo-search-navy);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.wo-search-filter-toggle svg {
  width: 18px;
  height: 18px;
}

.wo-search-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.wo-search-sidebar {
  position: sticky;
  top: 20px;
}

.wo-search-filters {
  padding: 22px;
  border: 1px solid var(--wo-search-border);
  border-radius: var(--wo-search-radius-md);
  background: #fff;
  box-shadow: var(--wo-search-shadow-sm);
}

.wo-search-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.wo-search-filters__header h2 {
  margin: 0;
  color: var(--wo-search-navy);
  font-size: 1.05rem;
}

.wo-search-filters__header button {
  display: none;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--wo-search-navy);
  background: var(--wo-search-soft);
  cursor: pointer;
}

.wo-search-filters__header svg {
  width: 18px;
  height: 18px;
}

.wo-search-filter-group + .wo-search-filter-group {
  margin-top: 18px;
}

.wo-search-filter-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--wo-search-navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.wo-search-filter-group select {
  width: 100%;
  min-height: 44px;
  padding: 9px 34px 9px 11px;
  border: 1px solid #d5dbe6;
  border-radius: 7px;
  outline: 0;
  color: var(--wo-search-ink);
  background: #fff;
}

.wo-search-filter-group select:focus {
  border-color: var(--wo-search-blue);
  box-shadow: 0 0 0 3px rgba(75, 101, 191, 0.14);
}

.wo-search-filter-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 22px;
  padding: 11px 16px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--wo-search-blue);
  font-weight: 900;
  cursor: pointer;
}

.wo-search-filter-submit:hover {
  background: var(--wo-search-blue-dark);
}

.wo-search-filter-reset {
  display: block;
  margin-top: 13px;
  color: var(--wo-search-blue-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.wo-search-filter-reset:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wo-search-sidebar-ad {
  margin-top: 20px;
}

/* Results */
.wo-search-result-list {
  display: grid;
  gap: 16px;
}

.wo-search-result-card {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 225px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--wo-search-border);
  border-radius: var(--wo-search-radius-md);
  background: #fff;
  box-shadow: 0 5px 18px rgba(4, 15, 61, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.wo-search-result-card:hover {
  border-color: #cbd3e2;
  box-shadow: var(--wo-search-shadow-sm);
  transform: translateY(-1px);
}

.wo-search-result-card--sponsored {
  border-color: rgba(222, 161, 75, 0.72);
  box-shadow: 0 9px 28px rgba(222, 161, 75, 0.12);
}

.wo-search-result-card__media {
  position: relative;
  display: grid;
  min-height: 218px;
  place-items: center;
  padding: 24px 18px;
  border-right: 1px solid var(--wo-search-border);
  background: #fff;
}

.wo-search-result-card__media a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.wo-search-result-card__media img {
  display: block;
  width: 100%;
  max-width: 160px;
  height: 168px;
  object-fit: contain;
}

.wo-search-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  border-radius: 5px;
  color: var(--wo-search-navy);
  background: #f3d9ae;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.wo-search-badge--sponsored {
  color: #fff;
  background: var(--wo-search-navy);
}

.wo-search-result-card__content {
  min-width: 0;
  padding: 24px 26px;
}

.wo-search-result-card__brand {
  margin: 0 0 4px;
  color: var(--wo-search-gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wo-search-result-card h2 {
  margin: 0;
  color: var(--wo-search-navy);
  font-size: 1.18rem;
  line-height: 1.25;
}

.wo-search-result-card h2 a {
  text-decoration: none;
}

.wo-search-result-card h2 a:hover {
  color: var(--wo-search-blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wo-search-result-card__description {
  margin: 10px 0 13px;
  color: var(--wo-search-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.wo-search-result-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-top: 12px;
  color: var(--wo-search-muted);
  font-size: 0.76rem;
}

.wo-search-result-card__meta strong {
  color: var(--wo-search-ink);
  font-weight: 700;
}

.wo-search-compare-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: var(--wo-search-blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.wo-search-compare-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wo-search-compare-link svg {
  width: 18px;
  height: 18px;
}

.wo-search-result-card__offer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-left: 1px solid var(--wo-search-border);
  background: #fbfcfe;
}

.wo-search-result-card__price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 8px;
}

.wo-search-result-card__price-label {
  width: 100%;
  color: var(--wo-search-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.wo-search-result-card__old-price {
  color: #8b93a2;
  font-size: 0.82rem;
  text-decoration: line-through;
}

.wo-search-result-card__price {
  width: 100%;
  margin-top: 1px;
  color: var(--wo-search-navy);
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.wo-search-result-card__shop {
  width: 100%;
  margin-top: 3px;
  color: var(--wo-search-muted);
  font-size: 0.8rem;
}

.wo-search-result-card__delivery,
.wo-search-result-card__shipping {
  margin: 11px 0 0;
  color: var(--wo-search-success);
  font-size: 0.77rem;
  font-weight: 800;
}

.wo-search-result-card__delivery {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wo-search-result-card__delivery svg {
  width: 17px;
  height: 17px;
}

.wo-search-result-card__shipping {
  margin-top: 4px;
}

.wo-search-shop-button {
  display: flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 17px;
  padding: 11px 15px;
  border-radius: 8px;
  color: #fff !important;
  background: var(--wo-search-blue);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
  box-shadow: 0 8px 17px rgba(75, 101, 191, 0.2);
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.wo-search-shop-button:link,
.wo-search-shop-button:visited,
.wo-search-shop-button:hover,
.wo-search-shop-button:focus,
.wo-search-shop-button:active {
  color: #fff !important;
  text-decoration: none !important;
}

.wo-search-shop-button:hover {
  background: var(--wo-search-blue-dark);
  box-shadow: 0 10px 22px rgba(75, 101, 191, 0.28);
  transform: translateY(-1px);
}

.wo-search-shop-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

/* Empty state */
.wo-search-empty {
  padding: 64px 30px;
  border: 1px solid var(--wo-search-border);
  border-radius: var(--wo-search-radius-lg);
  background: #fff;
  text-align: center;
  box-shadow: var(--wo-search-shadow-sm);
}

.wo-search-empty--initial {
  max-width: 760px;
  margin: 4px auto 0;
}

.wo-search-empty__icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 17px;
  place-items: center;
  border-radius: 50%;
  color: var(--wo-search-blue);
  background: #edf1ff;
}

.wo-search-empty__icon svg {
  width: 29px;
  height: 29px;
}

.wo-search-empty h2 {
  margin: 0;
  color: var(--wo-search-navy);
  font-size: 1.6rem;
}

.wo-search-empty p {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--wo-search-muted);
}

.wo-search-empty__actions,
.wo-search-empty__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 23px;
}

.wo-search-empty__links a {
  color: var(--wo-search-blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.wo-search-empty__links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Buttons */
.wo-search-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.wo-search-button--primary {
  color: #fff !important;
  background: var(--wo-search-blue);
}

.wo-search-button--primary:hover {
  background: var(--wo-search-blue-dark);
}

.wo-search-button--secondary {
  color: var(--wo-search-navy);
  border-color: #ced5e2;
  background: #fff;
}

/* Pagination */
.wo-search-pagination {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.wo-search-pagination > a {
  color: var(--wo-search-blue-dark);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.wo-search-pagination__next {
  text-align: right;
}

.wo-search-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.wo-search-pagination__pages a,
.wo-search-pagination__pages span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  color: var(--wo-search-navy);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.wo-search-pagination__pages a:hover {
  box-shadow: inset 0 0 0 1px var(--wo-search-blue);
}

.wo-search-pagination__pages .is-current {
  color: #fff;
  background: var(--wo-search-navy);
}

/* Bottom help */
.wo-search-help {
  padding: 52px 0;
  color: #fff;
  background: var(--wo-search-navy);
}

.wo-search-help__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wo-search-help .wo-search-eyebrow {
  color: #f0c67f;
}

.wo-search-help h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.wo-search-help p {
  max-width: 650px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.wo-search-help__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.wo-search-help .wo-search-button--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.wo-search-fallback-footer {
  padding: 44px 0;
  color: #d8deed;
  background: #020a2c;
}

.wo-search-fallback-footer strong {
  color: #fff;
}

.wo-search-fallback-footer p {
  margin: 8px 0 0;
}

.wo-search-filter-backdrop {
  position: fixed;
  z-index: 9998;
  inset: 0;
  background: rgba(4, 15, 61, 0.58);
}

.wo-search-filter-backdrop[hidden] {
  display: none;
}

/* Focus */
.wo-search-page a:focus-visible,
.wo-search-page button:focus-visible,
.wo-search-page input:focus-visible,
.wo-search-page select:focus-visible {
  outline: 3px solid rgba(222, 161, 75, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .wo-search-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
  }

  .wo-search-result-card {
    grid-template-columns: 165px minmax(0, 1fr);
  }

  .wo-search-result-card__offer {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 22px;
    padding: 18px 22px;
    border-top: 1px solid var(--wo-search-border);
    border-left: 0;
  }

  .wo-search-result-card__delivery,
  .wo-search-result-card__shipping {
    grid-column: 1;
  }

  .wo-search-shop-button {
    grid-column: 2;
    grid-row: 1 / span 3;
    min-width: 210px;
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  .wo-search-filter-toggle {
    display: inline-flex;
  }

  .wo-search-layout {
    display: block;
  }

  .wo-search-sidebar {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88vw, 360px);
    overflow-y: auto;
    padding: 18px;
    background: var(--wo-search-soft);
    box-shadow: -20px 0 48px rgba(4, 15, 61, 0.22);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .wo-search-sidebar.is-open {
    transform: translateX(0);
  }

  .wo-search-filters__header button {
    display: grid;
  }

  .wo-search-sidebar-ad {
    margin-bottom: 20px;
  }

  .wo-search-filter-open {
    overflow: hidden;
  }
}

@media (max-width: 680px) {
  .wo-search-container {
    width: min(calc(100% - 24px), var(--wo-search-container));
  }

  .wo-search-fallback-header__inner {
    min-height: 66px;
  }

  .wo-search-fallback-header nav {
    display: none;
  }

  .wo-search-hero {
    padding: 20px 0 34px;
  }

  .wo-search-breadcrumb {
    margin-bottom: 18px;
  }

  .wo-search-hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .wo-search-hero__content > p {
    font-size: 0.94rem;
  }

  .wo-search-form {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 6px;
  }

  .wo-search-form input {
    min-height: 51px;
    padding-right: 47px;
  }

  .wo-search-form__clear {
    top: 31px;
    right: 15px;
  }

  .wo-search-form__submit {
    min-height: 48px;
  }

  .wo-search-hero__benefits {
    gap: 9px 16px;
  }

  .wo-search-results-section {
    padding: 30px 0 54px;
  }

  .wo-search-results-toolbar {
    align-items: center;
  }

  .wo-search-result-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .wo-search-result-card__media {
    min-height: 178px;
    padding: 23px 10px 15px;
  }

  .wo-search-result-card__media img {
    height: 125px;
  }

  .wo-search-badge {
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    padding: 4px 6px;
    font-size: 0.55rem;
  }

  .wo-search-result-card__content {
    padding: 18px 16px;
  }

  .wo-search-result-card h2 {
    font-size: 1rem;
  }

  .wo-search-result-card__description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 0.8rem;
  }

  .wo-search-result-card__meta {
    display: none;
  }

  .wo-search-compare-link {
    margin-top: 12px;
    font-size: 0.76rem;
  }

  .wo-search-result-card__offer {
    display: block;
    padding: 17px;
  }

  .wo-search-result-card__price {
    font-size: 1.42rem;
  }

  .wo-search-shop-button {
    width: 100%;
    min-width: 0;
    margin-top: 14px;
  }

  .wo-search-pagination {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }

  .wo-search-pagination__pages a,
  .wo-search-pagination__pages span {
    width: 34px;
    height: 34px;
  }

  .wo-search-help__inner {
    display: block;
  }

  .wo-search-help__actions {
    margin-top: 22px;
    flex-direction: column;
  }

  .wo-search-help__actions .wo-search-button {
    width: 100%;
  }

  .wo-home-ad__link,
  .wo-home-ad__content {
    display: block;
  }

  .wo-home-ad__content {
    padding: 22px 16px 16px;
  }

  .wo-home-ad__text {
    display: block;
    margin: 8px 0 12px;
  }
}

@media (max-width: 440px) {
  .wo-search-result-card {
    display: block;
  }

  .wo-search-result-card__media {
    min-height: 205px;
    border-right: 0;
    border-bottom: 1px solid var(--wo-search-border);
  }

  .wo-search-result-card__media img {
    height: 170px;
  }

  .wo-search-filter-toggle {
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wo-search-page *,
  .wo-search-page *::before,
  .wo-search-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
