    * { box-sizing: border-box; }
    html, body { height: 100%; }

    :root {
      --bg: #fff7fb;
      --card: #ffffff;
      --text: #2a1230;
      --muted: #6d5274;
      --stroke: #f1d7ea;
      --pink: #ec4899;
      --amber: #f59e0b;
      --good: #16a34a;
      --shadow: 0 18px 60px rgba(2, 6, 23, .10);
      --radius: 18px;
    }

    body {
      margin: 0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(900px 650px at 15% 0%, rgba(236,72,153,.14), transparent 60%),
        radial-gradient(1000px 700px at 90% 10%, rgba(245,158,11,.10), transparent 60%),
        #fff7fb;
    }

    a { color: inherit; }

    .wrap { max-width: 1200px; margin: 0 auto; padding: 0 18px; }

    .skip {
      position: absolute;
      left: -999px;
      top: 10px;
      background: #ffffff;
      color: #0b1220;
      border: 2px solid rgba(236,72,153,.35);
      padding: 10px 12px;
      border-radius: 12px;
      font-weight: 900;
      z-index: 999;
      text-decoration: none;
    }

    .skip:focus { left: 10px; }

    header {
      position: sticky;
      top: 0;
      z-index: 80;
      background: rgba(255,247,251,.86);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--stroke);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      white-space: nowrap;
    }

    .mark {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(236,72,153,.95), rgba(245,158,11,.70));
      box-shadow: 0 16px 50px rgba(236,72,153,.16);
      display: grid;
      place-items: center;
      color: rgba(255,255,255,.96);
      font-weight: 950;
    }

    .brand strong {
      font-weight: 950;
      letter-spacing: -0.02em;
      font-size: 14px;
    }

    .brand small {
      display: block;
      color: var(--muted);
      font-weight: 900;
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    nav ul {
      display: flex;
      gap: 18px;
      list-style: none;
      margin: 0;
      padding: 0;
      color: var(--muted);
      font-weight: 850;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    nav a { text-decoration: none; }
    nav a:hover { color: var(--text); }

    .nav-cta {
      display: inline-flex;
      gap: 10px;
      align-items: center;
    }

    .pill {
      text-decoration: none;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid var(--stroke);
      background: rgba(255,255,255,.92);
      color: var(--text);
      font-weight: 950;
      font-size: 13px;
      white-space: nowrap;
    }

    .pill:hover { background: #ffffff; border-color: #e9bedd; }

    .pill.primary {
      background: linear-gradient(135deg, rgba(236,72,153,.95), rgba(245,158,11,.70));
      border-color: transparent;
      color: white;
      box-shadow: 0 16px 50px rgba(236,72,153,.14);
    }

    .pill.primary:hover { filter: brightness(1.03); }

    .hero { padding: 34px 0 18px; }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items: stretch;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--stroke);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 16px;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      inset: -80px;
      background:
        radial-gradient(520px 320px at 18% 18%, rgba(236,72,153,.12), transparent 62%),
        radial-gradient(520px 320px at 85% 5%, rgba(245,158,11,.10), transparent 62%);
      transform: rotate(8deg);
      pointer-events: none;
    }

    .card > * { position: relative; z-index: 1; }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(236,72,153,.10);
      border: 1px solid rgba(236,72,153,.16);
      color: var(--text);
      font-weight: 950;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    h1 {
      margin: 12px 0 0;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .lead {
      margin: 12px 0 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 15px;
      max-width: 72ch;
    }

    .search {
      margin-top: 14px;
      display: grid;
      grid-template-columns: 1fr 210px auto;
      gap: 10px;
      align-items: center;
    }

    .input,
    .select {
      width: 100%;
      padding: 13px 12px;
      border-radius: 14px;
      border: 1px solid var(--stroke);
      background: rgba(255,255,255,.92);
      color: var(--text);
      outline: none;
      font-weight: 700;
      font-size: 14px;
    }

    .input:focus,
    .select:focus {
      border-color: rgba(236,72,153,.35);
      box-shadow: 0 0 0 4px rgba(236,72,153,.12);
    }

    .btn {
      padding: 13px 16px;
      border-radius: 14px;
      border: none;
      cursor: pointer;
      font-weight: 950;
      background: linear-gradient(135deg, rgba(236,72,153,.95), rgba(245,158,11,.70));
      color: white;
      white-space: nowrap;
      box-shadow: 0 16px 50px rgba(236,72,153,.14);
    }

    .btn:hover { filter: brightness(1.03); }

    .chips {
      margin-top: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .chip {
      text-decoration: none;
      font-weight: 950;
      font-size: 12px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text);
      background: rgba(255,255,255,.92);
      border: 1px solid var(--stroke);
      padding: 8px 12px;
      border-radius: 999px;
    }

    .chip:hover { border-color: #e9bedd; background: #ffffff; }

    .trust h2 {
      margin: 0;
      font-size: 14px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text);
    }

    .tgrid {
      margin-top: 12px;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 10px;
    }

    .t {
      grid-column: span 12;
      padding: 12px;
      border-radius: 16px;
      border: 1px solid var(--stroke);
      background: #fbfdff;
      color: var(--muted);
      font-weight: 700;
      line-height: 1.5;
    }

    .t b { color: var(--text); font-weight: 950; }

    .mini {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--stroke);
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      color: var(--muted);
      font-weight: 900;
      font-size: 12px;
    }

    .mini span {
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid var(--stroke);
      background: rgba(255,255,255,.92);
    }

    .section { padding: 18px 0 32px; }

    .bar {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 12px;
      margin-bottom: 14px;
    }

    .bar h2 {
      margin: 0;
      font-size: 18px;
      letter-spacing: -0.01em;
    }

    .bar small { color: var(--muted); font-weight: 850; }

    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 14px;
    }

    .filter {
      text-decoration: none;
      font-weight: 950;
      font-size: 12px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text);
      background: rgba(255,255,255,.92);
      border: 1px solid var(--stroke);
      padding: 10px 12px;
      border-radius: 999px;
    }

    .filter:hover { border-color: #e9bedd; }
    .filter.active { background: rgba(236,72,153,.12); border-color: rgba(236,72,153,.18); }

    .products {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 12px;
    }

    .p {
      grid-column: span 12;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--stroke);
      background: #ffffff;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 150px 1fr;
      min-height: 180px;
      transition: transform .16s ease, border-color .16s ease;
    }

    .p:hover { transform: translateY(-3px); border-color: rgba(236,72,153,.18); }

    .ph {
      background: linear-gradient(135deg, rgba(236,72,153,.12), rgba(245,158,11,.10));
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(42,18,48,.70);
      font-weight: 950;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-size: 12px;
    }

    .pc { padding: 14px; display: grid; gap: 10px; }

    .ptitle {
      margin: 0;
      font-weight: 950;
      letter-spacing: -0.01em;
      line-height: 1.25;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      overflow: hidden;
    }

    .row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .price { font-weight: 950; font-size: 18px; letter-spacing: -0.01em; }

    .badges { display: inline-flex; gap: 8px; flex-wrap: wrap; align-items: center; }

    .badge {
      font-size: 11px;
      font-weight: 950;
      letter-spacing: .06em;
      text-transform: uppercase;
      border: 1px solid var(--stroke);
      background: rgba(255,255,255,.92);
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--text);
    }

    .badge.good { background: rgba(22,163,74,.10); border-color: rgba(22,163,74,.16); }

    .cta { display: flex; gap: 10px; flex-wrap: wrap; }

    .link {
      text-decoration: none;
      font-weight: 950;
      font-size: 13px;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid var(--stroke);
      background: rgba(255,255,255,.92);
      color: var(--text);
    }

    .link.primary {
      background: linear-gradient(135deg, rgba(236,72,153,.95), rgba(245,158,11,.70));
      border-color: transparent;
      color: white;
      box-shadow: 0 16px 50px rgba(236,72,153,.12);
    }

    .link:hover { border-color: #e9bedd; }
    .link.primary:hover { filter: brightness(1.03); }

    footer {
      padding: 26px 0 42px;
      border-top: 1px solid var(--stroke);
      color: var(--muted);
      font-size: 13px;
    }

    .foot {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .foot a { color: var(--pink); text-decoration: none; font-weight: 950; }
    .foot a:hover { text-decoration: underline; }

    @media (min-width: 900px) {
      .t { grid-column: span 6; }
      .products .p { grid-column: span 6; }
    }

    @media (max-width: 980px) {
      .hero-grid { grid-template-columns: 1fr; }
      .search { grid-template-columns: 1fr; }
      nav ul { display: none; }
      .p { grid-template-columns: 1fr; }
      .ph { height: 140px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .p { transition: none; }
    }
