:root {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-synthesis: none;
  color: #252c29;
  background: #f3f5f4;
  --ink: #18221e;
  --green: #087b57;
  --line: #dfe5e1;
}
* { box-sizing: border-box; letter-spacing: 0; }
body { margin: 0; }
a, button, input { -webkit-tap-highlight-color: transparent; }
main { width: min(100% - 40px, 760px); margin: 0 auto; padding: 28px 0 0; }
.profile-header { background: var(--ink); color: #fff; border-bottom: 3px solid #c4d982; }
.header-inner { width: min(100% - 40px, 760px); margin: 0 auto; padding: 30px 0 27px; }
.profile-topline { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.profile-monogram { display: grid; place-items: center; width: 46px; height: 46px; flex: none; border-radius: 8px; background: #c4d982; color: var(--ink); font-size: 25px; font-weight: 700; }
.profile-instagram { display: inline-flex; align-items: center; gap: 6px; min-width: 0; color: #c6d2cb; text-decoration: none; font-size: 12px; overflow-wrap: anywhere; }
.profile-instagram:hover { color: #fff; }
.profile-title { font-size: 28px; font-weight: 650; line-height: 1.2; margin: 0 0 11px; overflow-wrap: anywhere; }
.long-title { font-size: 20px; }
.profile-niche { margin: 0; color: #c4d982; font-size: 11px; line-height: 1.5; font-weight: 600; text-transform: uppercase; }
.icon { display: block; width: 18px; height: 18px; flex: none; }
.search { margin: 0 0 30px; }
.search label { display: block; margin-bottom: 9px; font-size: 12px; color: #59655e; font-weight: 600; }
.search-controls { display: flex; gap: 8px; }
.search input { flex: 1; min-width: 0; height: 48px; border: 1px solid #cfd9d2; border-radius: 6px; background: #fff; padding: 0 15px; color: var(--ink); font: inherit; font-size: 14px; box-shadow: 0 1px 2px #18221e04; }
.search input::placeholder { color: #647068; }
.search input:focus { border-color: var(--green); }
.search button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-width: 106px; height: 48px; padding: 0 15px; border: 0; border-radius: 6px; background: var(--green); color: #fff; font: inherit; font-size: 13px; font-weight: 650; cursor: pointer; transition: background .15s; }
.search button:hover { background: #066647; }
.search input:focus-visible, .search button:focus-visible, a:focus-visible { outline: 3px solid #9cab6b; outline-offset: 3px; }
.clear-search { display: inline-block; margin: -16px 0 24px; color: var(--green); font-size: 12px; font-weight: 600; text-underline-offset: 3px; }
.catalog-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0 0 13px; }
.catalog-heading h2 { margin: 0; font-size: 15px; font-weight: 650; color: var(--ink); }
.catalog-count { color: #647068; font-size: 11px; white-space: nowrap; }
section { display: grid; gap: 12px; }
.products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product, .profile { display: flex; align-items: center; gap: 15px; text-decoration: none; color: inherit; border: 1px solid var(--line); background: #fff; border-radius: 8px; min-height: 132px; padding: 15px; box-shadow: 0 2px 6px #18221e03; transition: border-color .15s, box-shadow .15s; }
.product:hover, .profile:hover { border-color: #89b8a0; box-shadow: 0 4px 14px #18221e0a; }
.product img, .image-empty { width: 82px; height: 90px; object-fit: contain; background: #fff; border-radius: 4px; flex: none; }
.image-empty { background: #f3f5f4; }
.product-copy { display: flex; flex: 1; min-width: 0; flex-direction: column; align-items: flex-start; gap: 7px; }
.post-number { color: var(--green); font-size: 11px; font-weight: 700; line-height: 1.4; overflow-wrap: anywhere; }
.product-title { font-size: 13px; line-height: 1.5; font-weight: 600; color: #343d37; overflow-wrap: anywhere; }
.product-cta { display: inline-flex; align-items: center; gap: 4px; margin-top: 2px; color: var(--green); font-size: 11px; font-weight: 650; }
.product-cta .icon { width: 14px; height: 14px; }
.product-arrow { color: var(--green); font-size: 20px; padding: 0 3px; }
.profile { justify-content: space-between; min-height: 80px; }
.profile span, .eyebrow { font-size: 12px; color: var(--green); overflow-wrap: anywhere; }
.empty { grid-column: 1 / -1; color: #79847d; margin: 20px 0; font-size: 14px; }
footer { width: min(100% - 40px, 760px); margin: 32px auto 0; padding: 20px 0 28px; border-top: 1px solid var(--line); color: #647068; font-size: 11px; text-align: center; }
main > header:not(.profile-header) { border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 24px; }
main > header h1 { font-size: 28px; margin: 8px 0; overflow-wrap: anywhere; }
main > header p { margin: 0; color: #6f7c73; font-size: 13px; }
@media (max-width: 699px) {
  .products-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 420px) {
  main, .header-inner, footer { width: calc(100% - 32px); }
  .header-inner { padding: 24px 0; }
  main { padding-top: 23px; }
  .product { gap: 14px; padding: 14px; min-height: 124px; }
  .product img, .image-empty { width: 76px; height: 84px; }
  .search button { min-width: 98px; padding: 0 12px; }
  .profile { align-items: flex-start; flex-direction: column; gap: 3px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
