*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#f5f5f5;
  color:#111;
}

body.dark{
  background:#111;
  color:white;
}

/* LOADER */

.loader{
  position:fixed;
  inset:0;
  background:black;
  z-index:99999;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  color:white;
}

.loader img{
  width:400px;
  animation:pulseLogo 1.3s infinite alternate;
}

.loader p{
  margin-top:20px;
  color:red;
  font-weight:bold;
}

@keyframes pulseLogo{

  from{
    transform:scale(0.9);
    opacity:0.6;
  }

  to{
    transform:scale(1.05);
    opacity:1;
  }

}

/* LOGO FLOTANTE */

.watermark-logo{
  position:fixed;
  width:420px;
  opacity:0.02;
  right:20px;
  bottom:80px;
  z-index:-1;
  pointer-events:none;
}

/* BARRA SUPERIOR */

.top-bar{
  background:black;
  overflow:hidden;
  white-space:nowrap;
  width:100%;
  padding:10px 0;
  border-bottom:2px solid red;
}

.marquee{
  display:flex;

  width:max-content;

  animation:mover 25s linear infinite;
}

.marquee span{
  color:white;

  font-size:14px;

  font-weight:bold;

  letter-spacing:2px;

  text-transform:uppercase;

  white-space:nowrap;

  padding-right:80px;
}

@keyframes mover{

  0%{
    transform:translateX(100%);
  }

  100%{
    transform:translateX(-100%);
  }

}
/* HEADER */

header{
  background:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 3%;
  gap:20px;
  height:160px;
}

body.dark header{
  background:#1b1b1b;
}

/* CONTENEDOR HORARIOS */

.header-wrapper{
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* TITULO */

.header-title{
  font-size:18px;

  font-weight:bold;

  color:red;

  text-transform:uppercase;

  letter-spacing:1px;
}
/* HORARIOS HEADER */

.header-info{
  display:flex;

  gap:30px;

  align-items:center;
}

.schedule-box{
  background:white;

  border-left:4px solid red;

  padding:8px 14px;

  box-shadow:
  0 2px 8px rgba(0,0,0,.06);

  border-radius:8px;
}

.schedule-box h3{
  font-size:14px;

  color:red;

  margin-bottom:6px;
}

.schedule-box p{
  font-size:11px;

  line-height:17px;

  color:#333;
}

body.dark .schedule-box{
  background:#1f1f1f;
}

body.dark .schedule-box p{
  color:#ddd;
}

/* LOGO HEADER */

.logo img{
  width:260px;
  max-height:90px;
  object-fit:contain;
  transition:0.3s;
}

.logo img:hover{
  transform:scale(1.05);
}

/* BUSCADOR */

.search-box{
  width:50%;
  display:flex;
}

.search-box input{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  outline:none;
  font-size:15px;
}

.search-box button{
  width:70px;
  border:none;
  background:black;
  color:white;
  cursor:pointer;
  font-size:18px;
}

/* DARK MODE */

.dark-btn{
  background:red;
  color:white;
  border:none;
  padding:12px 16px;
  cursor:pointer;
  font-size:18px;
}

/* HERO */

.hero{
  height:180px;

  background:
  radial-gradient(
    circle at center,
    rgba(255,0,0,0.18),
    transparent 45%
  ),

  linear-gradient(
    135deg,
    #050505 0%,
    #151515 45%,
    #7d0000 100%
  );

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;

  padding:0;

  color:white;

  border-bottom:4px solid red;

  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;

  width:500px;
  height:500px;

  background:rgba(255,255,255,0.03);

  border-radius:50%;

  top:-250px;
  right:-150px;
}

.hero::after{
  content:"";
  position:absolute;

  width:350px;
  height:350px;

  background:rgba(255,0,0,0.08);

  border-radius:50%;

  bottom:-180px;
  left:-100px;
}

/* CONTENIDO HERO CENTRADO */

.hero-content{
  position:relative;
  z-index:2;

  width:100%;
  height:100%;

  display:flex;
  justify-content:center;
  align-items:center;
  
  animation:heroEnter 0.8s ease;
}

/* LOGO HERO */

.hero-logo{
  width:400px;
  max-width:80%;

  display:block;

  margin:0 auto;

  filter:drop-shadow(
    0 0 15px rgba(255,0,0,0.35)
  );
}

/* OCULTAR TEXTOS */

.hero h1,
.hero p,
.hero-subtext,
.hero a{
  display:none;
}

/* ANIMACION */

@keyframes heroEnter{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}
/* FILTROS NUEVOS */

.brand-filters{
  background:red;

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(150px,1fr));

  gap:12px;

  padding:18px;

  width:100%;
}

