/* =========================
   Utilities — crema + textura
========================= */

.creamSection {
  background: var(--cream, #f3efe7);
  position: relative;
}

.hasTexture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/topo-texture.png");
  background-size: 900px auto;
  background-repeat: repeat;
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 0;
}
/* VINOS — NAV etiquetas mobile: 3 visibles en 1 fila */
@media (max-width: 900px) {
  body.pageVinos .vinosPrimary {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
  }

  body.pageVinos .vinosPrimary .tab {
    flex: 1 1 0;
    min-width: 0;

    white-space: normal; /* permite 2 líneas */
    text-align: center;

    font-size: 11px;
    letter-spacing: 0.12em;
    line-height: 1.15;

    padding: 10px 6px;
  }
}
