/* ════════════════════════════════════════
   La Civada — Proposta B (Net i cooperatiu)
   Estils compartits
   ════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #2f6b4f;
  --green-dark: #1f4a36;
  --green-soft: #eaf3ea;
  --green-mid: #4d8c6a;
  --leaf: #6f9f72;
  --earth: #8a6f4d;
  --ink: #24312b;
  --ink-light: #3d4f46;
  --paper: #fbfaf6;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 3px rgba(36,49,43,0.04), 0 4px 16px rgba(36,49,43,0.05);
  --shadow-lg: 0 8px 32px rgba(36,49,43,0.08);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white); color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container > *, .page-header-inner > *, .navbar-inner > *, .contact-grid > *,
.about-grid > *, .join-grid > * { min-width: 0; }
h1, h2, h3, p, a { overflow-wrap: break-word; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 20px 0; transition: all var(--transition);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(36,49,43,0.04);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.2rem; color: var(--ink);
}
.nav-logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--green); display: flex;
  align-items: center; justify-content: center;
  color: white; font-size: 0.7rem; font-weight: 800;
}
.nav-links { display: none; gap: 24px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--ink-light);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--green);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--green); }
.nav-links a.active::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--green); }
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-right a { font-size: 0.85rem; font-weight: 500; color: var(--ink-light); }
.nav-right .btn-socis { color: var(--white); }
.btn-socis {
  padding: 8px 20px; border-radius: 8px;
  background: var(--green); color: white; font-weight: 600; font-size: 0.85rem;
  transition: all var(--transition);
}
.btn-socis:hover { background: var(--green-dark); }
.btn-menu {
  display: block; background: none; border: none; cursor: pointer;
  width: 24px; height: 18px; position: relative;
}
.btn-menu span {
  display: block; height: 2px; background: var(--ink);
  border-radius: 1px; transition: all 0.3s;
  position: absolute; left: 0; width: 100%;
}
.btn-menu span:nth-child(1) { top: 0; }
.btn-menu span:nth-child(2) { top: 8px; }
.btn-menu span:nth-child(3) { top: 16px; }
@media (min-width: 1024px) {
  .nav-links { display: flex; align-items: center; }
  .btn-menu { display: none; }
}

/* ── Subpàgina header ── */
.page-header {
  padding: 140px 0 60px; background: var(--white);
}
.page-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .page-header-inner { padding: 0 32px; } }
.page-header .section-label { margin-bottom: 12px; }
.page-header h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
  max-width: 720px;
}
.page-header p {
  font-size: 1.05rem; color: var(--ink-light);
  max-width: 560px; margin-top: 12px; line-height: 1.7;
}

/* ── Seccions genèriques ── */
section { padding: 80px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }
.hero + section, .page-header + section {
  border-top: 1px solid rgba(36,49,43,0.06);
  padding-top: 64px;
}
@media (min-width: 768px) {
  .hero + section, .page-header + section { padding-top: 72px; }
}
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1rem; color: var(--ink-light);
  max-width: 560px; margin-top: 12px; line-height: 1.7;
}

/* ── Hero (només index) ── */
.hero {
  min-height: min(78vh, 820px); display: flex; align-items: center;
  padding-top: 80px; background: var(--white); position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute; top: -30%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(111,159,114,0.07) 0%, transparent 70%);
  pointer-events: none; display: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 48px; align-items: center;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 80px 24px;
}
.hero-grid > * { min-width: 0; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 80px; padding: 40px 32px; } }
.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.03em;
}
.hero h1 span { color: var(--green); }
.hero h1 { overflow-wrap: anywhere; }
.hero-sub {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--ink-light); margin-top: 20px; max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

