:root {
    --bg: #ffffff;
    --text: #232323;
    --muted: #6f6f6f;
    --border: #e7e7e7;
    --accent: #c18b54;
    --radius: 14px;
    --shadow: 0 18px 45px rgba(0,0,0,.14);
  }
  
  * { box-sizing: border-box; }
  
  body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
  }
  
  .container{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
  }
  
  /* HEADER */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }
  
  .header-inner{
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
  }
  
  /* LOGO */
  .logo{
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .logo img{
    max-height: 88px; /* tamaño del logo */
    width: auto;
    height: auto;
    display: block;
  }
  
  /* NAV DESKTOP */
  .nav-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .nav-link{
    display: inline-flex;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--muted);
    transition: background .15s ease, color .15s ease;
  }
  .nav-link:hover,
  .nav-link:focus-visible{
    background: #f4f4f4;
    color: var(--text);
    outline: none;
  }
  
  .nav-link.cta{
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
  }
  .nav-link.cta:hover,
  .nav-link.cta:focus-visible{
    background: #cc9a67;
    color: #fff;
  }
  
  /* BOTÓN HAMBURGUESA */
  .nav-toggle{
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .nav-toggle .bar{
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    display: block;
  }
  
  /* OVERLAY */
  .nav-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 150;
  }
  
  /* ===== MOBILE ===== */
  @media (max-width: 900px){
    .nav-toggle{
      display: inline-flex;
      flex-direction: column;
    }
  
    /* menú desplegable */
    .nav{
      position: fixed;
      left: 0;
      right: 0;
      top: 110px;                 /* igual a header-inner height */
      background: #fff;
      border-top: 1px solid var(--border);
      box-shadow: var(--shadow);
      z-index: 180;
  
      max-height: 0;              /* cerrado */
      overflow: hidden;
      transition: max-height .35s ease;
    }
  
    .nav-list{
      flex-direction: column;
      padding: 20px;
      gap: 12px;
      text-align: center;
    }
  
    .nav-link{
      justify-content: center;
      padding: 14px 16px;
      font-size: 1.05rem;
    }
  
    /* abierto */
    .site-header.is-open .nav{
      max-height: 75vh;
    }
  
    .site-header.is-open .nav-overlay{
      display: block;
    }
  }
  
  /* ===== SLIDER ===== */
.slider-section {
    width: 100%;
    padding: 40px 0;
    background: #fff;
  }
  
  .slider {
    position: relative;
    width: min(1200px, 100%);
    margin: auto;
    overflow: hidden;
    border-radius: 18px;
  }
  
  .slider-track {
    display: flex;
    transition: transform 0.6s ease;
  }
  
  .slide {
    min-width: 100%;
    height: 520px;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  /* Flechas */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.55);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
    transition: background .2s ease;
  }
  
  .slider-btn:hover {
    background: rgba(0,0,0,.8);
  }
  
  .slider-btn.prev {
    left: 16px;
  }
  
  .slider-btn.next {
    right: 16px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .slide {
      height: 340px;
    }
  }
  
  
 /* ===== CATEGORÍAS (GRID) ===== */
.cat-section{
  padding: 50px 0;
  background: #fff;
}

.cat-container{
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.cat-head{
  margin-bottom: 18px;
}

.cat-title{
  margin: 0;
  font-size: 1.6rem;
  color: #232323;
}

.cat-subtitle{
  margin: 8px 0 0;
  color: #6f6f6f;
}

/* Wrap (ya NO es carrusel) */
.cat-wrap{
  position: relative;
  overflow: visible;       /* ✅ no cortamos contenido */
  border-radius: 18px;
}

/* Flechas (ocultas, ya no se usan) */
.cat-arrow{
  display: none;
}

/* viewport (ya no scroll horizontal) */
.cat-viewport{
  overflow: visible;
}

/* Track: ahora es GRID */
.cat-track{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* ✅ 2 columnas desktop */
  gap: 14px;
  transform: none;
}

/* Card */
.cat-card{
  width: 100%;             /* ✅ ocupa su celda del grid */
}

/* Link */
.cat-card__link{
  display: block;
  position: relative;
  height: 220px;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;         /* ✅ para que la imagen respete el borde redondeado */
}

/* Imagen */
.cat-card__img{
  width: 100%;
  height: 100%;
  object-fit: contain;        /* ✅ se ve mejor en cards; si quieres full sin recorte: contain */
  background-color: #f5f5f5;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

/* Overlay con nombre + botón */
.cat-card__overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.58), rgba(0,0,0,.02));
}

