:root {
  --id-primary: #33bfba;
  --id-primary-soft: rgba(51, 191, 186, 0.14);
  --id-primary-deep: #2aa9a4;
  --id-on-primary: #2f3338;
  --id-glow: rgba(51, 191, 186, 0.16);
  --id-page-bg: #fafafa;
  --id-bg-mid: #f4f6f6;
  --id-black: #2a2d31;
  --id-ink: #2f3338;
  --id-text: #353a40;
  --id-muted: #8a8f94;
  --id-line: #ececec;
  --id-soft: #f7f7f7;
  --id-white: #ffffff;
  --id-sale: #da3f3f;
  --id-flash: #ffdb7d;
  --id-radius: 12px;
  --id-radius-sm: 8px;
  --id-shadow: 0 1px 2px rgba(42, 45, 49, 0.05), 0 8px 24px rgba(42, 45, 49, 0.05);
  --id-shadow-hover: 0 4px 8px rgba(42, 45, 49, 0.05), 0 16px 40px rgba(42, 45, 49, 0.09);
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "DM Serif Display", Georgia, serif;
  --shell: min(1100px, calc(100% - 3rem));
  --site-header-height: 64px;
  --site-topbar-height: 36px;
  --site-chrome-height: calc(var(--site-topbar-height) + var(--site-header-height));
  --id-agent-gradient: #2a2d31;
  --id-agent-gradient-hover: #1f2226;
  --id-agent-fg: #ffffff;
}

html {
  color-scheme: light;
}

body,
.topbar,
.site-footer,
.product-card__cta,
.ais-Pagination-link,
.site-footer__newsletter-form button,
.site-footer__eyebrow,
.site-footer__shop-link,
.site-footer__contact-list a,
.site-footer__links a {
  transition:
    background-color 0.45s ease,
    color 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--id-text);
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.shell {
  width: var(--shell);
  max-width: 100%;
  margin-inline: auto;
}

/* Top chrome (fixed) */
.site-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 40;
  background: var(--id-white);
}

.site-top-spacer {
  height: var(--site-chrome-height);
  flex-shrink: 0;
}

/* Top bar */
.topbar {
  background: var(--id-ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--site-topbar-height);
  padding-block: 0.4rem;
}

.topbar__promo,
.topbar__meta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.topbar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--id-primary);
  box-shadow: 0 0 0 3px var(--id-primary-soft);
  flex-shrink: 0;
}

.topbar__promo strong {
  color: #fff;
  font-weight: 700;
}

.topbar a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: var(--id-primary);
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar__sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
}

/* Header */
.site-header {
  background: var(--id-white);
  border-bottom: 1px solid var(--id-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--site-header-height);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  height: 40px;
  order: 1;
}

.brand img {
  width: auto;
  height: 36px;
  display: block;
  border-radius: 0;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
  height: 40px;
  order: 3;
}

/* Category nav */
.site-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  order: 2;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.05rem;
  height: 40px;
}

.site-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 40px;
  padding: 0 0.6rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--id-ink);
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.site-nav__icon-wrap,
.site-nav__chevron,
.site-nav__label {
  display: block;
  flex-shrink: 0;
}

.site-nav__icon-wrap {
  width: 16px;
  height: 16px;
  line-height: 0;
}

.site-nav__icon {
  display: block;
  width: 16px;
  height: 16px;
  color: var(--id-ink);
  opacity: 0.82;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.site-nav__label {
  line-height: 16px;
  height: 16px;
  font-size: 0.875rem;
}

.site-nav__chevron {
  width: 10px;
  height: 10px;
  opacity: 0.45;
}

.site-nav__item--group > .site-nav__link {
  color: var(--id-text);
  font-weight: 600;
}

.site-nav__item--group > .site-nav__link .site-nav__icon {
  opacity: 0.7;
}

.site-nav__item:nth-child(2),
.site-nav__item--group:last-child {
  margin-left: 0.35rem;
  padding-left: 0.55rem;
}

.site-nav__item:nth-child(2)::before,
.site-nav__item--group:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background: var(--id-line);
  transform: translateY(-50%);
  pointer-events: none;
}