/* ── Botons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  background: var(--green); color: white;
  font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(47,107,79,0.25); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  border: 1.5px solid rgba(36,49,43,0.12); color: var(--ink);
  font-weight: 500; font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.hero-image {
  background: var(--green-soft); border-radius: var(--radius);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-image::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(47,107,79,0.05), transparent 50%);
}
.hero-image-content { text-align: center; position: relative; }
.hero-image-icon { font-size: 4rem; opacity: 0.3; margin-bottom: 8px; }
.hero-image-content p { font-size: 0.85rem; color: var(--ink-light); opacity: 0.5; }

/* ── About (index) ── */
.about-grid {
  display: grid; gap: 48px; align-items: center; margin-top: 48px;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.about-text p { font-size: 1rem; line-height: 1.8; color: var(--ink-light); margin-bottom: 16px; }
.about-copy-only { max-width: 760px; }
.about-image {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--green-soft), #d6e8d6);
  display: flex; align-items: center; justify-content: center;
}

/* ── Valors ── */
.values { background: #f6f8f5; }
.values-grid {
  display: grid; gap: 20px; margin-top: 48px;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: var(--white); padding: 36px 28px;
  border-radius: var(--radius-sm); border: 1px solid rgba(36,49,43,0.04);
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.value-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--green-soft); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green);
}
.value-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; line-height: 1.7; color: var(--ink-light); }

/* ── Productors ── */
.producers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 20px; margin-top: 48px;
}
@media (min-width: 1024px) { .producers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.producer-card {
  border: 1px solid rgba(36,49,43,0.06);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
  display: grid; grid-template-rows: 200px minmax(0, 1fr); min-height: 100%;
}
.producer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.producer-img {
  width: 100%; height: 200px; background: #f0f0ee;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.media-cover { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.media-contain { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 20px; }
.media-placeholder { font-size: 2.5rem; opacity: .2; }
.producer-cat {
  position: absolute; top: 12px; left: 12px;
  padding: 3px 10px; border-radius: 6px;
  background: var(--white); color: var(--ink-light);
  font-size: 0.68rem; font-weight: 500; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.producer-body { padding: 24px; display: grid; grid-template-rows: auto minmax(4.1em, 1fr) auto auto; }
.producer-body h3 { font-weight: 600; font-size: 1.05rem; }
.producer-origin { font-size: 0.8rem; color: var(--earth); margin-top: 4px; }
.producer-body p { font-size: 0.85rem; color: var(--ink-light); margin-top: 8px; line-height: 1.6; }
.producer-description { min-height: 4.1em; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.producer-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; padding-top: 14px; }
.producer-thumbnails { display: flex; gap: 8px; margin-top: 10px; }
.producer-thumbnails img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.producer-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 0.85rem; font-weight: 500; color: var(--green);
}

/* ── Productes ── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 16px; margin-top: 48px;
}
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card {
  border: 1px solid rgba(36,49,43,0.06);
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--white); transition: all var(--transition);
  display: grid; grid-template-rows: 220px minmax(0, 1fr); min-height: 100%;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-img {
  width: 100%; height: 220px; background: #f0f0ee;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-badge {
  position: absolute; top: 10px; right: 10px;
  padding: 2px 10px; border-radius: 6px;
  background: var(--green); color: white;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.04em;
}
.product-body { padding: 18px; display: grid; grid-template-rows: auto auto minmax(0, 1fr) auto; }
.product-prod { font-size: 0.72rem; color: var(--earth); font-weight: 500; }
.product-body h3 { font-weight: 600; font-size: 0.9rem; margin-top: 4px; }
.product-meta { margin-top: 5px; color: var(--ink-light); font-size: .72rem; }
.product-price {
  margin-top: auto; padding-top: 10px; font-weight: 700; font-size: 1.05rem; color: var(--green);
}
.product-card-image { padding: 18px; background: var(--white); }
.product-description { margin-top: 8px; color: var(--ink-light); font-size: .8rem; line-height: 1.5; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.about-community-photo { aspect-ratio: 4 / 3; background: #f0f0ee; }
.about-community-photo img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }

/* ── CTA ── */
.cta {
  background: var(--ink); color: white; text-align: center;
}
.cta .section-title { color: white; }
.cta .section-desc { color: rgba(255,255,255,0.6); margin-left: auto; margin-right: auto; }
.cta .btn-primary { background: white; color: var(--green-dark); }
.cta .btn-primary:hover { background: var(--green-soft); }
.cta-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta .btn-outline { border-color: rgba(255,255,255,0.2); color: white; }
.cta .btn-outline:hover { border-color: white; }

/* ── Detail pages (productor / producte) ── */
.detail-hero {
  padding: 140px 0 60px; background: var(--white);
  border-bottom: 1px solid rgba(36,49,43,0.04);
}
.detail-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; gap: 40px; align-items: center;
}
@media (min-width: 768px) { .detail-hero-inner { padding: 0 32px; } }
@media (min-width: 1024px) { .detail-hero-inner { grid-template-columns: 1fr 1fr; gap: 60px; } }
.detail-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
}
.detail-hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px;
}
.detail-hero-meta span {
  font-size: 0.85rem; color: var(--ink-light);
  display: inline-flex; align-items: center; gap: 6px;
}
.detail-hero-meta .tag {
  padding: 3px 10px; border-radius: 6px;
  background: var(--green-soft); color: var(--green);
  font-size: 0.72rem; font-weight: 600;
}
.detail-hero p {
  font-size: 1rem; color: var(--ink-light); line-height: 1.7;
  margin-top: 20px; max-width: 560px;
}
.detail-hero-image {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--green-soft), #d6e8d6);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.detail-hero-image .eco-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 12px; border-radius: 6px;
  background: var(--green); color: white;
  font-size: 0.68rem; font-weight: 600;
}
.detail-price {
  font-size: 2rem; font-weight: 700; color: var(--green); margin-top: 20px;
}
.detail-price small { font-size: 1rem; font-weight: 400; color: var(--ink-light); }
.detail-section { padding: 80px 0; }
@media (min-width: 768px) { .detail-section { padding: 100px 0; } }
.detail-section h2 {
  font-size: 1.5rem; font-weight: 600; margin-bottom: 24px;
}
.detail-section p { font-size: 0.95rem; color: var(--ink-light); line-height: 1.8; }
.detail-info-grid {
  display: grid; gap: 16px; margin-top: 24px;
}
@media (min-width: 640px) { .detail-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .detail-info-grid { grid-template-columns: repeat(3, 1fr); } }
.detail-info-card {
  padding: 24px 20px; border-radius: var(--radius-sm);
  border: 1px solid rgba(36,49,43,0.06);
}
.detail-info-card h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-light); font-weight: 600; }
.detail-info-card p { font-size: 0.95rem; margin-top: 6px; color: var(--ink); font-weight: 500; }
.detail-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 500; color: var(--green);
  margin-bottom: 24px; transition: gap var(--transition);
}
.detail-back:hover { gap: 10px; }