.brand-filters button{
  background:white;

  color:red;

  border:none;

  width:100%;

  height:52px;

  font-size:16px;

  font-weight:bold;

  border-radius:10px;

  cursor:pointer;

  transition:0.3s;
}

.brand-filters button:hover,
.brand-filters button.active{
  background:black;
  color:white;

}

/* PRODUCTOS */

main{
  padding:20px;
}

.products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}

/* CARD */

.product-card{
  background:white;

  padding:10px;

  position:relative;

  transition:0.3s;

  border:1px solid #ececec;

  overflow:hidden;
}

body.dark .product-card{
  background:#1f1f1f;
  border-color:#333;
}

.product-card:hover{
  transform:translateY(-6px) scale(1.01);

  box-shadow:
  0 12px 30px rgba(255,0,0,0.18);
}

.product-card::after{
  content:"";

  position:absolute;

  top:0;
  left:-100%;

  width:60%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );

  transition:0.6s;
}

.product-card:hover::after{
  left:120%;
}

/* STOCK */

.product-badges{
  position:absolute;
  top:10px;
  left:10px;
  right:62px;
  z-index:5;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

.stock{
  background:red;
  color:white;
  font-size:10px;
  font-weight:bold;
  padding:5px 9px;
  border-radius:20px;
  line-height:1;
}

.side-badge{
  background:black;
  color:white;
  font-size:10px;
  font-weight:bold;
  padding:5px 9px;
  border-radius:20px;
  line-height:1;
}

.side-badge-both{
  outline:2px solid red;
  outline-offset:0;
}
.discount{
  position:absolute;

  top:10px;
  right:10px;

  background:black;

  color:white;

  font-size:10px;

  padding:5px 10px;

  border-radius:20px;

  z-index:5;

  font-weight:bold;
}

/* LOGO TARJETA */

.card-logo{
  position:absolute;
  top:10px;
  right:10px;

  width:45px;

  opacity:.08;

  z-index:1;
}

/* IMAGENES */

.image-container{
  position:relative;

  width:100%;
  height:180px;

  display:flex;
  justify-content:center;
  align-items:center;

  cursor:zoom-in;

  -webkit-box-reflect:
  below -22px
  linear-gradient(
    transparent,
    rgba(0,0,0,0.18)
  );
}

.image-container img{
  position:absolute;

  width:75%;
  height:180px;

  object-fit:contain;

  transition:0.4s ease;
}

.main-image{
  opacity:1;
}

.hover-image{
  opacity:0;
  filter:blur(8px);
}

.product-card:hover .main-image{
  opacity:0;
  filter:blur(8px);
}

.product-card:hover .hover-image{
  opacity:1;
  filter:blur(0);
}

/* TEXTO */

.brand-line{
  color:red;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  margin-top:10px;
  letter-spacing:.4px;
}

.product-card h3{
  margin-top:5px;

  font-size:14px;
  line-height:18px;

  color:#111;

  min-height:36px;

  overflow:hidden;
}

body.dark .product-card h3{
  color:white;
}

.product-meta{
  display:flex;
  flex-wrap:wrap;
  gap:5px;
  margin-top:8px;
  min-height:50px;
}

.product-meta span{
  background:#f4f4f4;
  color:#444;
  border:1px solid #e6e6e6;
  border-radius:20px;
  padding:5px 8px;
  font-size:10px;
  font-weight:bold;
  line-height:1;
}

body.dark .product-meta span{
  background:#2b2b2b;
  color:#ddd;
  border-color:#3a3a3a;
}

.product-card p{
  color:red;

  font-size:16px;

  font-weight:bold;

  margin-top:8px;
}

.product-card small{
  display:block;

  margin-top:5px;

  color:#555;

  font-size:11px;

  line-height:14px;

  height:28px;

  overflow:hidden;
}

body.dark .product-card small{
  color:#ccc;
}

/* BOTON */

.btn-whatsapp{
  display:block;

  width:100%;

  background:red;
  color:white;

  text-align:center;

  padding:9px;

  margin-top:12px;

  text-decoration:none;

  font-size:12px;
  font-weight:bold;

  transition:0.3s;
}

.btn-whatsapp:hover{
  background:black;
}

/* MODAL */

.image-modal{
  display:none;

  position:fixed;

  inset:0;

  background:rgba(0,0,0,.92);

  z-index:9999;

  justify-content:center;
  align-items:center;
}

.image-modal.active{
  display:flex;
}

.image-modal img{
  max-width:85%;
  max-height:85%;

  object-fit:contain;

  background:white;

  padding:15px;

  animation:zoomImage .35s ease;

  transition:.25s ease;
}

.image-modal img.change{
  opacity:0;
  transform:scale(.75);
}

.image-modal img.rotate360{
  animation:spin360 1s ease;
}

@keyframes zoomImage{

  from{
    opacity:0;
    transform:scale(.5);
  }

  to{
    opacity:1;
    transform:scale(1);
  }

}

@keyframes spin360{

  from{
    transform:rotateY(0deg);
  }

  to{
    transform:rotateY(360deg);
  }

}

/* CERRAR */

.close-modal{
  position:absolute;

  top:20px;
  right:35px;

  color:white;

  font-size:45px;

  cursor:pointer;

  z-index:10000;
}

/* FLECHAS */

.modal-arrow{
  position:absolute;

  top:50%;

  transform:translateY(-50%);

  background:red;
  color:white;

  border:none;

  width:55px;
  height:55px;

  border-radius:50%;

  cursor:pointer;

  font-size:22px;

  z-index:10000;
}

.modal-arrow.left{
  left:30px;
}

.modal-arrow.right{
  right:30px;
}

.modal-arrow:hover{
  background:white;
  color:red;
}

.modal-content{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.modal-actions{
  margin-top:15px;
}

.modal-actions button{
  background:red;
  color:white;

  border:none;

  padding:12px 20px;

  cursor:pointer;

  font-weight:bold;
}

/* FOOTER */

footer{
  background:
  radial-gradient(
    circle at center,
    rgba(255,0,0,0.18),
    transparent 45%
  ),

  linear-gradient(
    135deg,
    #050505 0%,
    #151515 45%,
    #7d0000 100%
  );

  color:white;

  padding:50px 5%;

  margin-top:40px;

  position:relative;

  overflow:hidden;
}
footer::before{
  content:"";

  position:absolute;

  width:500px;
  height:500px;

  background:rgba(255,255,255,0.03);

  border-radius:50%;

  top:-250px;
  right:-150px;
}

footer::after{
  content:"";

  position:absolute;

  width:350px;
  height:350px;

  background:rgba(255,0,0,0.08);

  border-radius:50%;

  bottom:-180px;
  left:-100px;
}

.footer-container{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(250px,1fr));

  gap:40px;
   position:relative;
   z-index:2;
}

.footer-logo{
  width:120px;
  margin-bottom:20px;
}

.footer-box h2{
  font-size:22px;

  margin-bottom:20px;

  border-bottom:3px solid black;

  display:inline-block;

  padding-bottom:5px;
}

.footer-box p{
  margin-bottom:15px;

  line-height:24px;

  font-size:14px;
}

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:15px;

  font-size:14px;

  line-height:22px;
}

