/* Sección */
.yuyo-seccion,
.yuyo-menu-content,
.yuyo-nav { background-color: #ffffff; }

.yuyo-seccion { padding: 1.5rem 1rem; box-sizing: border-box; }

.yuyo-category-title {
  text-align: center; font-size: 2rem; font-weight: 800;
  color: #631719; margin: 0 0 1rem 0;
}

/* Grid */
.yuyo-menu { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
@media (max-width: 768px){ .yuyo-menu { grid-template-columns: 1fr; } }

/* Card */
.yuyo-producto {
  background:#fff;
  border-radius:16px;
  border:0.25rem solid rgba(0,0,0,.06); /* ← borde más grueso */
  padding:1.25rem 1.25rem 1rem;
  box-shadow:0 3px 10px rgba(0,0,0,.08);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.yuyo-producto:hover { transform: translateY(-4px); box-shadow:0 10px 22px rgba(0,0,0,.16); border-color: rgba(0,0,0,.12); }

.yuyo-nombre { color:#631719; font-size:1.25rem; font-weight:800; margin:0 0 .5rem; }
.yuyo-descripcion { color:#000; font-size:1rem; line-height:1.5; margin:0 0 .75rem; }
.yuyo-precio { margin:0; text-align:right; }
.yuyo-precio strong { color:#631719; font-size:1.125rem; }

/* Nav minimal */
.yuyo-nav {
  display:flex; flex-wrap:wrap; gap:.75rem; justify-content:center;
  margin:0 0 1rem; padding:.5rem 1rem;
}
.yuyo-nav .yuyo-nav-btn{
  appearance:none; border:1.5px solid #000 !important; background:transparent !important;
  color:#000 !important; border-radius:999px; padding:.45rem .9rem; font-weight:700; cursor:pointer;
  transition:all .15s ease;
}
.yuyo-nav .yuyo-nav-btn:hover{
  background:#631719 !important; color:#fff !important; border-color:#631719 !important;
}
.yuyo-nav .yuyo-nav-btn.is-active{
  background:#631719 !important; color:#fff !important; border-color:#631719 !important;
}
.yuyo-nav .yuyo-nav-ico{ display:none !important; }
.yuyo-nav .yuyo-nav-txt{ font-size:.95rem; }

/* Loading */
.yuyo-loading{ text-align:center; color:#631719; font-weight:700; padding:2rem 0; }
