
    /* Boutique listing */
    .boutique-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      max-width: 1000px;
      margin: 0 auto;
      padding: 70px 24px 90px;
    }
    .product-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(74,63,63,0.08);
      display: flex;
      flex-direction: column;
      transition: transform 0.25s, box-shadow 0.25s;
      text-decoration: none;
      color: inherit;
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 36px rgba(74,63,63,0.15);
    }
    .product-card-img {
      aspect-ratio: 4 / 3;
      background: var(--cream-tile);
      overflow: hidden;
    }
    .product-card-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .product-card:hover .product-card-img img { transform: scale(1.04); }
    .product-card-body {
      padding: 26px 24px 28px;
      display: flex; flex-direction: column;
      flex: 1;
    }
    .product-card-cat {
      font-size: 0.72rem;
      text-transform: uppercase; letter-spacing: 1.5px;
      font-weight: 700;
      color: var(--terracotta);
      margin-bottom: 10px;
    }
    .product-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--prune);
      line-height: 1.25;
      margin-bottom: 12px;
    }
    .product-card p {
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--charcoal);
      opacity: 0.85;
      margin-bottom: 22px;
      flex: 1;
    }
    .product-card-footer {
      display: flex; justify-content: space-between; align-items: center;
      gap: 12px;
    }
    .product-card-price {
      font-size: 1.15rem; font-weight: 700;
      color: var(--prune);
    }
    .product-card-price.muted { color: var(--charcoal); opacity: 0.55; font-size: 0.9rem; font-weight: 600; }
    .product-card-link {
      display: inline-block;
      background: var(--terracotta);
      color: #fff;
      padding: 10px 22px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .product-card-link:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

    @media (max-width: 640px) {
      .boutique-grid { grid-template-columns: 1fr; padding: 40px 20px 70px; gap: 24px; }
    }
  
