.catalog-body {
  min-height: 100vh;
}

.catalog-page {
  padding-top: 28px;
  padding-bottom: 32px;
}

.catalog-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.catalog-top .menu {
  display: none;
}

.back-link {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #b8aa98;
  border-radius: 24px;
  color: #5f574f;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 8px 24px rgba(74, 55, 36, 0.08);
  backdrop-filter: blur(8px);
  font-size: 16px;
  position: fixed;
  top: 28px;
  right: 24px;
  z-index: 20;
}

.catalog {
  padding: 34px 70px 42px;
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.catalog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.catalog-head h1 {
  font-size: 48px;
  line-height: 1;
}

.catalog-head p {
  max-width: 510px;
  margin-top: 12px;
  color: #51473d;
  font-size: 16px;
  line-height: 1.45;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #d7c5b0;
  border-radius: 999px;
  color: #5b4b3d;
  background: rgba(255, 250, 241, 0.72);
  font: inherit;
  cursor: pointer;
}

.filter-button[aria-pressed="true"] {
  color: #fff;
  border-color: #d27443;
  background: #d27443;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e4d2bf;
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.6);
}

.catalog-photo {
  aspect-ratio: 1 / 1.12;
  flex: 0 0 auto;
  overflow: hidden;
  background: rgba(255, 250, 241, 0.62);
}

.catalog-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.catalog-card h2 {
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #352a22;
}