.cat-card__name{
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.cat-card__btn{
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 12px;
  background: #c18b54;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
}

/* Hover */
.cat-card__link:hover .cat-card__img{
  transform: scale(1.08);
}

/* Responsive: 1 columna en móvil */
@media (max-width: 900px){
  .cat-track{
    grid-template-columns: 1fr; /* ✅ 1 columna */
  }
  .cat-card__link{ height: 210px; }
}

@media (max-width: 520px){
  .cat-card__name{ font-size: 1.05rem; }
}

  /* ===== PRODUCTOS DESTACADOS ===== */
.featured-section {
    padding: 60px 0;
    background: #fff;
  }
  
  .featured-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
  }
  
  .featured-head {
    margin-bottom: 32px;
  }
  
  .featured-head h2 {
    margin: 0;
    font-size: 1.7rem;
    color: #232323;
  }
  
  .featured-head p {
    margin: 8px 0 0;
    color: #6f6f6f;
  }
  
  /* GRID */
  .featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  /* CARD */
  .product-card {
    background: #fafafa;
    border-radius: 18px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
  }
  
  .product-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #f5f5f5;
    display: block;
  }
  
  /* INFO */
  .product-info {
    padding: 20px;
    text-align: center;
  }
  
  .product-info h3 {
    margin: 0 0 14px;
    font-size: 1.1rem;
    color: #2b2b2b;
  }
  
  .product-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    background: #c18b54;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
  }
  
  .product-btn:hover {
    background: #cc9a67;
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .featured-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }
  
    .product-card img {
      height: 220px;
    }
  }

/* ===== FOOTER PREMIUM OSCURO ===== */
.footer-premium{
    background: #0f1115;
    color: rgba(255,255,255,.86);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 58px 0 18px;
  }
  
  .footer-premium__container{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 38px;
    align-items: start;
  }
  
  .footer-premium__logo{
    margin: 0 0 10px;
    font-size: 1.4rem;
    letter-spacing: .2px;
  }
  
  .footer-premium__desc{
    margin: 0 0 16px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    max-width: 42ch;
  }
  
  .footer-premium__col h4{
    margin: 0 0 14px;
    font-size: 1.05rem;
    color: rgba(255,255,255,.9);
  }
  
  /* Links */
  .footer-premium__links{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255,255,255,.68);
    transition: color .18s ease, transform .18s ease;
  }
  
  .footer-link:hover{
    color: #c18b54;
    transform: translateX(2px);
  }
  
  .footer-premium .icon{
    display: inline-flex;
    color: rgba(255,255,255,.75);
  }
  
  /* WhatsApp pill */
  .footer-premium__wa{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.88);
    width: fit-content;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
  }
  
  .footer-premium__wa:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.09);
    border-color: rgba(193,139,84,.35);
  }
  
  /* Bottom line */
  .footer-premium__bottom{
    width: min(1200px, calc(100% - 40px));
    margin: 34px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.55);
    font-size: .92rem;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  
  /* Responsive */
  @media (max-width: 900px){
    .footer-premium__container{
      grid-template-columns: 1fr;
      gap: 26px;
    }
    .footer-premium__bottom{
      justify-content: flex-start;
      text-align: left;
    }
  }

  .whatsapp-float{
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0,0,0,.3);
    z-index: 999;
    transition: transform .2s ease;
  }
  
  .whatsapp-float:hover{
    transform: scale(1.05);
  }
  