    #productos { background: #ede0ce; }
    .products-header { text-align: center; margin-bottom: 3.5rem; }
    .products-header .section-tag { justify-content: center; }
    .products-header .section-tag::before { display: none; }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    .product-card {
      background: var(--cream); border-radius: 18px; overflow: hidden;
      box-shadow: 0 4px 22px rgba(107,63,42,.08);
      transition: transform .3s, box-shadow .3s;
    }
    .product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(107,63,42,.16); }
    .product-img {
      height: 230px; width: 100%; object-fit: cover;
      background: var(--warm);
    }
    .product-img.placeholder {
      display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem;
    }
    .product-body { padding: 1.6rem; }
    .product-cat {
      font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--accent); font-weight: 700; margin-bottom: .5rem;
    }
    .product-name {
      font-family: 'Playfair Display', serif; font-size: 1.4rem;
      color: var(--dark); margin-bottom: .6rem;
    }
    .product-desc { font-size: .9rem; color: var(--mocha); line-height: 1.6; font-weight: 300; }