.site-nav__link:hover,
.site-nav__item.is-open > .site-nav__link {
  background: var(--id-soft);
  color: var(--id-ink);
}

.site-nav__link:hover .site-nav__icon,
.site-nav__item.is-open > .site-nav__link .site-nav__icon {
  opacity: 1;
  color: var(--id-ink);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  padding: 0.45rem;
  background: var(--id-white);
  border: 1px solid var(--id-line);
  border-radius: var(--id-radius-sm);
  box-shadow: var(--id-shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 50;
}

.site-nav__item:hover > .site-nav__dropdown,
.site-nav__item:focus-within > .site-nav__dropdown,
.site-nav__item.is-open > .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.site-nav__dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--id-text);
}

.site-nav__dropdown a:hover {
  background: var(--id-soft);
  color: var(--id-ink);
}

.site-nav__subitem {
  position: relative;
}

.site-nav__flyout {
  position: absolute;
  top: -0.45rem;
  left: calc(100% + 4px);
  min-width: 210px;
  padding: 0.45rem;
  background: var(--id-white);
  border: 1px solid var(--id-line);
  border-radius: var(--id-radius-sm);
  box-shadow: var(--id-shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateX(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 51;
}

.site-nav__subitem:hover > .site-nav__flyout,
.site-nav__subitem:focus-within > .site-nav__flyout {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 40px;
  border: 1px solid var(--id-line);
  background: var(--id-white);
  color: var(--id-ink);
  padding: 0 0.85rem;
  border-radius: var(--id-radius-sm);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(2px);
}

.nav-drawer__panel {
  width: min(360px, 92vw);
  height: 100%;
  background: var(--id-white);
  box-shadow: 12px 0 40px rgba(42, 45, 49, 0.14);
  display: flex;
  flex-direction: column;
  animation: rise 0.3s ease both;
}

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--id-line);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.nav-drawer__close {
  border: 0;
  background: var(--id-soft);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-drawer__body {
  overflow: auto;
  padding: 0.5rem 0.75rem 1.5rem;
}

.nav-acc {
  border-bottom: 1px solid var(--id-line);
}

.nav-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 0.5rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--id-ink);
}

.nav-acc__label,
.nav-acc > a.nav-acc__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-acc__btn .site-nav__icon-wrap {
  width: 18px;
  height: 18px;
}

.nav-acc__btn .site-nav__icon {
  width: 18px;
  height: 18px;
  opacity: 0.85;
}

.nav-acc__panel {
  display: none;
  padding: 0 0.35rem 0.85rem;
}

.nav-acc.is-open .nav-acc__panel {
  display: grid;
  gap: 0.15rem;
}

.nav-acc__panel a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--id-text);
}

.nav-acc__panel a:hover {
  background: var(--id-soft);
}

.nav-acc__sub {
  margin: 0.15rem 0 0.35rem 0.7rem;
  padding-left: 0.7rem;
  border-left: 2px solid var(--id-line);
  display: grid;
  gap: 0.1rem;
}

.nav-acc__sub a {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--id-muted);
}

.close-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 40px;
  border: 1px solid #ececec;
  background: #ffffff;
  color: #6b7075;
  padding: 0 0.9rem;
  border-radius: var(--id-radius-sm);
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.close-search svg {
  display: block;
  flex-shrink: 0;
  opacity: 0.75;
}

.close-search:hover {
  background: var(--id-soft);
  border-color: var(--id-line);
  color: var(--id-ink);
}

.close-search:hover svg {
  opacity: 1;
}

.close-search span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Main */
.main {
  padding: 2.25rem 0 4.5rem;
  overflow-x: clip;
}

.search-hero {
  margin-bottom: 2rem;
  animation: rise 0.5s ease both;
}

.search-hero__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #3a3a3a;
  text-transform: none;
}

