.watches-page {
  min-height: calc(100vh - 80px);
  padding: clamp(30px, 4vw, 56px) clamp(18px, 4vw, 54px);
  background: #f7f1e8;
}

.watches-page__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.watches-page__header {
  margin-bottom: 28px;
}

.watches-page__title {
  margin: 0;
  color: #111111;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
}

.watches-page__content {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.watches-page__filters {
  position: sticky;
  top: 24px;
}

.watches-page__mobile-filter-actions,
.watches-page__filter-close,
.watches-page__filter-backdrop {
  display: none;
}

.watches-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  gap: 18px;
}

.watches-page__results {
  min-width: 0;
}

.watches-page__grid .product-card {
  width: 100%;
  flex-basis: auto;
}

@media (max-width: 1120px) {
  .watches-page__content {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 20px;
  }

  .watches-page__grid {
    grid-template-columns: repeat(2, minmax(0, 320px));
  }
}

@media (max-width: 820px) {
  .watches-page {
    padding: 24px 14px 34px;
  }

  .watches-page__header {
    margin-bottom: 20px;
  }

  .watches-page__title {
    font-size: 1.85rem;
    letter-spacing: 2.5px;
  }

  .watches-page__content {
    display: block;
  }

  .watches-page__mobile-filter-actions {
    width: 100%;
    margin-bottom: 18px;
    display: flex;
    gap: 10px;
  }

  .watches-page__filter-toggle,
  .watches-page__filter-reset {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #807164;
    background: #f7f1e8;
    border: 1px solid #d8c7b8;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
  }

  .watches-page__filter-toggle {
    flex: 1;
  }

  .watches-page__filter-reset {
    flex: 0 0 112px;
  }

  .watches-page__filter-toggle:focus-visible,
  .watches-page__filter-reset:focus-visible,
  .watches-page__filter-close:focus-visible {
    outline: 2px solid rgba(23, 23, 23, 0.25);
    outline-offset: 3px;
  }

  .watches-page__filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: block;
    background: rgba(17, 17, 17, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .watches-page__filter-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .watches-page__filters {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 150;
    width: min(calc(100vw - 28px), 340px);
    max-height: calc(100dvh - 32px);
    margin: 0;
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -48%) scale(0.98);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .watches-page__filters.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }

  .watches-page__filter-close {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #807164;
    background: transparent;
    border: 0;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
  }

  .watches-page__filter-close:hover {
    background: rgba(216, 199, 184, 0.35);
  }

  body.filters-open {
    overflow: hidden;
  }

  .watches-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 360px) {
  .watches-page__grid {
    grid-template-columns: 1fr;
  }
}
