.page-hero {
  padding: 74px 0 58px;
}
.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 3.8rem);
}
.page-hero p {
  margin-top: 14px;
  max-width: 560px;
}

.catalog-section {
  background:
    radial-gradient(circle at 90% 4%, rgba(181,31,104,.1), transparent 30%),
    linear-gradient(180deg, rgba(255,250,244,.68), rgba(253,235,242,.76));
  padding-top: 68px;
}
.catalog-top { align-items: end; display: flex; gap: 30px; justify-content: space-between; }
.catalog-top p { font-size: .92rem; }
.filter-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0 44px; }
.filter-button { background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,246,249,.58)); border: 1px solid rgba(181,31,104,.12); border-radius: 999px; box-shadow: inset 0 1px 0 rgba(255,255,255,.5); color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .08em; padding: 12px 18px; text-transform: uppercase; transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease; }
.filter-button:hover { border-color: var(--accent); box-shadow: 0 10px 22px rgba(181,31,104,.12); color: var(--accent); transform: translateY(-2px); }
.filter-button.active { background: linear-gradient(135deg, #d73578, var(--accent-dark)); border-color: var(--accent); box-shadow: 0 10px 22px rgba(181,31,104,.22), inset 0 1px 0 rgba(255,255,255,.24); color: var(--white); }

.product-grid { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.product-card { animation: product-in .4s ease both; background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,248,239,.68)); backdrop-filter: blur(8px); border: 1px solid rgba(181,31,104,.12); border-radius: 20px; box-shadow: var(--card-glow); overflow: hidden; position: relative; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.product-card::after { background: radial-gradient(circle at 82% 8%, rgba(181,31,104,.1), transparent 32%); content: ""; inset: 0; opacity: 0; pointer-events: none; position: absolute; transition: opacity .28s ease; }
.product-card:hover { border-color: rgba(181,31,104,.24); box-shadow: var(--shadow), 0 0 0 1px rgba(155,193,131,.14); transform: translateY(-8px); }
.product-card:hover::after { opacity: 1; }
.product-image-wrap { background: linear-gradient(145deg, var(--cream), var(--champagne)); overflow: hidden; position: relative; }
.product-image-wrap::before { background: linear-gradient(135deg, rgba(255,255,255,.38), transparent 42%); content: ""; inset: 0; pointer-events: none; position: absolute; z-index: 1; }
.product-image { aspect-ratio: 4 / 5; object-fit: cover; transition: transform .5s ease; width: 100%; }
.product-card:hover .product-image { transform: scale(1.045); }
.product-info { background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,246,249,.46)); padding: 18px 18px 20px; position: relative; z-index: 1; }
.product-category { color: var(--accent); display: block; font-size: .63rem; font-weight: 700; letter-spacing: .14em; margin-bottom: 7px; text-transform: uppercase; }
.product-name { font-family: var(--display); font-size: 1.16rem; }
@keyframes product-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) {
  .page-hero { padding: 58px 0 46px; }
  .product-grid { gap: 14px; grid-template-columns: repeat(2, 1fr); }
  .catalog-top { align-items: start; flex-direction: column; gap: 12px; }
  .product-info { padding: 14px; }
  .product-name { font-size: 1rem; }
}