.search-hero__sub {
  margin: 0 0 1.35rem;
  color: var(--id-muted);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--id-white);
  border: 1px solid transparent;
  border-radius: var(--id-radius);
  padding: 0.95rem 1.15rem 0.95rem 1.35rem;
  box-shadow: var(--id-shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box:focus-within {
  border-color: var(--id-primary);
  box-shadow: 0 0 0 4px var(--id-primary-soft), var(--id-shadow);
}

.search-box__icon {
  flex-shrink: 0;
  color: var(--id-muted);
}

#searchbox,
.ais-SearchBox,
.ais-SearchBox-form {
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.search-box__agent {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.65rem 1.15rem;
  border-radius: 12px;
  background: var(--id-agent-gradient, #2a2d31);
  color: var(--id-agent-fg, #fff);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.2s ease, color 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.search-box__agent:hover {
  background: var(--id-agent-gradient-hover, #1f2226);
  color: var(--id-agent-fg, #fff);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.search-box__agent:active {
  transform: translateY(0);
}

.search-box__agent-icon {
  flex-shrink: 0;
  color: currentColor;
}

.search-box__agent span {
  display: inline-block;
}

.ais-SearchBox-form {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.ais-SearchBox-input {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--id-ink);
}

.ais-SearchBox-input::placeholder {
  color: #b5b5b5;
  font-weight: 400;
}

.ais-SearchBox-submit,
.ais-SearchBox-reset {
  display: none;
}

/* Loader */
.loader-wrap {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: 280px;
  color: var(--id-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.loader {
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--id-primary);
  box-shadow: 0 0 0 0 var(--id-primary-soft);
  animation: pulse 1.4s infinite linear;
  position: relative;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 var(--id-primary-soft);
  animation: inherit;
}

.loader::before {
  animation-delay: -0.45s;
}

.loader::after {
  animation-delay: -0.9s;
}

@keyframes pulse {
  100% {
    box-shadow: 0 0 0 28px transparent;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Layout */
.search-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  animation: fade-in 0.45s ease both;
  min-width: 0;
}

.results {
  min-width: 0;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.filters {
  position: sticky;
  top: calc(var(--site-chrome-height) + 12px);
  max-height: calc(100dvh - var(--site-chrome-height) - 24px);
  display: grid;
  gap: 0;
  align-content: start;
  background: var(--id-white);
  border-radius: var(--id-radius);
  box-shadow: var(--id-shadow);
  padding: 0.35rem 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.filters__head {
  display: none;
}

.filters__clear {
  padding: 0.75rem 1rem 0.35rem;
}

.filters__clear:has(.ais-ClearRefinements-button--disabled),
.filters__clear:has(.filters__clear-btn.is-disabled) {
  display: none;
}

.ais-ClearRefinements-button,
.filters__clear-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--id-line);
  border-radius: var(--id-radius-sm);
  background: var(--id-soft);
  color: var(--id-ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.ais-ClearRefinements-button:hover,
.filters__clear-btn:hover {
  background: var(--id-white);
  border-color: color-mix(in srgb, var(--id-primary) 45%, var(--id-line));
  color: var(--id-primary-deep);
}

.ais-ClearRefinements-button--disabled,
.filters__clear-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.filter-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--id-line);
  border-radius: 0;
  overflow: visible;
}

.filter-card:last-child {
  border-bottom: 0;
}

.filter-card__title {
  margin: 0;
  padding: 0.85rem 1rem 0.35rem;
  background: transparent;
  border: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--id-muted);
}

.filter-card section {
  padding: 0.25rem 1rem 0.85rem;
}

.ais-SortBy-select {
  width: 100%;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--id-muted) 50%) right 12px top 50% / 5px 5px no-repeat,
    linear-gradient(135deg, var(--id-muted) 50%, transparent 50%) right 7px top 50% / 5px 5px no-repeat,
    var(--id-soft);
  border: 0;
  border-radius: var(--id-radius-sm);
  padding: 0.45rem 1.8rem 0.45rem 0.65rem;
  color: var(--id-ink);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ais-SortBy-select:hover,
.ais-SortBy-select:focus {
  background-color: #efefef;
  outline: none;
}

.ais-RefinementList-list,
.ais-NumericMenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.05rem;
  max-height: 220px;
  overflow: auto;
}

.ais-RefinementList-label,
.ais-NumericMenu-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 450;
  line-height: 1.25;
  color: var(--id-text);
  padding: 0.22rem 0.3rem;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.ais-RefinementList-label:hover,
.ais-NumericMenu-label:hover {
  background: var(--id-soft);
}

.ais-RefinementList-checkbox,
.ais-NumericMenu-radio {
  accent-color: var(--id-primary);
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.ais-RefinementList-count {
  margin-left: auto;
  color: var(--id-muted);
  font-size: 0.62rem;
  font-weight: 500;
}

.ais-RefinementList-count::before {
  content: "";
}

.ais-RefinementList-count::after {
  content: "";
}

.ais-RefinementList-item--selected .ais-RefinementList-labelText,
.ais-NumericMenu-item--selected .ais-NumericMenu-labelText {
  color: var(--id-black);
  font-weight: 600;
}

.ais-RefinementList-labelText,
.ais-NumericMenu-labelText {
  font-size: inherit;
  text-transform: lowercase;
}

.ais-RefinementList-labelText::first-letter,
.ais-NumericMenu-labelText::first-letter {
  text-transform: uppercase;
}

/* Results */
.results__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.results__toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.results__hint {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--id-muted);
}

.grid-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem;
  background: var(--id-white);
  border-radius: var(--id-radius-sm);
  box-shadow: var(--id-shadow);
}

.grid-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--id-ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.grid-switch__btn:hover {
  background: var(--id-soft);
  color: var(--id-ink);
}

.grid-switch__btn.is-active {
  background: var(--id-ink);
  color: #fff;
}

.grid-switch__btn svg {
  display: block;
  width: 14px;
  height: 14px;
}

.btn-filters {
  display: none;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: var(--id-ink);
  color: #fff;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
}

.filters-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(2px);
  z-index: 90;
}

/* Product grid */
.ais-Hits-list,
.gallery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.hits-grid[data-cols="2"] .ais-Hits-list,
.hits-grid[data-cols="2"] .gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hits-grid[data-cols="3"] .ais-Hits-list,
.hits-grid[data-cols="3"] .gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hits-grid[data-cols="4"] .ais-Hits-list,
.hits-grid[data-cols="4"] .gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ais-Hits-item,
.gallery-item {
  list-style: none;
  display: flex;
  min-width: 0;
  align-self: stretch;
}

.product-card {
  background: var(--id-white);
  border: 0;
  border-radius: var(--id-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 1 auto;
  box-shadow: var(--id-shadow);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  animation: rise 0.45s ease both;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--id-shadow-hover);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  margin: 0.85rem 0.85rem 0;
  padding: 0.75rem;
  background: var(--id-white);
  border-radius: calc(var(--id-radius) - 2px);
  overflow: hidden;
  flex-shrink: 0;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__flag {
  position: absolute;
  top: 12px;
  left: 12px;
  margin: 0;
  padding: 0.3rem 0.55rem;
  background: var(--id-flash);
  color: var(--id-black);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  border-radius: 999px;
  list-style: none;
  z-index: 1;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem 1.2rem;
  flex: 1 1 auto;
}

.product-card__heading {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.product-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--id-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__title a {
  color: inherit;
  transition: color 0.2s ease;
}

.product-card__title a:hover {
  color: var(--id-primary);
}

.product-card__brand {
  font-family: var(--font);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.2;
  color: #9a9a9a;
  letter-spacing: -0.01em;
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.product-card__price .price {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--id-ink);
}

.product-card__price .regular-price {
  color: var(--id-muted);
  text-decoration: line-through;
  font-size: 0.875rem;
  font-weight: 500;
}

.product-card__price .price--sale {
  color: var(--id-black);
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0.8rem 1rem;
  background: var(--id-ink);
  color: #fff;
  border: 0;
  border-radius: var(--id-radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background-color 0.45s ease,
    color 0.45s ease,
    transform 0.35s ease,
    gap 0.35s ease;
}

.product-card__cta-icon {
  flex-shrink: 0;
  transition: transform 0.45s ease;
}

.product-card__cta:hover {
  background: var(--id-primary);
  color: var(--id-on-primary);
  transform: translateY(-1px);
  gap: 0.6rem;
}

html[data-pantone]:not([data-pantone="brand"]) .product-card__cta:hover {
  background: var(--id-primary);
  color: var(--id-on-primary);
}

.product-card__cta:hover .product-card__cta-icon {
  transform: translateY(-1px) scale(1.05);
}

/* Pagination */
.ais-Pagination-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.ais-Pagination-item {
  list-style: none;
}

.ais-Pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 999px;
  background: var(--id-white);
  color: var(--id-ink);
  box-shadow: var(--id-shadow);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ais-Pagination-item--selected .ais-Pagination-link,
.ais-Pagination-link:hover {
  background: var(--id-primary);
  color: var(--id-on-primary);
  transform: translateY(-1px);
}

.ais-Pagination-item--disabled .ais-Pagination-link {
  opacity: 0.35;
  pointer-events: none;
}

/* Footer */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  margin-top: 2.5rem;
  color: var(--id-text);
  background: #f4f6f6;
  border-top: 1px solid var(--id-line);
  overflow-x: clip;
}

.site-footer__newsletter {
  padding: 0;
  background: transparent;
  border: 0;
}

.site-footer__newsletter .shell {
  border-bottom: 1px solid rgba(47, 51, 56, 0.08);
}

.site-footer__newsletter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 1.5rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-footer__newsletter-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.site-footer__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--id-primary-deep);
}

.site-footer__eyebrow::before {
  content: "";
  width: 1rem;
  height: 2px;
  background: var(--id-primary);
  border-radius: 999px;
}

.site-footer__newsletter-title {
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--id-ink);
}

.site-footer__newsletter-sub {
  margin: 0.3rem 0 0;
  max-width: none;
  color: var(--id-muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

.site-footer__newsletter-form {
  display: flex;
  flex: 0 1 400px;
  width: min(100%, 400px);
  gap: 0.35rem;
  align-items: center;
  padding: 0.3rem;
  background: var(--id-white);
  border: 1px solid rgba(47, 51, 56, 0.1);
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-footer__newsletter-form:focus-within {
  border-color: color-mix(in srgb, var(--id-primary) 65%, transparent);
  box-shadow: 0 0 0 3px var(--id-primary-soft);
}

.site-footer__newsletter-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.65rem 0.9rem;
  color: var(--id-ink);
  outline: none;
  font-size: 0.9rem;
}

.site-footer__newsletter-form input[type="email"]::placeholder {
  color: var(--id-muted);
}

.site-footer__newsletter-form button {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  background: var(--id-primary);
  color: var(--id-on-primary);
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease, background-color 0.45s ease, color 0.45s ease;
}

.site-footer__newsletter-form button:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__newsletter-form button,
  .site-footer__shop-link,
  .theme-switch__swatch,
  .site-footer__contact-list a,
  .site-footer__links a {
    transition: none;
  }
}

.site-footer__main {
  padding: 2rem 0 1.75rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1.35fr 1fr 1fr 1fr;
  gap: 2rem 1.5rem;
  align-items: start;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.site-footer__logo img {
  width: auto;
  height: 32px;
}

.site-footer__lead {
  margin: 0;
  max-width: 32ch;
  color: var(--id-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

.site-footer__shop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--id-ink);
  transition: color 0.2s ease, gap 0.2s ease;
}

.site-footer__shop-link:hover {
  color: var(--id-primary-deep);
  gap: 0.7rem;
}

.site-footer__col {
  min-width: 0;
}

.site-footer__heading {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--id-ink);
  line-height: 1.2;
  min-height: 1.2em;
}

.site-footer__contact-list,
.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.site-footer__contact-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  color: var(--id-muted);
}

.site-footer__contact-list li:first-child {
  color: var(--id-text);
  font-weight: 600;
}

.site-footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: var(--id-ink);
  opacity: 0.72;
}

.site-footer__contact-list a,
.site-footer__links a {
  color: var(--id-text);
  line-height: 1.4;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.25s ease, color 0.2s ease;
}

.site-footer__contact-list a:hover,
.site-footer__links a:hover {
  color: var(--id-primary-deep);
  background-size: 100% 1px;
}

.site-footer__links a {
  display: inline-block;
}

.site-footer__bottom {
  border-top: 1px solid rgba(47, 51, 56, 0.08);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.1rem 0;
  flex-wrap: wrap;
}

.site-footer__copy {
  margin: 0;
  max-width: 48rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--id-muted);
}

