  :root {
    --bg: #fbfaf7;
    --surface: #ffffff;
    --surface-2: #f1efe9;
    --text: #1a1a1c;
    --muted: #6b6b75;
    --accent: #b8864a;
    --accent-dark: #8b6231;
    --accent-hover: #a07539;
    --border: #e6e3dc;
    --radius: 14px;
    --max-width: 1140px;
    --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.06);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.01em;
    line-height: 1.15;
  }

  a { color: var(--accent-dark); text-decoration: none; }
  a:hover { color: var(--accent); }

  img { max-width: 100%; display: block; }

  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* Header */
  header {
    position: sticky;
    top: 0;
    background: rgba(251, 250, 247, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text);
    letter-spacing: -0.02em;
  }
  .logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
  .nav-links a { color: var(--muted); font-size: 0.95rem; font-weight: 500; }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
  }
  .nav-cta:hover { background: var(--accent-hover); color: #fff !important; }
  @media (max-width: 720px) {
    .nav-links li:not(:last-child) { display: none; }
  }

  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.95rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.18s ease;
    font-family: inherit;
    text-align: center;
  }
  .btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(184, 134, 74, 0.35);
  }
  .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 18px rgba(184, 134, 74, 0.45);
  }
  .btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
  }
  .btn-secondary:hover {
    background: var(--surface-2);
    border-color: var(--muted);
    color: var(--text);
  }
  .btn-large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

  /* Hero */
  .hero {
    padding: 5rem 0 4rem;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-block;
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent-dark);
  }
  .hero-lead {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
  }
  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    aspect-ratio: 4 / 5;
  }
  .hero-tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .hero-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: var(--accent);
    color: var(--text);
  }
  .hero-tile-emoji {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    margin-bottom: 0.85rem;
  }
  .hero-tile strong {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--text);
  }
  @media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-image { max-width: 460px; margin: 0 auto; }
    .hero-showcase { max-width: 460px; margin: 0 auto; aspect-ratio: 1 / 1; }
  }

  /* Trust bar */
  .trust-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
  }
  .trust-item {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
  }
  .trust-item strong {
    display: block;
    color: var(--text);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  @media (max-width: 720px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  }

  /* Sections */
  section { padding: 5.5rem 0; }
  .section-eyebrow {
    text-align: center;
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
  }
  .section-subtitle {
    text-align: center;
    color: var(--muted);
    margin: 0 auto 3.5rem;
    font-size: 1.1rem;
    max-width: 620px;
  }
  .alt-bg { background: var(--surface); }
  .accent-bg { background: var(--surface-2); }

  /* Products */
  .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.75rem;
  }
  .product {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
  }
  .product:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
  }
  /* Stretched-link: makes the whole card clickable to wherever its primary button points */
  .product .btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .product-image {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product-image .emoji {
    font-size: 4.5rem;
  }
  .product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--text);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .product-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .product h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .product-desc {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex: 1;
  }
  .product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-dark);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
  }
  .product-price small {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
  }
  .product .btn {
    width: 100%;
  }
  .lineup-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin: 3rem 0 1.5rem;
    text-align: center;
    color: var(--text);
  }
  .lineup-heading:first-of-type {
    margin-top: 0.5rem;
  }
  .cat-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 0.5rem 0 2rem;
    padding: 0.25rem 0;
  }
  .cat-filter .chip {
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
    white-space: nowrap;
  }
  .cat-filter .chip:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
  }
  .cat-filter .chip:active { transform: translateY(1px); }
  .cat-filter .chip.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .cat-filter .chip-count {
    font-size: 0.78rem;
    opacity: 0.7;
    background: rgba(0,0,0,0.07);
    padding: 0.08rem 0.5rem;
    border-radius: 999px;
    font-weight: 600;
  }
  .cat-filter .chip.is-active .chip-count {
    background: rgba(255,255,255,0.22);
    opacity: 1;
  }
  @media (max-width: 600px) {
    .cat-filter {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-left: 1rem;
      padding-right: 1rem;
      margin-left: -1rem;
      margin-right: -1rem;
    }
    .cat-filter::-webkit-scrollbar { display: none; }
  }
  .products-compact {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
  }
  .products-compact .product-image {
    aspect-ratio: 1 / 1;
  }
  .products-compact .product-image .emoji {
    font-size: 3.2rem;
  }
  .products-compact .product-body {
    padding: 1.25rem;
  }
  .products-compact h3 {
    font-size: 1.15rem;
  }
  .products-compact .product-desc {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .products-compact .product-price {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
  }
  .products-compact .btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  .byo-panel {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
  }
  .byo-panel .byo-icon {
    font-size: 4rem;
    line-height: 1;
  }
  .byo-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }
  .byo-panel p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
  }
  .byo-panel .formats {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
  }
  @media (max-width: 720px) {
    .byo-panel {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 1.75rem;
    }
  }

  /* Steps / How to Order */
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: step;
  }
  .step {
    text-align: center;
    position: relative;
  }
  .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 4px 12px rgba(184, 134, 74, 0.3);
  }
  .step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .step p {
    color: var(--muted);
    font-size: 0.95rem;
  }

  /* Gallery */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    aspect-ratio: 3 / 4;
    position: relative;
    box-shadow: var(--shadow);
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  .gallery-item.crop-top img {
    object-position: center 70%;
  }
  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.78) 100%);
    color: #fff;
  }
  .gallery-caption strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
  }
  .gallery-caption span {
    font-size: 0.85rem;
    opacity: 0.85;
  }
  .gallery-buy {
    display: inline-block;
    margin-top: 0.85rem;
    padding: 0.55rem 1.1rem;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .gallery-buy:hover {
    transform: translateY(-1px);
    background: var(--accent-hover);
    color: #fff;
  }

  /* Process / What Happens Next */
  .process-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    max-width: 760px;
    margin: 0 auto;
    box-shadow: var(--shadow);
  }
  .process-list {
    list-style: none;
    counter-reset: process;
  }
  .process-list li {
    counter-increment: process;
    padding: 1.25rem 0 1.25rem 4rem;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .process-list li:last-child { border-bottom: none; padding-bottom: 0; }
  .process-list li:first-child { padding-top: 0; }
  .process-list li::before {
    content: counter(process);
    position: absolute;
    left: 0;
    top: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--surface-2);
    color: var(--accent-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }
  .process-list li:first-child::before { top: 0; }
  .process-list h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  .process-list p {
    color: var(--muted);
    font-size: 0.95rem;
  }

  /* Order form */
  .order-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
  }
  @media (max-width: 860px) {
    .order-wrap { grid-template-columns: 1fr; gap: 2rem; }
  }
  .order-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .order-info p { color: var(--muted); margin-bottom: 1.5rem; }
  .photo-tips {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
  }
  .photo-tips h4 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }
  .photo-tips ul {
    list-style: none;
    padding: 0;
  }
  .photo-tips li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--muted);
    font-size: 0.95rem;
  }
  .photo-tips li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
  }
  .photo-tips li.no::before {
    content: "✗";
    color: #c0524a;
  }

  .order-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
  }
  .form-group { margin-bottom: 1.25rem; }
  .form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
  }
  .form-group .hint {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 400;
    margin-left: 0.4rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 134, 74, 0.15);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .file-drop {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    background: var(--bg);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
  }
  .file-drop:hover { border-color: var(--accent); background: var(--surface-2); }
  .file-drop input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }
  .file-drop-text {
    color: var(--muted);
    font-size: 0.95rem;
  }
  .file-drop-text strong { color: var(--text); }
  #photo-preview {
    margin-top: 1rem;
    max-height: 200px;
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
    display: none;
  }
  #photo-filename {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--accent-dark);
    font-weight: 500;
    display: none;
  }

  /* FAQ */
  .faq { max-width: 760px; margin: 0 auto; }
  details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: border-color 0.15s;
  }
  details[open] { border-color: var(--accent); }
  summary {
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.02rem;
  }
  summary::-webkit-details-marker { display: none; }
  summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.2s;
  }
  details[open] summary::after { transform: rotate(45deg); }
  details p { color: var(--muted); margin-top: 0.75rem; font-size: 0.95rem; }

  /* CTA banner */
  .cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--radius);
    margin: 4rem auto;
    max-width: var(--max-width);
  }
  .cta-banner h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
  }
  .cta-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
  .cta-banner .btn {
    background: #fff;
    color: var(--accent-dark);
  }
  .cta-banner .btn:hover {
    background: var(--bg);
    color: var(--accent-dark);
  }

  /* Footer */
  footer {
    padding: 4rem 0 2rem;
    background: var(--text);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
  }
  .footer-grid h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .footer-grid a { color: rgba(255,255,255,0.7); display: block; padding: 0.25rem 0; }
  .footer-grid a:hover { color: #fff; }
  .footer-brand .logo { color: #fff; font-size: 1.5rem; margin-bottom: 0.75rem; display: inline-block; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
  }
  @media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  }

  /* Mobile sticky CTA */
  .mobile-cta {
    display: none;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 50;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  }
  @media (max-width: 720px) {
    .mobile-cta { display: block; }
  }

  /* Products teaser on home (4-tile category grid) */
  .cat-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
  }
  .cat-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .cat-tile:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    color: var(--text);
  }
  .cat-tile-emoji {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.85rem;
  }
  .cat-tile strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
  }
  .cat-tile-count {
    font-size: 0.85rem;
    color: var(--muted);
  }
  .products-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }
