@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;1,500;1,600&display=swap');
.hc-wrap{ max-width:1120px; margin:0 auto; font-family:'Helvetica Neue',Arial,sans-serif; }

/* Filtros */
.hc-filters{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:18px; }
.hc-chip{
  font-size:15px; font-weight:600; color:#1c1a19; background:#fff;
  border:1px solid #e2dccf; border-radius:8px; padding:11px 20px;
  cursor:pointer; transition:all .15s ease;
}
.hc-chip:hover{ border-color:#a01e28; color:#a01e28; }
.hc-chip.active{ background:#a01e28; border-color:#a01e28; color:#fff; }

/* Buscador */
.hc-search-row{ display:flex; justify-content:center; margin-bottom:34px; }
.hc-search-row input{
  width:100%; max-width:680px; padding:15px 20px;
  border:1px solid #e2dccf; border-radius:10px; font-size:16px; background:#fff;
}
.hc-search-row input:focus{ outline:2px solid #a01e28; outline-offset:1px; border-color:transparent; }

.hc-mode-note{ text-align:center; font-size:13px; color:#5b5551; margin:-22px 0 26px; min-height:18px; }

/* Card */
.hc-card{
  background:#fff; border:1px solid #e2dccf; border-radius:14px;
  overflow:hidden; display:flex; flex-direction:column; height:100%;
}
.hc-card-img{ position:relative; aspect-ratio:16/11; background-size:cover; background-position:center; }
.hc-badge{
  position:absolute; top:12px; left:12px; background:#a01e28; color:#fff;
  font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:5px 10px; border-radius:5px;
}
.hc-card-body{ padding:20px 20px 22px; display:flex; flex-direction:column; flex:1; }
.hc-card-name{ font-size:22px; margin:0 0 6px; font-weight:700; font-family:Georgia,serif; color:#1c1a19; }
.hc-card-lema{
  font-family:'Playfair Display', Georgia, serif !important;
  font-style:italic !important;
  font-weight:500;
  color:#a01e28;
  font-size:16px;
  line-height:1.4;
  margin:0 0 12px;
}
.hc-card-desc{ font-size:14px; line-height:1.55; color:#5b5551; margin:0 0 20px; flex:1; }
.hc-card-actions{ display:flex; gap:10px; }
.hc-btn{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  text-align:center;
  font-size:14px;
  font-weight:600;
  padding:11px 10px;
  border-radius:8px;
  text-decoration:none;
  cursor:pointer;
  transition:all .15s ease;
  border:1px solid #a01e28;
}
.hc-btn-primary{ background:#a01e28; color:#fff; }
.hc-btn-primary:hover{ background:#851822; border-color:#851822; }
.hc-btn-ghost{ background:#fff; color:#a01e28; }
.hc-btn-ghost:hover{ background:#a01e28; color:#fff; }

/* Carrusel */
.hc-swiper{ padding-bottom:10px; }
.hc-swiper .swiper-slide{ height:auto; }
.hc-swiper .swiper-button-next, .hc-swiper .swiper-button-prev{ color:#a01e28; }
.hc-swiper .swiper-pagination-bullet-active{ background:#a01e28; }

/* Grilla */
.hc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media(max-width:900px){ .hc-grid{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .hc-grid{ grid-template-columns:1fr;} .hc-card-actions{ flex-direction:column; } }

.hc-hidden{ display:none !important; }
.hc-empty{ text-align:center; color:#5b5551; padding:50px 0; font-size:16px; }
.hc-see-all{ text-align:center; margin-top:44px; }
.hc-see-all button{
  font-size:15px; font-weight:700; color:#a01e28; background:#fff;
  border:1.5px solid #a01e28; border-radius:9px; padding:13px 26px; cursor:pointer;
}
.hc-see-all button:hover{ background:#a01e28; color:#fff; }