.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.45rem 0.35rem 0.65rem;
  background: var(--id-white);
  border: 1px solid rgba(47, 51, 56, 0.1);
  border-radius: 6px;
}

.theme-switch__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--id-muted);
  white-space: nowrap;
}

.theme-switch__options {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.theme-switch__swatch {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 1px solid rgba(47, 51, 56, 0.18);
  border-radius: 4px;
  background: var(--swatch);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.theme-switch__swatch:hover {
  transform: scale(1.08);
}

.theme-switch__swatch.is-active {
  border-color: var(--id-ink);
  box-shadow:
    0 0 0 2px var(--id-white),
    0 0 0 3.5px var(--id-ink);
  transform: scale(1.05);
}

.theme-switch__swatch:focus-visible {
  outline: 2px solid var(--id-primary);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    max-width: 42rem;
  }
}

@media (max-width: 900px) {
  .site-footer__newsletter-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.35rem 0;
  }

  .site-footer__newsletter-form {
    width: 100%;
    flex-basis: auto;
  }
}

@media (max-width: 720px) {
  .site-footer {
    margin-top: 2rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer__brand {
    padding-bottom: 1.5rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(47, 51, 56, 0.08);
  }

  .site-footer__col {
    border-bottom: 1px solid rgba(47, 51, 56, 0.08);
    padding: 1.15rem 0;
  }

  .site-footer__heading {
    margin-bottom: 0.75rem;
  }

  .site-footer__contact-list,
  .site-footer__links {
    padding-bottom: 0.15rem;
  }

  .site-footer__newsletter {
    padding-top: 0;
  }

  .site-footer__newsletter-form {
    flex-wrap: wrap;
    border-radius: var(--id-radius);
    padding: 0.45rem;
  }

  .site-footer__newsletter-form input[type="email"] {
    flex: 1 1 100%;
    padding: 0.7rem 0.75rem;
  }

  .site-footer__newsletter-form button {
    width: 100%;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 0 1.5rem;
  }

  .site-footer__copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .theme-switch__label {
    display: none;
  }
}

/* Empty */
.ais-Hits--empty {
  background: var(--id-white);
  border: 0;
  border-radius: var(--id-radius);
  box-shadow: var(--id-shadow);
  padding: 3.5rem 1.5rem;
  text-align: center;
  color: var(--id-muted);
  font-weight: 500;
}

/* Responsive */
@media (min-width: 1600px) {
  :root {
    --shell: min(1280px, calc(100% - 3.5rem));
  }
}

@media (max-width: 1440px) {
  :root {
    --shell: calc(100% - 2rem);
  }

  .search-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 1.5rem;
  }

  .main {
    padding: 1.75rem 0 3.5rem;
  }

  .search-hero {
    margin-bottom: 1.5rem;
  }

  .search-box {
    padding: 0.8rem 1rem;
    gap: 0.7rem;
  }

  .search-box__agent {
    min-height: 44px;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 1360px) {
  .hits-grid[data-cols="4"] .ais-Hits-list,
  .hits-grid[data-cols="4"] .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-switch__btn[data-cols="4"] {
    display: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: calc(100% - 1.75rem);
    --site-chrome-height: var(--site-header-height);
  }

  .site-header__inner {
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
    order: 1;
    flex-shrink: 0;
  }

  .brand {
    order: 2;
  }

  .site-nav {
    display: none;
  }

  .site-header__actions {
    order: 3;
  }

  .topbar {
    display: none;
  }

  .nav-toggle span,
  .close-search span {
    display: none;
  }

  .nav-toggle,
  .close-search {
    width: 40px;
    padding: 0;
  }

  .search-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .btn-filters {
    display: inline-flex;
  }

  .results__hint {
    display: none;
  }

  .results__toolbar {
    gap: 0.75rem;
  }

  .filters {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(340px, 90vw);
    max-height: none;
    z-index: 100;
    border-radius: 0;
    padding: 1rem;
    overflow: auto;
    transform: translateX(-105%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 12px 0 40px rgba(42, 45, 49, 0.16);
    visibility: visible;
    pointer-events: auto;
  }

  .filters.is-open {
    transform: none;
  }

  .filters__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.25rem 0.75rem;
    border-bottom: 1px solid var(--id-line);
  }

  .filters__head h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .filters__close {
    border: 0;
    background: var(--id-soft);
    color: var(--id-ink);
    cursor: pointer;
    padding: 0.45rem;
    border-radius: 999px;
  }

  .hits-grid[data-cols="3"] .ais-Hits-list,
  .hits-grid[data-cols="3"] .gallery,
  .hits-grid[data-cols="4"] .ais-Hits-list,
  .hits-grid[data-cols="4"] .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-switch {
    display: none;
  }

  .search-hero__title {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
  }

  .search-hero__sub {
    font-size: 0.98rem;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100% - 1.5rem);
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 1.25rem);
  }

  .brand img {
    height: 30px;
  }

  .site-header__inner {
    min-height: 56px;
  }

  :root {
    --site-header-height: 56px;
  }

  .ais-Hits-list,
  .gallery,
  .hits-grid[data-cols="2"] .ais-Hits-list,
  .hits-grid[data-cols="2"] .gallery,
  .hits-grid[data-cols="3"] .ais-Hits-list,
  .hits-grid[data-cols="3"] .gallery,
  .hits-grid[data-cols="4"] .ais-Hits-list,
  .hits-grid[data-cols="4"] .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .product-card__media {
    margin: 0.55rem 0.55rem 0;
    padding: 0.5rem;
  }

  .product-card__body {
    padding: 0.85rem 0.75rem 0.9rem;
    gap: 0.45rem;
  }

  .product-card__title {
    font-size: 0.82rem;
  }

  .product-card__brand {
    font-size: 0.75rem;
  }

  .product-card__cta {
    padding: 0.65rem 0.4rem;
    font-size: 0.65rem;
    letter-spacing: 0.02em;
  }

  .product-card__price .price {
    font-size: 0.95rem;
  }

  .product-card__price .regular-price {
    font-size: 0.78rem;
  }

  .main {
    padding-top: 1.25rem;
    padding-bottom: 3rem;
  }

  .search-hero {
    margin-bottom: 1.35rem;
  }

  .search-box {
    border-radius: var(--id-radius);
    padding: 0.65rem 0.75rem;
    gap: 0.45rem;
  }

  .search-box__icon {
    width: 18px;
    height: 18px;
  }

  .ais-SearchBox-input {
    font-size: 1rem;
  }

  .search-box__agent {
    min-height: 40px;
    width: 40px;
    padding: 0;
    border-radius: 10px;
  }

  .search-box__agent span {
    display: none;
  }

  .search-box__agent-icon {
    width: 20px;
    height: 20px;
  }

  .btn-filters {
    padding: 0.65rem 0.95rem;
  }
}