/* ── Footer ── */
footer {
  background: var(--white); border-top: 1px solid rgba(36,49,43,0.06);
  padding: 36px 0 20px;
}
.footer-grid {
  display: grid; gap: 24px; align-items: start;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
footer h4 { font-weight: 600; font-size: 0.85rem; margin-bottom: 10px; color: var(--ink); }
footer a { display: block; font-size: 0.85rem; color: var(--ink-light); padding: 3px 0; transition: color var(--transition); }
footer a:hover { color: var(--green); }
.footer-logo { display: inline-block; padding: 0; }
.footer-logo img { width: min(170px, 100%); height: 42px; object-fit: contain; object-position: left center; }
.footer-brand p { font-size: 0.82rem; color: var(--ink-light); line-height: 1.5; max-width: 280px; margin-top: 8px; }
.footer-bottom {
  margin-top: 24px; padding-top: 16px;
  border-top: 1px solid rgba(36,49,43,0.06);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.78rem; color: var(--ink-light);
}

/* ── Galeria ── */
.gallery-grid {
  display: grid; gap: 16px; margin-top: 48px;
}
@media (min-width: 500px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden;
  background: #f0f0ee; position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.gallery-item > a { display: block; width: 100%; height: 100%; }
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: scale(1.02); }
.gallery-open { border:0; padding:0; width:100%; height:100%; background:transparent; cursor:zoom-in; }
.gallery-dialog { width:min(960px,calc(100% - 32px)); max-height:calc(100vh - 32px); margin:auto; padding:0; border:0; border-radius:var(--radius-sm); background:#111; box-shadow:var(--shadow-lg); }
.gallery-dialog::backdrop { background:rgba(15,20,17,.82); }
.gallery-dialog img { width:100%; max-height:calc(100vh - 80px); object-fit:contain; }
.gallery-dialog-close { position:absolute; top:10px; right:10px; width:40px; height:40px; border:0; border-radius:50%; background:rgba(255,255,255,.9); color:var(--ink); font-size:1.35rem; cursor:pointer; }
.gallery-item span { font-size: 2.5rem; opacity: 0.2; }
.gallery-item .gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px; background: linear-gradient(transparent, rgba(0,0,0,0.3));
  color: white; font-size: 0.8rem; font-weight: 500;
}

/* ── Contacte ── */
.contact-grid {
  display: grid; gap: 48px; margin-top: 48px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.contact-info h3 { font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; }
.contact-info p { font-size: 0.95rem; color: var(--ink-light); line-height: 1.7; margin-bottom: 20px; }
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green-soft); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--green);
}
.contact-detail h4 { font-weight: 600; font-size: 0.9rem; }
.contact-detail p { font-size: 0.85rem; color: var(--ink-light); margin-top: 2px; }