.footer-box a{
  color:white;
  text-decoration:none;
}

/* REDES */

.social-icons{
  display:flex;
  gap:15px;
  margin-top:20px;
}

.social-icons a{
  width:45px;
  height:45px;

  background:black;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  color:white;

  font-size:20px;

  transition:.3s;
}

.social-icons a:hover{
  transform:scale(1.1);

  background:white;

  color:red;
}

/* WHATSAPP */

.floating-whatsapp{
  position:fixed;

  bottom:20px;
  left:20px;

  width:60px;
  height:60px;

  background:#25d366;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  color:white;

  font-size:30px;

  text-decoration:none;

  z-index:999;

  box-shadow:
  0 5px 20px rgba(0,0,0,.3);
}

/* SIN RESULTADOS */

.no-results{
  grid-column:1/-1;

  text-align:center;

  padding:40px;

  font-size:18px;

  color:#666;
}

/* RESPONSIVE LIMPIO */

@media(max-width:1200px){

  .products{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:768px){

  header{
    flex-direction:column;
    padding:10px 12px;
    gap:12px;
    height:auto;
  }

  .header-wrapper{
    width:100%;
  }

  .header-title{
    font-size:16px;
    text-align:center;
    margin-bottom:8px;
  }

  .header-info{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    width:100%;
  }

  .schedule-box{
    padding:8px 10px;
    border-left:3px solid red;
    border-radius:8px;
  }

  .schedule-box h3{
    font-size:13px;
    margin-bottom:4px;
  }

  .schedule-box p{
    font-size:11px;
    line-height:16px;
    margin-bottom:4px;
  }

  .search-box{
    width:100%;
  }

  .search-box input{
    height:44px;
    font-size:14px;
  }

  .search-box button{
    height:44px;
    width:55px;
  }

  .dark-btn{
    width:55px;
    height:45px;
  }

  .hero{
    height:95px;
  }

  .hero-logo{
    width:170px;
  }

  .brand-filters{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    padding:12px 8px;
    gap:8px;
  }

  .brand-filters button{
    width:100%;
    min-width:0;
    height:45px;
    font-size:15px;
  }

  .products{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .image-container{
    height:140px;
  }

  .image-container img{
    height:140px;
  }

}

@media(max-width:480px){

  .hero{
    height:90px;
  }

  .hero-logo{
    width:150px;
  }

  .products{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

}
.discount{
  position:absolute;
  top:10px;
  right:10px;
  background:black;
  color:white;
  font-size:10px;
  padding:5px 10px;
  border-radius:20px;
  z-index:5;
  font-weight:bold;
}

/* MONTAJE APROBADO */

header{
  height:auto;
  min-height:92px;
}

.mirror-wordmark{
  display:flex;
  align-items:center;
  gap:4px;
  min-width:170px;
  color:#111;
  font-size:28px;
  font-weight:900;
  letter-spacing:0;
  line-height:1;
  white-space:nowrap;
  font-family:Impact, "Arial Black", Arial, sans-serif;
  font-style:italic;
  text-transform:uppercase;
}

body.dark .mirror-wordmark{
  color:white;
}

.mirror-wordmark .red{
  color:red;
}

.mirror-wordmark .word-part{
  transform:skewX(-8deg);
  text-shadow:1px 1px 0 rgba(255,0,0,.18);
}

.mirror-wordmark .signal-i{
  position:relative;
  flex:0 0 8px;
  width:8px;
  height:26px;
  background:
    linear-gradient(160deg,rgba(255,255,255,.35),rgba(255,255,255,0) 30%),
    linear-gradient(180deg,#303030,#060606);
  border-radius:6px;
  display:inline-block;
  margin:0;
  overflow:hidden;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12), inset 0 -6px 10px rgba(0,0,0,.45);
}

.mirror-wordmark .signal-i::before{
  content:"";
  position:absolute;
  top:4px;
  left:1px;
  right:1px;
  height:3px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.75),rgba(255,255,255,0) 42%),
    linear-gradient(90deg,#ffcc45,#ff9d00,#ffcc45);
  border-radius:999px;
  animation:blinkSignal .8s infinite;
  box-shadow:0 0 5px rgba(255,170,0,.85), inset 0 0 2px rgba(90,45,0,.4);
}

.mirror-wordmark .signal-i::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:5px;
  width:3px;
  height:10px;
  background:#f5f5f5;
  border-radius:4px;
  opacity:.16;
  transform:translateX(-50%);
}

.mirror-wordmark .mirror-p{
  position:relative;
  width:32px;
  height:32px;
  display:inline-block;
  margin-left:1px;
  transform:skewX(-8deg);
}

.mirror-wordmark .mirror-p::before{
  content:"";
  position:absolute;
  left:1px;
  top:0;
  width:8px;
  height:31px;
  background:linear-gradient(180deg,#1a1a1a,#050505);
  border-radius:6px;
  box-shadow:2px 2px 4px rgba(0,0,0,.2);
}

.mirror-wordmark .mirror-p::after{
  content:"";
  position:absolute;
  left:7px;
  top:2px;
  width:24px;
  height:19px;
  background:
    radial-gradient(circle at 66% 38%,rgba(255,255,255,.8) 0 10%,transparent 11%),
    linear-gradient(135deg,rgba(255,255,255,.55),rgba(255,255,255,.08) 40%,rgba(0,0,0,.25) 100%),
    linear-gradient(180deg,#2a2a2a,#050505);
  border:2px solid red;
  border-left-width:3px;
  border-radius:15px 15px 15px 4px;
  box-shadow:0 4px 10px rgba(0,0,0,.28), inset 0 -3px 6px rgba(255,0,0,.18);
}

.mirror-wordmark .mirror-arm{
  position:absolute;
  left:7px;
  bottom:5px;
  width:16px;
  height:7px;
  background:linear-gradient(180deg,#222,#070707);
  border-radius:7px 2px 2px 7px;
  transform:rotate(-15deg);
  box-shadow:2px 2px 4px rgba(0,0,0,.25);
}

.hero-logo-wrap{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.animated-mirror{
  position:absolute;
  left:-58px;
  top:50%;
  width:68px;
  height:46px;
  transform:translateY(-50%);
  animation:mirrorFloat 2.4s ease-in-out infinite;
  filter:drop-shadow(0 8px 12px rgba(0,0,0,.35));
}

.animated-mirror::before{
  content:"";
  position:absolute;
  right:2px;
  bottom:8px;
  width:30px;
  height:10px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,0) 35%),
    linear-gradient(180deg,#2d2d2d,#060606);
  border-radius:3px 12px 12px 3px;
  transform:rotate(12deg);
  box-shadow:inset 0 -2px 4px rgba(0,0,0,.45);
}

.animated-mirror::after{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  width:48px;
  height:31px;
  background:
    radial-gradient(circle at 28% 30%,rgba(255,255,255,.82) 0 7%,transparent 8%),
    linear-gradient(145deg,rgba(255,255,255,.52),rgba(255,255,255,.08) 36%,rgba(0,0,0,.24) 100%),
    linear-gradient(180deg,#383838,#060606);
  border:3px solid red;
  border-right-width:5px;
  border-radius:18px 24px 8px 20px;
  transform:skewX(5deg);
  box-shadow:inset 0 -5px 9px rgba(255,0,0,.16), inset 4px 0 8px rgba(255,255,255,.08);
}

.mirror-signal{
  position:absolute;
  left:11px;
  top:25px;
  width:28px;
  height:4px;
  z-index:2;
  background:
    linear-gradient(180deg,rgba(255,255,255,.75),rgba(255,255,255,0) 45%),
    linear-gradient(90deg,#ffcd45,#ff9900,#ffcd45);
  border-radius:999px;
  animation:blinkSignal .8s infinite;
  box-shadow:0 0 10px rgba(255,166,0,.85);
}

.animated-mirror-right{
  left:auto;
  right:-58px;
  transform:translateY(-50%) scaleX(-1);
  animation:mirrorFloatRight 2.4s ease-in-out infinite;
}

.animated-mirror-right .mirror-signal{
  left:auto;
  right:11px;
}

@keyframes blinkSignal{
  0%, 45%{
    opacity:1;
  }

  46%, 100%{
    opacity:.25;
  }
}

@keyframes mirrorFloat{
  0%, 100%{
    transform:translateY(-50%) rotate(1deg);
  }

  50%{
    transform:translateY(calc(-50% - 4px)) rotate(-1deg);
  }
}

@keyframes mirrorFloatRight{
  0%, 100%{
    transform:translateY(-50%) scaleX(-1) rotate(1deg);
  }

  50%{
    transform:translateY(calc(-50% - 4px)) scaleX(-1) rotate(-1deg);
  }
}

.brand-filters{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  border-bottom:3px solid #111;
  padding:10px 14px;
  gap:8px;
  position:sticky;
  top:0;
  z-index:10;
}

.brand-filters button{
  width:auto;
  min-height:34px;
  height:auto;
  background:white;
  color:red;
  border:1px solid rgba(255,255,255,.85);
  border-radius:20px;
  padding:8px 14px;
  font-size:12px;
  font-weight:900;
  line-height:1;
  box-shadow:0 3px 10px rgba(0,0,0,.12);
  transition:.25s;
}

.brand-filters button:hover,
.brand-filters button.active{
  background:#111;
  color:white;
  border-color:#111;
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(0,0,0,.24);
}

.brand-filters button.active{
  outline:2px solid white;
  outline-offset:2px;
}

.catalog-title{
  text-align:center;
  margin:4px auto 22px;
}

.catalog-title h1{
  color:#111;
  font-size:26px;
  line-height:32px;
  margin-bottom:6px;
}

body.dark .catalog-title h1{
  color:white;
}

.catalog-title p{
  color:#666;
  font-size:14px;
}

.products .product-card{
  border-radius:8px;
  border:1px solid #e8e8e8;
  box-shadow:0 5px 18px rgba(0,0,0,.055);
}

.products .product-card:hover{
  border-color:rgba(255,0,0,.35);
}

.products .image-container{
  background:linear-gradient(180deg,#fff,#f3f4f6);
  border-radius:6px;
  overflow:hidden;
}

footer{
  background:#090909;
  border-top:5px solid red;
  margin-top:0;
}

.footer-box{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  padding:18px;
  min-height:100%;
}

footer .footer-logo{
  width:190px;
  max-width:100%;
  display:block;
}

.footer-box h2{
  border-bottom:3px solid red;
}

.location-card{
  background:#141414;
  border:1px solid rgba(255,255,255,.08);
  padding:14px;
  margin-bottom:12px;
}

.location-card strong{
  display:block;
  color:white;
  margin-bottom:5px;
  font-size:16px;
}

.location-card span{
  display:block;
  color:#ccc;
  font-size:13px;
  line-height:20px;
  margin-bottom:10px;
}

.location-card a{
  display:inline-block;
  background:red;
  color:white;
  padding:8px 12px;
  font-size:12px;
  font-weight:bold;
}

.footer-contact-line{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  color:#eee;
  font-size:14px;
}

.footer-contact-line i{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:red;
  color:white;
  border-radius:50%;
  flex:0 0 auto;
}

.mirror-whatsapp{
  position:fixed;
  left:20px;
  bottom:20px;
  width:82px;
  height:56px;
  z-index:999;
  text-decoration:none;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.3));
  transition:.25s;
  background:transparent;
  border-radius:0;
  display:block;
  box-shadow:none;
  color:white;
  font-size:24px;
}

.mirror-whatsapp:hover{
  transform:translateY(-3px) scale(1.03);
}

.mirror-whatsapp::before{
  content:"";
  position:absolute;
  left:0;
  bottom:13px;
  width:34px;
  height:12px;
  background:linear-gradient(180deg,#168341,#075628);
  border-radius:12px 3px 3px 12px;
  transform:rotate(-12deg);
  box-shadow:inset 0 -2px 4px rgba(0,0,0,.28);
}

.mirror-whatsapp::after{
  content:"";
  position:absolute;
  right:0;
  top:4px;
  width:58px;
  height:39px;
  background:
    radial-gradient(circle at 68% 32%,rgba(255,255,255,.82) 0 8%,transparent 9%),
    linear-gradient(135deg,rgba(255,255,255,.42),rgba(255,255,255,.08) 36%,rgba(0,0,0,.16) 100%),
    linear-gradient(180deg,#31d66c,#128a42);
  border:3px solid #0a6f32;
  border-left-width:6px;
  border-radius:28px 20px 22px 8px;
  box-shadow:inset 0 -5px 9px rgba(0,0,0,.16);
}

.mirror-whatsapp-icon{
  position:absolute;
  right:16px;
  top:12px;
  width:25px;
  height:25px;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:24px;
  text-shadow:0 2px 5px rgba(0,0,0,.35);
}

@media(max-width:768px){
  .mirror-wordmark{
    min-width:150px;
    font-size:24px;
  }

  .mirror-wordmark .signal-i{
    height:23px;
  }

  .mirror-wordmark .mirror-p{
    width:29px;
    height:29px;
  }

  .animated-mirror{
    left:-42px;
    width:52px;
    height:36px;
  }

  .animated-mirror::before{
    width:23px;
    height:8px;
  }

  .animated-mirror::after{
    width:37px;
    height:24px;
    border-width:2px;
    border-right-width:4px;
  }

  .mirror-signal{
    left:8px;
    top:20px;
    width:22px;
    height:3px;
  }

  .animated-mirror-right{
    left:auto;
    right:-42px;
  }

  .animated-mirror-right .mirror-signal{
    left:auto;
    right:8px;
  }

  .brand-filters{
    display:flex;
    justify-content:flex-start;
    flex-wrap:nowrap;
    overflow-x:auto;
    padding:9px 8px;
    scrollbar-width:none;
  }

  .brand-filters::-webkit-scrollbar{
    display:none;
  }

  .brand-filters button{
    flex:0 0 auto;
    width:auto;
    min-height:34px;
    height:auto;
    padding:8px 13px;
    font-size:12px;
  }
}

@media(max-width:480px){
  .mirror-wordmark{
    min-width:128px;
    font-size:21px;
    gap:3px;
  }

  .mirror-wordmark .signal-i{
    flex-basis:7px;
    width:7px;
    height:20px;
  }

  .mirror-wordmark .mirror-p{
    width:25px;
    height:25px;
  }

  .mirror-wordmark .mirror-p::before{
    width:7px;
    height:24px;
  }

  .mirror-wordmark .mirror-p::after{
    left:6px;
    width:18px;
    height:15px;
    border-width:2px;
  }

  .mirror-arm{
    display:none;
  }

  .animated-mirror{
    left:-30px;
    width:40px;
    height:30px;
  }

  .animated-mirror::before{
    width:18px;
    height:7px;
  }

  .animated-mirror::after{
    width:29px;
    height:20px;
  }

  .mirror-signal{
    left:7px;
    top:17px;
    width:17px;
  }

  .animated-mirror-right{
    left:auto;
    right:-30px;
  }

  .animated-mirror-right .mirror-signal{
    left:auto;
    right:7px;
  }

  .catalog-title h1{
    font-size:22px;
    line-height:28px;
  }

  .mirror-whatsapp{
    left:14px;
    bottom:14px;
    width:68px;
    height:48px;
  }

  .mirror-whatsapp::before{
    width:28px;
    height:10px;
  }

  .mirror-whatsapp::after{
    width:48px;
    height:33px;
  }

  .mirror-whatsapp-icon{
    right:13px;
    top:10px;
    font-size:21px;
  }
}

/* CAPA ESTETICA */

body{
  background:
    linear-gradient(rgba(245,245,245,.94),rgba(245,245,245,.94)),
    repeating-linear-gradient(135deg,#e8e8e8 0 1px,transparent 1px 13px);
}

.top-bar{
  border-bottom:0;
  background:linear-gradient(90deg,#050505,#1a1a1a,#050505);
  box-shadow:0 5px 20px rgba(0,0,0,.18);
}

header{
  border-bottom:1px solid rgba(0,0,0,.07);
  box-shadow:0 8px 28px rgba(0,0,0,.08);
  position:relative;
  z-index:20;
}

.search-box{
  background:white;
  border:1px solid #e0e0e0;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 4px 18px rgba(0,0,0,.06);
}

.search-box input{
  border:0;
  background:#fff;
  padding-left:18px;
}

.search-box button{
  background:red;
  border-radius:24px;
  margin:4px;
  height:auto;
}

.dark-btn{
  border-radius:50%;
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(255,0,0,.26);
}

.hero{
  height:220px;
  background:
    radial-gradient(circle at 50% 52%,rgba(255,0,0,.28),transparent 36%),
    linear-gradient(115deg,#050505 0%,#141414 45%,#8d0000 100%);
  border-bottom:0;
  box-shadow:inset 0 -20px 40px rgba(0,0,0,.28);
}

.hero::before{
  width:720px;
  height:720px;
  top:-360px;
  right:-210px;
  background:rgba(255,255,255,.045);
}

.hero::after{
  width:520px;
  height:520px;
  bottom:-270px;
  left:-160px;
  background:rgba(255,0,0,.12);
}

.hero-logo{
  width:450px;
  filter:drop-shadow(0 0 22px rgba(255,0,0,.45));
}

.brand-filters{
  background:linear-gradient(90deg,#d80000,#ff1717,#d80000);
  box-shadow:0 8px 24px rgba(255,0,0,.18);
}

.catalog-title{
  background:white;
  border:1px solid #ececec;
  border-radius:10px;
  max-width:720px;
  padding:18px 20px;
  box-shadow:0 8px 24px rgba(0,0,0,.055);
}

.catalog-title h1{
  text-transform:uppercase;
  letter-spacing:0;
}

.products{
  gap:18px;
}

.products .product-card{
  padding:12px;
  border-radius:10px;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,rgba(255,0,0,.5),rgba(0,0,0,.12),rgba(255,0,0,.18)) border-box;
  border:1px solid transparent;
  box-shadow:0 10px 28px rgba(0,0,0,.075);
}

.products .product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 42px rgba(255,0,0,.2);
}

.products .image-container{
  height:200px;
  border-radius:10px;
  background:
    radial-gradient(circle at center,rgba(255,0,0,.12),transparent 55%),
    linear-gradient(180deg,#fff,#eef0f3);
  -webkit-box-reflect:none;
  margin-bottom:12px;
}

.image-container img{
  height:190px;
  filter:drop-shadow(0 14px 18px rgba(0,0,0,.16));
}

.brand-line{
  display:inline-flex;
  width:fit-content;
  background:rgba(255,0,0,.08);
  border:1px solid rgba(255,0,0,.14);
  border-radius:20px;
  padding:5px 9px;
  margin-top:0;
}

.product-card h3{
  font-size:15px;
  line-height:20px;
  margin-top:8px;
}

.product-meta span{
  border-radius:7px;
  background:#f7f7f7;
}

.product-card p{
  font-size:18px;
}

.btn-whatsapp{
  border-radius:7px;
  box-shadow:0 8px 18px rgba(255,0,0,.18);
}

footer{
  box-shadow:inset 0 18px 40px rgba(0,0,0,.25);
}

.footer-box{
  border-radius:10px;
}

@media(max-width:768px){
  .hero{
    height:130px;
  }

  .hero-logo{
    width:230px;
  }

  .catalog-title{
    margin-inline:0;
  }

  .products{
    gap:12px;
  }

  .products .image-container{
    height:150px;
  }

  .image-container img{
    height:145px;
  }
}

@media(max-width:480px){
  .hero-logo{
    width:190px;
  }

  .catalog-title{
    padding:14px 12px;
  }
}
