:root{
  --hm-navy: #0B1C2D;
  --hm-navy-2: #0F2438;
  --hm-gold: #D4AF37;
  --hm-gold-2: #C9A24D;
  --hm-ink: #0A0F17;
  --hm-mist: #F5F7FA;
}

body{
  background: linear-gradient(180deg, #eef2f7 0%, #f8fafc 100%);
  color: var(--hm-ink);
}

.titulo-harper{
  color: var(--hm-navy);
}

.btn-harper{
  background: linear-gradient(135deg, var(--hm-gold), var(--hm-gold-2));
  color: var(--hm-navy);
  font-weight: 700;
  transition: transform .2s ease, filter .2s ease;
  border-radius: .9rem;
  box-shadow: 0 8px 25px rgba(201,162,77,.22);
}

.btn-harper:hover{
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.04);
}

/* HERO */
.hm-hero-section{
  position: relative;
  overflow: hidden;
}

.hm-hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 12% 20%, rgba(212,175,55,.18), transparent 60%),
    radial-gradient(700px 420px at 88% 10%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(135deg, var(--hm-navy), var(--hm-navy-2));
}

.hm-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.20) 45%, rgba(0,0,0,.34));
}

.hm-hero-glow-left,
.hm-hero-glow-right{
  position: absolute;
  border-radius: 9999px;
  filter: blur(60px);
  pointer-events: none;
}

.hm-hero-glow-left{
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: rgba(212,175,55,.22);
}

.hm-hero-glow-right{
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,.12);
}

.hm-hero-wrap{
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem 3rem;
}

.hm-hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.hm-hero-copy{
  text-align: center;
}

.hm-hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
  margin-bottom: 1rem;
}

.hm-hero-kicker-line{
  width: 42px;
  height: 1px;
  background: rgba(212,175,55,.85);
}

.hm-hero-title{
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
  color: rgba(255,255,255,.98);
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
  margin-bottom: 1rem;
}

.hm-hero-title span{
  color: var(--hm-gold);
}

.hm-hero-text{
  font-size: .98rem;
  line-height: 1.6;
  color: rgba(255,255,255,.84);
  text-shadow: 0 1px 10px rgba(0,0,0,.28);
  max-width: 38rem;
  margin: 0 auto;
}

.hm-hero-points{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1rem;
  margin-top: 1.25rem;
  font-size: .86rem;
  color: rgba(255,255,255,.82);
}

.hm-hero-points span{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.hm-hero-points i{
  color: var(--hm-gold);
}

.hm-hero-slider-shell{
  width: 100%;
}

.hm-hero-swiper{
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.22);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.hm-slide-card{
  min-height: 240px;
  padding: 1.25rem 1.15rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.hm-slide-kicker{
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  margin-bottom: .85rem;
  color: rgba(212,175,55,.92);
}

.hm-slide-title{
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin-bottom: .9rem;
}

.hm-slide-text{
  font-size: .92rem;
  line-height: 1.6;
  max-width: 28rem;
  color: rgba(255,255,255,.78);
}

.hm-hero-swiper .swiper-pagination{
  bottom: 10px !important;
}

.hm-hero-swiper .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.38) !important;
  opacity: 1 !important;
}

.hm-hero-swiper .swiper-pagination-bullet-active{
  width: 24px;
  border-radius: 999px;
  background: var(--hm-gold) !important;
}

.hm-hero-swiper .swiper-button-next,
.hm-hero-swiper .swiper-button-prev{
  color: rgba(212,175,55,.90) !important;
  transform: scale(.78);
}

.hm-hero-swiper .swiper-button-next:after,
.hm-hero-swiper .swiper-button-prev:after{
  font-size: 1.15rem !important;
  font-weight: 900;
}

/* PRODUCTOS */
.producto-card{
  border-color: rgba(11,28,45,.08);
}

.producto-card-img{
  border-color: rgba(212,175,55,.12);
}

.badge-modo{
  border-color: rgba(212,175,55,.28);
  color: var(--hm-navy);
}

.badge-modo-simple{
  border-color: rgba(11,28,45,.12);
  color: var(--hm-navy);
}

.icon-gold{
  color: var(--hm-gold);
}

.icon-dark{
  color: rgba(11,28,45,.75);
}

.producto-titulo{
  color: var(--hm-ink);
}

.producto-marca,
.producto-meta,
.texto-vacio{
  color: rgba(11,28,45,.65);
}

.producto-precio{
  color: var(--hm-navy);
}

.stock-ok{
  color: rgba(11,28,45,.75);
}

.stock-no{
  color: rgba(185,28,28,.90);
}

.btn-detalle{
  background: rgba(212,175,55,.12);
  color: var(--hm-navy);
  border: 1px solid rgba(212,175,55,.28);
}

/* RESPONSIVE */
@media (max-width: 639px){
  .hm-hero-wrap{
    padding-top: 2.5rem;
    padding-bottom: 2.25rem;
  }

  .hm-hero-title{
    font-size: 1.9rem;
    line-height: 1.08;
    margin-bottom: .85rem;
  }

  .hm-hero-text{
    font-size: .93rem;
    line-height: 1.55;
    max-width: 100%;
  }

  .hm-hero-points{
    font-size: .80rem;
    gap: .6rem .85rem;
    margin-top: 1rem;
  }

  .hm-hero-swiper{
    border-radius: 1rem;
  }

  .hm-slide-card{
    min-height: 220px;
    padding: 1.1rem 1rem 2.3rem;
  }

  .hm-slide-title{
    font-size: 1.35rem;
    line-height: 1.14;
  }

  .hm-slide-text{
    font-size: .87rem;
    line-height: 1.5;
  }

  .hm-hero-swiper .swiper-button-next,
  .hm-hero-swiper .swiper-button-prev{
    display: none !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px){
  .hm-hero-wrap{
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .hm-hero-title{
    font-size: 2.5rem;
  }

  .hm-slide-card{
    min-height: 280px;
    padding: 1.5rem 1.5rem 2.6rem;
  }

  .hm-slide-title{
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px){
  .hm-hero-wrap{
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .hm-hero-grid{
    grid-template-columns: 1.05fr .95fr;
    gap: 2.5rem;
  }

  .hm-hero-copy{
    text-align: left;
  }

  .hm-hero-text{
    margin-left: 0;
  }

  .hm-hero-points{
    justify-content: flex-start;
  }

  .hm-hero-title{
    font-size: 3.6rem;
  }

  .hm-slide-card{
    min-height: 360px;
    padding: 2rem 2rem 3rem;
  }

  .hm-slide-title{
    font-size: 2.35rem;
  }
}