/* ── Recursos ── */
.resources-grid {
  display: grid; gap: 16px; margin-top: 48px;
}
@media (min-width: 640px) { .resources-grid { grid-template-columns: repeat(2, 1fr); } }
.resource-card {
  border: 1px solid rgba(36,49,43,0.06);
  border-radius: var(--radius-sm); padding: 28px;
  transition: all var(--transition);
}
.resource-card:hover { box-shadow: var(--shadow-lg); }
.resource-card h3 { font-weight: 600; font-size: 1rem; margin-bottom: 6px; }
.resource-card p { font-size: 0.85rem; color: var(--ink-light); line-height: 1.6; }
.resource-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: 0.85rem; font-weight: 500; color: var(--green);
}

/* ── Apunta't ── */
.join-grid {
  display: grid; gap: 48px; margin-top: 48px;
}
@media (min-width: 1024px) { .join-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.join-steps { counter-reset: step; }
.join-step {
  display: flex; gap: 16px; margin-bottom: 32px;
  counter-increment: step;
}
.join-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.join-step h3 { font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.join-step p { font-size: 0.88rem; color: var(--ink-light); line-height: 1.6; }
.join-card {
  background: var(--green-soft); border-radius: var(--radius);
  padding: 36px; text-align: center;
}
.join-card h3 { font-weight: 600; font-size: 1.2rem; margin-bottom: 8px; }
.join-card p { font-size: 0.9rem; color: var(--ink-light); margin-bottom: 24px; }

@media (max-width: 479px) {
  .container, .navbar-inner, .page-header-inner { padding-left: 20px; padding-right: 20px; }
  .navbar { padding: 14px 0; }
  .nav-logo-image { width: 142px; height: 40px; }
  .nav-right { gap: 8px; }
  .btn-socis { padding: 8px 12px; }
  .hero { min-height: auto; padding-top: 68px; }
  .hero-grid { gap: 32px; padding: 64px 20px 48px; }
  .hero h1 { font-size: 2.15rem; }
  .hero-sub { font-size: 1rem; }
  section { padding: 64px 0; }
  .hero-actions > a { justify-content: center; flex: 1 1 140px; padding-left: 16px; padding-right: 16px; }
  .page-header { padding: 112px 0 44px; }
  .page-header h1 { font-size: 1.9rem; }
  .catalog-filter-actions { display:grid; grid-template-columns:1fr 1fr; }
  .catalog-filter-actions > * { width:100%; }
  .producer-body, .product-body { padding-left:16px; padding-right:16px; }
}
