body {

  font-family: 'Arial', sans-serif;

  background:
    linear-gradient(
      180deg,

      #ffffff 0%,

      #f8f6f3 80%,

      #f1ebe3 90%,

      #e9dfd2 100%
    );

  background-attachment: fixed;

  margin: 0;

  color: #111;

  min-height: 100vh;
}

.container {

  background: transparent !important;
}

.card {

  background:
    rgba(255,255,255,0.82);

  backdrop-filter: blur(10px);

  border:
    1px solid rgba(255,255,255,0.6);
}

/* HEADER */
.header {
  background: linear-gradient(180deg, #7a0000, #000000);


  color: white;
  text-align: center;

  padding: 70px 20px 40px;

  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* BUSQUEDA */
.busqueda {
  padding: 10px;
}

/* 🔍 SOLO buscador */
.busqueda input {
  width: 90%;
  margin: 15px auto;
  display: block;

  padding: 14px 20px;
  border-radius: 30px;
  border: none;
  outline: none;

  font-size: 15px;

  background: rgba(255,255,255,0.9);
  color: #111;

  box-shadow:
    0 5px 15px rgba(0,0,0,0.1),
    inset 0 2px 5px rgba(0,0,0,0.1);

  transition: 0.3s;
}

/* FILTROS */
.filtros {
  display: flex;
  gap: 10px;
}

select {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* GRID */
.container {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;

  padding: 12px;
}

/* CARD */
.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
#catalogo .card:first-child {
  margin-top: 5px; /* 🔥 reduce espacio arriba */
}

/* EFECTO HOVER */
.card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 160px;

  object-fit: contain;

  margin-top: 12px;
}

/* TEXTO */
.card h3 {
  font-size: 14px;
  padding: 10px;
}

.price {
  color: #0a8f2f;
  font-weight: bold;
  padding: 0 10px;
}

/* BOTON */
.btn {
  display: block;
  margin: 10px;
  padding: 10px;
  background: black;
  color: white;
  text-align: center;
  border-radius: 8px;
  font-size: 12px;
}

a {
  text-decoration: none;
  color: inherit;
}

.img-principal {
  width: 100%;
  border-radius: 10px;
}

.miniaturas {
  display: flex;
  gap: 10px;
  margin-top: 10px;

  overflow-x: auto;     /* 🔥 scroll horizontal */
  overflow-y: hidden;

  padding: 10px 5px;

  scroll-behavior: smooth;
}

/* 🔥 SCROLL BONITO */
.miniaturas::-webkit-scrollbar {
  height: 4px;
}

.miniaturas::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #b30000, #ff1f1f);
  border-radius: 10px;
}

.mini {
  min-width: 70px;   /* 🔥 CLAVE */
  height: 70px;

  object-fit: cover;

  border-radius: 10px;
  margin: 5px;

  flex-shrink: 0;    /* 🔥 evita que se deformen */

  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  transition: 0.3s;
}

/* 🔥 EFECTO PRO */
.mini:active {
  transform: scale(0.9);
}

.mini.seleccionada {
  outline: 2px solid #d50000;
  transform: scale(1.05);
}

.mini:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ZOOM */
/* 🔥 OVERLAY */
.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.9);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

/* 🔥 CONTENEDOR (CLAVE) */
#zoomContainer {
  max-width: 95%;
  max-height: 85%;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* 🔥 IMAGEN (CLAVE) */
.zoom-img {
  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;

  object-fit: contain;

  border-radius: 20px;
}



#productoDetalle {
  color: #111;
}

.welcome-container {
  height: 100vh;

  background: 
  linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.4)),
  url("https://res.cloudinary.com/dlte2cyol/image/upload/v1776055088/Polish_20260412_223602766_e17giv.jpg");

  background-size: cover;
  background-position: center;

  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;
}

.welcome-container h1 {
  font-size: 34px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.welcome-text {
  font-size: 16px;
  max-width: 320px;
  margin-bottom: 30px;

  line-height: 1.6;
  letter-spacing: 0.5px;

  color: #ffffff; /* blanco puro */

  text-shadow: 
    0 2px 8px rgba(0,0,0,0.7); /* mejora contraste */
}

.btn-welcome {
  background: linear-gradient(90deg, #006847, #ffffff, #ce1126); /* 🇲🇽 verde, blanco, rojo */
  
  color: #000;
  font-weight: 800; /* texto oscuro para que contraste con el blanco */
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  
  letter-spacing: 1px;
  text-transform: uppercase;

  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: 0.3s;

  border: 2px solid rgba(255,255,255,0.3); /* toque elegante */
}

.btn-welcome:hover {
  transform: scale(1.05);

  background: linear-gradient(90deg, #004d33, #f5f5f5, #a60d22);

  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.welcome-container {
  animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= */
/* 🔥 HEADER FASHION PREMIUM */
/* ========================= */

.header-catalogo {

  margin-top: 55px;

  background:
    linear-gradient(
      rgba(0,0,0,0.18),
      rgba(0,0,0,0.35)
    ),

    url("https://res.cloudinary.com/dlte2cyol/image/upload/v1778301549/Polish_20260508_223837837_g23w6e.png");

  background-size: contain; /* 🔥 importante */
  background-repeat: no-repeat;
  background-position: center;

  padding: 45px 20px; /* 🔥 mucho menos alto */

  background-color: #dcdcdc; /* relleno elegante */
}

/* TÍTULO */
.header-catalogo h1 {

  font-size: 52px;

  font-weight: 500;

  letter-spacing: 6px;

  text-transform: uppercase;

  color: #d4af37;

  font-family:
    "Times New Roman",
    serif;

  text-shadow:
    0 4px 20px rgba(0,0,0,0.45);

  animation: fadeLuxury 1.2s ease;

  text-align: center;

  position: relative;
  left: 5px;
  top: 12px;
}

/* ANIMACIÓN */
@keyframes fadeLuxury {

  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-catalogo h1,
.welcome-container h1 {

  font-size: 30px;

  font-weight: 700;

  letter-spacing: 5px;

  color: #d4af37; /* 🔥 dorado elegante */

  text-transform: uppercase;

  text-shadow:
    0 3px 15px rgba(0,0,0,0.9),
    0 0 10px rgba(212,175,55,0.35);

  backdrop-filter: blur(2px);
}

.filtro {
  background: linear-gradient(45deg, #ffd700, #ffb300);
  color: black;
  padding: 10px 15px;
  border-radius: 12px;
  border: none;
  font-weight: bold;

  box-shadow: 0 3px 10px rgba(255,215,0,0.4);
}

.btn-producto {
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 20px auto;

  background:
  linear-gradient(
    145deg,
    #111111,
    #1f1f1f
  ); /* 💗 rosa mexicano */
  color: white;

  padding: 14px 0;
  border-radius: 16px;
  text-decoration: none;

  font-weight: bold;
  font-size: 16px;
  text-align: center;
  border: none;

  box-shadow:
  0 8px 22px rgba(0,0,0,0.28);

  transition: 0.3s;
}

.btn-producto:hover {
  transform: scale(1.05);

  background:
  linear-gradient(
    145deg,
    #1a1a1a,
    #2a2a2a
  );

  box-shadow:
  0 8px 22px rgba(0,0,0,0.28);
}

.btn-producto:active {
  transform: scale(0.95);

  box-shadow:
  0 8px 22px rgba(0,0,0,0.28);
}

.botones-compra {
  display: flex;
  gap: 10px;
}

.botones-compra .btn-producto {
  flex: 1;
  width: auto;       /* 🔥 rompe el ancho grande */
  max-width: none;   /* 🔥 quita límite */
  margin: 0;         /* 🔥 quita centrado */
}

/* CONTENEDOR FILTROS */
.filtros {
  display: flex;
  gap: 10px;
  padding: 5px 10px 0px; /* 🔥 menos espacio abajo */
}


.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  margin: 0;

  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: 0.3s;
}

/* EFECTO HOVER PRO */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.card h3 {
  font-size: 15px;
  font-weight: bold;
  padding: 10px;
  color: #111;
}

.price {
  color: #00c853;
  font-size: 20px;
  font-weight: bold;
  padding: 0 10px;
}

/* texto secundario */
.card p {
  color: #555;
  font-size: 16px;
}

.price {

  color: #00c853 !important;

  font-size: 16px !important;

  line-height: 1;

  font-weight: 800 !important;

  letter-spacing: -1px;

  text-align: center;

  padding: 8px 10px !important;

  margin-top: 4px;
margin-bottom: 4px;

  text-shadow:
  0 2px 10px rgba(0,200,83,0.25);

  transform: scale(1.02);
}

/* BOTONES FILTRO */
.btn-filtro {
  flex: 1;
  padding: 12px;
  border-radius: 16px;
  border: none;

  font-weight: bold;
  font-size: 15px;

  background:
    linear-gradient(
      145deg,
      #111111,
      #1f1f1f
    );

  color: white;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.28);

  transition: 0.3s;
}



/* ========================= */
/* 🔥 MODAL PREMIUM DORADO */
/* ========================= */

.modal-content {
  background: linear-gradient(145deg, #fff8dc, #ffe082);
  border-radius: 20px;
  width: 90%;
  max-width: 320px;
  padding: 15px;

  box-shadow: 0 10px 30px rgba(255, 200, 0, 0.4);
}

/* TÍTULO */
.modal-content h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

/* OPCIONES */
.opcion {
  padding: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 16px;
  border-radius: 10px;
  margin: 5px 0;

  transition: 0.2s;
}

/* TOUCH */
.opcion:active {
  background: rgba(255, 193, 7, 0.3);
}

/* SELECCIONADA */
.opcion.activa {
  background: linear-gradient(45deg, #b30000, #ff1f1f);
  color: white;
  font-weight: bold;

  box-shadow: 0 5px 15px rgba(213,0,0,0.45);
}

.btn-filtro.activo {
  background: linear-gradient(45deg, #008f5a, #00a86b);

  color: white;

  box-shadow: 
    0 5px 15px rgba(0,104,71,0.6),
    0 8px 25px rgba(0,0,0,0.4);

  transform: scale(1.05);
}

.btn-filtro:active {
  transform: scale(0.95);
}

.busqueda input:focus {
  transform: scale(1.03);

  box-shadow:
    0 5px 25px rgba(230,0,92,0.6),
    0 0 10px rgba(213,0,0,0.35),
    inset 0 2px 5px rgba(0,0,0,0.1);
}

.card h3 {
  text-transform: capitalize;
  letter-spacing: 0.3px;

  font-size: 18px;
  font-weight: 700;

  padding: 4px 12px 2px;

  margin-top: 2px;
  margin-bottom: 0;

  color: #111;

  text-align: center;

  line-height: 1.25;
}

.card p {
  margin: 5px 0;
  color: #555;
  font-size: 14px;
  text-align: center;
}

/* 🔥 etiquetas como "Tallas" */
.card p strong {
  color: #111;
  font-weight: 600;
}

@media (min-width: 768px) {
  .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .card {
    margin: 0;
  }

  .welcome-container h1 {
    font-size: 48px;
  }

  .welcome-text {
    font-size: 18px;
  }
}

.brands {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.brands img {
  height: 20px;

  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255,255,255,0.3)); /* 🔥 ESTO LOS HACE BLANCOS */

  opacity: 0.8;
  transition: 0.3s;
}

.brands img:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* NAVBAR */
/* ========================= */
/* 🔥 NAVBAR ELEGANTE */
/* ========================= */

.navbar {

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 62px;

  background:
    rgba(255,255,255,0.95);

  backdrop-filter: blur(10px);

  border-bottom:
    1px solid rgba(0,0,0,0.05);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 22px;

  z-index: 1000;

  box-sizing: border-box;

  box-shadow:
    0 4px 20px rgba(0,0,0,0.04);
}

/* CENTRO */
.nav-center {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
}

/* IZQUIERDA */
.nav-left {

  font-size: 28px;

  cursor: pointer;

  color: #111;

  font-weight: 300;
}

/* DERECHA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;       /* 🔥 separación */
  margin-right: 10px; /* 🔥 no pegados a la orilla */
}

/* ICONOS */
.icon {

  font-size: 20px;

  cursor: pointer;

  position: relative;

  color: #111;
}

/* ICONO USUARIO */
.user::before {
  content: "👤";
  filter: brightness(0);
}

.cart-icon::before {
  content: "🛒";
  filter: brightness(0);
}

/* ICONO CARRITO BASE */
.cart-icon {
  position: relative;
}

/* CONTADOR */
.contador {
  position: absolute;

  top: -6px;
  right: -8px;

  background: #00c853;
  color: white;

  font-size: 11px;
  font-weight: bold;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* BODY */
body {
  margin: 0;
}


body {
  margin: 0;
}

.header {
  padding-top: 70px;
}

.header h1 {
  font-size: 28px;
  letter-spacing: 2px;
  text-align: center;

  text-shadow: 0 4px 15px rgba(0,0,0,0.9); /* 🔥 agrega esto */
}

.tallas-container {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.talla-btn {
  padding: 10px 15px;
  border-radius: 10px;
  border: none;

  background: #eee;
  font-weight: bold;

  cursor: pointer;
  transition: 0.3s;
}

.talla-btn:hover {
  background: #ddd;
}

.talla-btn.activa {
  background:
    linear-gradient(
      145deg,
      #d4af37,
      #f5d76e
    );/* 🇲🇽 verde */
  color: #111;

  box-shadow:
    0 5px 18px rgba(212,175,55,0.45);
}

.talla-btn.activa:active {
  transform: scale(0.95);
}

/* PANEL */
.carrito-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100%;

  background: #ffffff; /* 🔥 blanco */
  color: #111;

  z-index: 2000;
  transition: right 0.4s ease;

  display: flex;
  flex-direction: column;
}

/* ACTIVO */
.carrito-panel.activo {
  right: 0;
}

/* HEADER */
.carrito-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: #000; /* 🔥 texto negro */
}

#cerrarCarrito {
  position: absolute;
  top: 30px;           /* 🔥 clave */
  right: 30px;


  color: #000;
  font-size: 22px;
  font-weight: bold;

  cursor: pointer;

  background: none;
  box-shadow: none;
  border-radius: 0;

  transition: 0.2s;
}

#cerrarCarrito:active {
  transform: scale(0.9);
  opacity: 0.7;
}

/* LISTA */
#carritoItems {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

/* ITEM */
.item-carrito {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #ffffff; /* 🔥 blanco */
  color: #111; /* 🔥 texto negro */

  box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* 🔥 sombra suave */
  padding: 10px;
  margin-bottom: 12px;

  border-radius: 10px;
}

/* BOTÓN ELIMINAR */
.eliminar {
  color: red;
  cursor: pointer;
}

/* FOOTER */
.carrito-footer {
  padding: 15px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

#totalCarrito {
  font-size: 24px; /* 🔥 más grande */
  color: #000;
  font-weight: bold;

  display: flex;
  justify-content: space-between; /* 🔥 separa total y ahorro */
  align-items: center;

  margin-bottom: 10px;
}
.total-precio {
  color: #000;
  font-weight: bold;
  font-size: 24px;
}

/* BOTÓN */
.btn-comprar {
  width: 100%;
  padding: 12px;

  background: linear-gradient(45deg, #006847, #009b5a);

  border: none;
  color: white;

  font-weight: bold;
  border-radius: 10px;

  box-shadow:
    0 5px 15px rgba(0,104,71,0.35);

  transition: 0.25s ease;
}

.btn-comprar:active {
  transform: scale(0.97);
}

/* 🔥 FONDO OSCURO */
.overlay-carrito {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);

  opacity: 0;
  pointer-events: none;

  transition: 0.3s;
  z-index: 1500;
}

.overlay-carrito.activo {
  opacity: 1;
  pointer-events: all;
}

.botones-compra {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-producto {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 16px;

  font-weight: bold;
  font-size: 14px;

  cursor: pointer;
  transition: 0.3s;
}

/* 🔥 CONTADO (ROJO PRO) */
.btn-producto.contado {
  background: linear-gradient(45deg, #b30000, #ff1f1f); /* 💗 rosa mexicano */
  color: white;

  box-shadow: 0 5px 20px rgba(213,0,0,0.45);

  transition: 0.3s;
}

.btn-producto.contado:hover {
  transform: scale(1.05);

  background: linear-gradient(45deg, #ff3b3b, #ff6b6b);

  box-shadow: 0 8px 25px rgba(213,0,0,0.65);
}

/* 🔥 PAGOS (NEGRO PREMIUM) */
.btn-producto.pagos {
  background: linear-gradient(45deg, #004d33, #006847); /* 🇲🇽 verde */
  color: white;

  box-shadow: 
    0 5px 15px rgba(0,104,71,0.5),
    0 10px 25px rgba(0,0,0,0.6);

  transition: 0.3s;
}

.btn-producto.pagos:hover {
  transform: scale(1.05);

  background: linear-gradient(45deg, #008f5a, #00a86b);

  box-shadow: 0 8px 25px rgba(0,104,71,0.7);
}

/* EFECTO */
.btn-producto:active {
  transform: scale(0.96);
}

.container .btn-producto {
  width: 90%;
  max-width: 300px;
  margin: 20px auto;
}

.container .btn-producto {
  width: 70% !important;
  max-width: 280px !important;
  padding: 14px 0 !important;
  margin: 15px auto !important;
  display: block !important;
}

.container {
  text-align: center;
}

.no-productos {
  grid-column: 1 / -1;

  text-align: center;

  width: 100%;

  font-size: 18px;

  font-weight: 500;

  padding: 40px 0;
}

/* 🔥 EFECTO PRESIÓN */
.btn-producto:active {
  transform: scale(0.95);
}

/* 🔥 RIPPLE */
.btn-producto {
  position: relative;
  overflow: hidden;
}

.btn-producto span.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background: rgba(255,255,255,0.5);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* 🔥 ANIMACIÓN CHECK */
@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}


.item-carrito {
  position: relative;
}

#btnEnviarTienda {
  background: linear-gradient(45deg, #b30000, #ff1f1f); /* 💗 rosa mexicano */
  border: none;
outline: none;
  color: white;

  font-weight: bold;

  box-shadow:
    0 5px 20px rgba(213,0,0,0.45),
    0 0 12px rgba(213,0,0,0.35);

  position: relative;
  overflow: hidden;
}

/* brillo */
#btnEnviarTienda::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );

  transition: 0.5s;
}

#btnEnviarTienda:active::before {
  left: 100%;
}

#btnEnviarTienda:active {
  transform: scale(0.96);
}

/* ❌ botón eliminar PRO */
.item-carrito .eliminar {
  position: absolute;
  top: 8px;
  right: 8px;

  width: 22px;
  height: 22px;

  border-radius: 50%;
  background: rgba(0,0,0,0.05);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.2s;
}

/* dibujar la X con CSS (más elegante) */
.item-carrito .eliminar::before,
.item-carrito .eliminar::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #ff3b3b;
}

.item-carrito .eliminar::before {
  transform: rotate(45deg);
}

.item-carrito .eliminar::after {
  transform: rotate(-45deg);
}

/* hover */
.item-carrito .eliminar:hover {
  background: rgba(255,0,0,0.2);
  transform: scale(1.1);
}

.acciones-catalogo {
  display: flex;
  gap: 10px;
  justify-content: center;

  margin: 0px 15px 0px !important; /* 🔥 más compacto */
}

/* 🔥 MODAL BASE */
.modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);

  display: flex;
  justify-content: center;
  align-items: flex-end;

  opacity: 0;
  pointer-events: none;

  transition: 0.3s ease;

  z-index: 9999;
}

/* 🔥 ACTIVO */
.modal.activo {
  opacity: 1;
  pointer-events: auto;
}

/* 🔥 CONTENIDO */
.modal-content {

  background: #ffffff;

  color: #111;

  width: 100%;
  
  max-width: 420px;

max-height: 85vh;

margin-bottom: 0;
  border-radius: 25px 25px 0 0;

  padding: 20px 20px 15px;

  display: flex;
  flex-direction: column;
  gap: 15px;

  transform: translateY(100%);
  transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);

  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);

  max-height: 85vh;

  position: relative;
}

.modal-scroll {

  flex: 1;

  overflow-y: auto;

  padding-bottom: 20px;
}

/* 🔥 FOOTER FIJO */
.modal-footer {

  position: sticky;

  bottom: 0;

  left: 0;

  background: #ffffff;

  padding-top: 8px;

padding-bottom: 5px;

  z-index: 50;
}

/* 🔥 SCROLL BONITO */
.modal-content::-webkit-scrollbar {
  width: 5px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #d50000;
  border-radius: 10px;
}

/* 🔥 ANIMACIÓN */
.modal.activo .modal-content {
  transform: translateY(0);
}

/* 🔥 BARRITA SUPERIOR */
.modal-content::before {
  content: "";
  width: 50px;
  height: 5px;
  background: #555;

  border-radius: 10px;

  display: block;
  margin: 0 auto 10px auto;
}

/* 🔥 TÍTULO */
.modal-content h3 {
  text-align: center;
  margin-bottom: 10px;
}

/* 🔥 GRUPO DE FILTROS */
.filtro-grupo {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* 🔥 LABELS */
.modal-content label {
  color: #333;
  font-size: 15px;
  font-weight: 600;

  display: block; 
  margin-bottom: 8px; /* 🔥 ESTE es el espacio clave */
}

/* 🔥 SELECTS (YA CASI NO SE USAN PERO LO DEJAMOS) */
.modal-content select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;

  background: #1c1c1c;
  color: white;

  font-size: 14px;
}

/* 🔥 BOTONES APLICAR (FILTROS + ORDENAR) */
#aplicarFiltros,
#aplicarOrden,
.btn-aplicar {
  position: sticky;
bottom: 10px;

z-index: 20;
  margin-top: 10px;
  padding: 14px;

  border-radius: 25px;
  border: none;

  background:
  linear-gradient(
    145deg,
    #111111,
    #1f1f1f
  );/* 🇲🇽 verde */
  color: white;

  font-weight: bold;
  font-size: 16px;

  width: 100%;

  transition: 0.2s;

  box-shadow:
  0 6px 18px rgba(0,0,0,0.28);

  position: relative;
  overflow: hidden;
}

/* ✨ BRILLO */
#aplicarFiltros::before,
#aplicarOrden::before,
.btn-aplicar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );

  transition: 0.5s;
}

/* ⚡ ANIMACIÓN */
#aplicarFiltros:active::before,
#aplicarOrden:active::before,
.btn-aplicar:active::before {
  left: 100%;
}

/* 🔥 PRESIÓN */
#aplicarFiltros:active,
#aplicarOrden:active,
.btn-aplicar:active {
  transform: scale(0.96);
  box-shadow: 0 2px 10px rgba(0,104,71,0.4);
}

/* 🔥 BOTONES DE ORDEN */
.opcion-orden,
.opcion {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  width: 100%;
  padding: 16px; /* 🔥 más alto */
  border-radius: 15px;

  background: #f5f5f5;
  color: #111;

  text-align: left;

  font-size: 16px; /* 🔥 más grande */
  font-weight: 600; /* 🔥 más grueso */

  transition: 0.2s;
}

/* 🔥 ACTIVO */
.opcion-orden.activa {
  background: linear-gradient(45deg, #b30000, #ff1f1f);
  color: white;

  box-shadow:
    0 5px 18px rgba(122,0,0,0.35);
}

/* 🔥 BOTÓN APLICAR GENERAL */
.btn-aplicar {
  margin-top: 10px;
  padding: 14px;

  border-radius: 25px;
  border: none;

  background: linear-gradient(45deg, #d50000, #ff3b3b);
  color: white;

  font-weight: bold;
  font-size: 16px;

  width: 100%;

  transition: 0.2s;
}

.btn-aplicar:active {
  transform: scale(0.97);
}

/* 🔥 SELECT NORMAL */
select {
  background: #1c1c1c;
  color: white;
  border: none;
}

/* 🔥 SELECT ACTIVO */
select.activo {
  background: linear-gradient(45deg, #b30000, #ff1f1f);
  color: white;
}

/* 🔥 QUITAR BORDE NATIVO */
select:focus,
select:active {
  outline: none;
  box-shadow: none;
}

/* 🔥 CONTENEDOR CUSTOM */
.custom-select {
  width: 100%;
  border-radius: 15px;
  background: #f5f5f5;
  color: #111;
  overflow: hidden;
  transition: 0.3s;
}

/* 🔥 CABECERA */
.select-header {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* 🔥 FLECHA */
.arrow {
  transition: 0.3s;
}

/* 🔥 OPCIONES (IMPORTANTE SCROLL AQUÍ) */
.select-opciones {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;

  background: #ffffff;
}

/* 🔥 CUANDO SE ABRE */
.custom-select.abierto .select-opciones {
  max-height: 200px;
  overflow-y: auto;
}

/* 🔥 SCROLL BONITO EN OPCIONES */
.select-opciones::-webkit-scrollbar {
  width: 4px;
}

.select-opciones::-webkit-scrollbar-thumb {
  background: #d50000;
  border-radius: 10px;
}

/* 🔥 ROTACIÓN FLECHA */
.custom-select.abierto .arrow {
  transform: rotate(180deg);
}

/* 🔥 OPCIONES */
.opcion {
  padding: 16px; /* 🔥 más espacio */
  font-size: 16px; /* 🔥 más grande */
  font-weight: 600; /* 🔥 más grueso */

  border-top: 1px solid #eee;

  background: #ffffff;
  color: #111;
}

/* 🔥 EFECTO AL TOCAR */
.opcion:active {
  background: #d50000;
}

/* 🔴 SOLO HEADER ROJO */
.custom-select.activo .select-header {
  background: linear-gradient(45deg, #b30000, #ff1f1f);
  color: white;
}

.auth-container {
  max-width: 300px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-container input {
  padding: 12px;
  border-radius: 10px;
  border: none;
}


#listaTiendas button {
  margin: 5px;
  padding: 10px;
  border-radius: 10px;
  border: none;

  background: transparent; /* 🔥 IMPORTANTE */
}

#listaTiendas button.activa {
  background: #d50000;
  color: white;
}

.tienda-item {

  background: #ffffff;

  padding: 15px;

  border-radius: 15px;

  margin-bottom: 12px;

  color: #111;

  border: 2px solid #111111;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.10);

  transition: 0.3s;
}

.tienda-botones {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.zoom-container {
  width: 90%;
  max-width: 400px;
  height: 60%; /* 🔥 antes 70%, ahora más bajo */
  background: white;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.zoom-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  touch-action: none;
}

#listaTiendas .btn-elegir,
#listaTiendas .btn-maps {

  flex: 1;

  padding: 12px;

  border-radius: 16px;

  border: none;

  background:
    linear-gradient(
      145deg,
      #d4af37,
      #f5d76e
    );

  color: #111;

  font-weight: 700;

  font-size: 14px;

  box-shadow:
    0 5px 18px rgba(212,175,55,0.30);

  transition: 0.2s;

  position: relative;

  overflow: hidden;
}

/* ✨ brillo */
#listaTiendas .btn-elegir::before,
#listaTiendas .btn-maps::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );

  transition: 0.5s;
}

#listaTiendas .btn-elegir:active::before,
#listaTiendas .btn-maps:active::before {
  left: 100%;
}

/* presión */
#listaTiendas .btn-elegir:active,
#listaTiendas .btn-maps:active {
  transform: scale(0.95);
}

/* 🔥 CONTENEDOR BOTÓN FIJO */
.footer-tienda {
  position: sticky;
  bottom: 0;

  background: linear-gradient(180deg, transparent, #000);
  padding: 15px 10px 10px;

  z-index: 10;
}

/* 🔥 BOTÓN FULL WIDTH */
.footer-tienda #btnEnviarTienda {
  width: 100%;
}

/* 🔥 FOOTER FIJO */
.footer-tienda {

  position: sticky;

  bottom: 0;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(255,255,255,0.96)
    );

  padding: 15px 10px 10px;

  z-index: 10;
}

/* 🔥 BOTÓN COMPLETO */
.footer-tienda .btn-producto {
  width: 100%;
  margin: 0;
}

/* 🔥 HEADER MODAL */
.modal-header {
  position: relative;
  text-align: center;
}

/* ❌ BOTÓN CERRAR */
.cerrar-modal {
  position: absolute;
  top: -25px;
  right: 0;

  font-size: 22px;
  font-weight: bold;
  color: #d50000;

  cursor: pointer;

  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(213,0,0,0.08);

  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);

  transition: 0.2s;
}

/* 🔥 EFECTO TOUCH */
.cerrar-modal:active {
  transform: scale(0.9);
  background: rgba(213,0,0,0.18);
}

/* 🔥 TITULOS DE MODALES (FILTROS / ORDENAR / TIENDA) */
.modal-content h3 {
  color: #000;
  font-weight: 800; /* 🔥 más grueso */
  font-size: 22px; /* 🔥 más grande */
  letter-spacing: 0.5px;

  text-shadow:
    0 2px 8px rgba(0,0,0,0.15); /* 🔥 sombra suave elegante */
}

.header-producto {

  margin-top: 55px;

  background:
    linear-gradient(
      rgba(0,0,0,0.18),
      rgba(0,0,0,0.35)
    ),

    url("https://res.cloudinary.com/dlte2cyol/image/upload/v1778301549/Polish_20260508_223837837_g23w6e.png");

  background-size: 108% auto;

  background-repeat: no-repeat;

  background-position: center center;

  background-color: #dcdcdc;

  min-height: 115px;

  padding: 18px 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;
}

.header-producto h1 {
  
  line-height: 1.15;

max-width: 90%;

margin: 0 auto;

  font-size: 26px;

  font-weight: 700;

  letter-spacing: 5px;

  color: #d4af37;

  text-transform: uppercase;

  text-shadow:
    0 3px 15px rgba(0,0,0,0.9),
    0 0 10px rgba(212,175,55,0.35);

  font-family:
    "Times New Roman",
    serif;
}

.contador-cantidad {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.contador-cantidad button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;

  background: linear-gradient(45deg, #b30000, #ff1f1f);
  color: white;

  font-size: 20px;
  font-weight: bold;

  box-shadow: 0 5px 15px rgba(213,0,0,0.45);

  cursor: pointer;
}

.contador-cantidad span {
  font-size: 18px;
  font-weight: bold;
}

.bloque-descripcion {
  margin-top: 15px;
  text-align: center;
  padding: 0 15px;
}

.titulo-descripcion {
  font-weight: bold;
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
}

.descripcion-producto {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.info-carrito {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cantidad-carrito {
  opacity: 1;
}

.item-carrito p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.item-carrito p,
.info-carrito {
  color: #000; /* 🔥 negro */
}

.precio-carrito {
  color: #00c853; /* 🇲🇽 verde bandera */

  font-weight: bold;
  font-size: 18px;

  text-shadow:
    0 2px 8px rgba(0,104,71,0.25);
}

.tamanos-info {
  margin-top: 15px;
  text-align: center;
}

.titulo-tamanos {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
  color: #000;
}

.lista-tamanos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.item-tamano {
  background: #ffffff;
  color: #333;

  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;

  border: 1px solid rgba(0,0,0,0.1); /* 🔥 contorno sutil */

  box-shadow: none; /* 🔥 quitamos brillo */
  opacity: 0.9;     /* 🔥 efecto discreto */
}

/* 🔥 COLORES */
.colores-producto {
  margin-top: 20px;
}

.titulo-colores {
  font-weight: bold;
  margin-bottom: 10px;
}

.lista-colores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid white;
  transition: transform 0.2s, border 0.2s;
}

.color-item:hover {
  transform: scale(1.1);
  border: 2px solid #d50000; /* rosa mexicano */
}

.precio-con-ahorro {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.precio-final {
  color: #00c853; /* verde como el de tu producto */
  font-weight: bold;
  font-size: 16px;
  text-shadow:
    0 2px 8px rgba(0,104,71,0.25);
}

.ahorro {
  background: linear-gradient(45deg, #b30000, #ff1f1f);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: bold;
}

.ahorro-texto {
  background: linear-gradient(45deg, #b30000, #ff1f1f);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: bold;
}

.total-ahorro {
  background: linear-gradient(45deg, #b30000, #ff1f1f);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;


  font-size: 14px;
  font-weight: bold;

  margin-left: 10px;
}

/* 🔥 OVERLAY */
.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 9999;
}

.overlay-menu.activo {
  opacity: 1;
  pointer-events: all;
}

/* 🔥 MENÚ */
.menu-lateral {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: calc(100% - 55px);
  background: #ffffff; /* 🔥 blanco */
  color: #111; /* 🔥 texto oscuro */
  z-index: 10000;
  transition: 0.3s;
  padding: 20px;
  box-shadow: 5px 0 25px rgba(0,0,0,0.6);
}

.menu-lateral.activo {
  left: 0;
}

.menu-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.menu-opciones {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-categoria {
  background: transparent; /* ❌ sin fondo */
  border: none;

  padding: 15px 5px;

  color: #006847;
  font-size: 15px;
  font-weight: 600;

  text-align: left;

  border-bottom: 1px solid #ff1f1f; /* 💗 rosa mexicano */
}

.btn-categoria:active {
  background: rgba(230,0,92,0.08); /* 💗 toque rosa suave */
}

.btn-categoria:hover {
  background: #ff1f1f;
}

.menu-lateral {
  border-top-right-radius: 15px;
}

.menu-titulo {
  color: #000;            /* 🔥 negro fuerte */
  font-weight: 900;       /* 🔥 más grueso */
  font-size: 26px;        /* 🔥 un poco más grande */
  letter-spacing: 1px; /* 🔥 más elegante */
}

#cerrarMenu {
  position: absolute;
  top: 10px; /* 🔥 antes 22px */
  right: 22px;

  color: #111;
  font-size: 22px;
  font-weight: bold;

  cursor: pointer;

  background: none;
  box-shadow: none;
  border-radius: 0;

  transition: 0.2s;
}

#cerrarMenu:active {
  transform: scale(0.9);
  opacity: 0.7;
}

/* ========================= */
/* 🔵 PAGINACIÓN AZUL REY */
/* ========================= */

.paginacion {
  grid-column: 1 / -1;

  width: 100%;

  text-align: center;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-end;

  margin-top: 25px;

  padding-bottom: 20px;
}

/* 🔥 BOTONES PRINCIPALES */

.paginacion button {
  display: block;
  width: 80%;
  max-width: 320px;
  margin: 10px auto;

  padding: 14px;

  border: none;
  border-radius: 30px;

  font-weight: bold;
  font-size: 15px;

  cursor: pointer;

  background: linear-gradient(145deg, #111111, #2a2a2a);
  color: white;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.45);

  transition: 0.3s;
}

/* ✨ HOVER */
.paginacion button:hover {
  transform: scale(1.05);

  background: linear-gradient(145deg, #111111, #2a2a2a);

  box-shadow:
    0 8px 22px rgba(0,0,0,0.28);
}

/* 👇 PRESIÓN */
.paginacion button:active {
  transform: scale(0.95);
  box-shadow:
    0 8px 22px rgba(0,0,0,0.28);
}

/* 🔢 CONTENEDOR NÚMEROS */
.numeros-pagina {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 2px; /* 🔥 MUCHO MÁS JUNTOS */
  margin-top: 6px;
}

/* 🔢 BOTONES DE NÚMERO */
/* 🔢 BOTONES DE NÚMERO (FIX DEFINITIVO) */
.numeros-pagina .btn-pagina {
  width: auto !important;   /* 🔥 rompe el 80% */
  min-width: 32px !important;

  height: 32px;

  padding: 0 !important;

  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;

  margin: 0 !important; /* 🔥 elimina separación extra */

  background: linear-gradient(145deg, #111111, #2a2a2a);
  color: white;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.45);
}


/* 🔥 ACTIVA */
.numeros-pagina .btn-pagina.activa {
  background: linear-gradient(145deg, #2c2c2c, #000000);

  box-shadow:
    0 6px 18px rgba(0,0,0,0.45);

  transform: scale(1.08);
}

/* 👇 CLICK */
.btn-pagina:active {
  transform: scale(0.9);
}

/* 🔤 TEXTO "PÁGINAS" */
.paginacion p {
  font-weight: bold;
  color: #111;
  margin-top: 15px;
  font-size: 14px;
}

.paginacion button:first-child {
  margin-top: 5px;
}

.paginacion button {
  margin: 6px auto; /* 🔥 reduce separación general */
}


#btnRegresarArriba {
  margin: 5px auto !important;
}

.filtros {
  padding: 5px 10px 0px;
}

.paginacion-arriba {

  grid-column: 1 / -1;

  width: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  margin: 5px 0 0px;
}

.paginacion-arriba button {
  display: block;
  width: 80%;
  max-width: 320px;
  margin: 0 auto;
  padding: 14px;
  border: none;
  border-radius: 16px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  background: linear-gradient(145deg, #111111, #2a2a2a);
  color: white;

  box-shadow:
    0 8px 22px rgba(0,0,0,0.28);
  transition: 0.3s;
}

/* ========================= */
/* 🔥 INDEX PREMIUM ELI */
/* ========================= */

.inicio-ropa {

  background:
    linear-gradient(
      to bottom,

      #ffffff 0%,
      #ffffff 68%,

      #faf7f3 80%,

      #f3ece4 92%,

      #ebe2d8 100%
    );

  background-attachment: fixed;

  min-height: 100vh;

  font-family: Arial, sans-serif;

  color: #111;
}

/* HERO */
.hero-eli {

  background: transparent;

  padding: 70px 25px 45px;

  text-align: center;
}

.hero-contenido {
  animation: fadeHero 1.2s ease;
}

.hero-eli h1 {
  font-size: 42px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;

  line-height: 1.05;

  margin-bottom: 25px;

  color: #111;
}

.logo-egm {

  width: 230px;

  max-width: 90%;

  margin-bottom: 28px;

  animation:
    fadeHero 1.2s ease,
    floatLogo 5s ease-in-out infinite;
}

@keyframes floatLogo {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-eli p {
  max-width: 320px;

  margin: auto;

  font-size: 16px;
  line-height: 1.7;

  color: #111;
  font-family: 'Montserrat', sans-serif;
font-weight: 500;
letter-spacing: 0.3px;
}

/* ANIMACIÓN */
@keyframes fadeHero {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* WRAPPER */
.categoria-wrapper {

  background: transparent;

  padding: 0 16px;

  margin-bottom: 14px;
}

/* CARD PREMIUM */
.categoria-ropa {
  position: relative;

  height: 320px;

  border-radius: 28px;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
  0 8px 25px rgba(0,0,0,0.08),
  0 2px 6px rgba(0,0,0,0.03);

  transform: translateZ(0);
}

/* OVERLAY */
.overlay-categoria {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.45)
    );

  backdrop-filter: blur(1px);
}

/* CONTENIDO */
.contenido-categoria {
  position: relative;
  z-index: 2;

  text-align: center;

  color: white;

  animation: floatText 4s ease-in-out infinite;
}

@keyframes floatText {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* TITULOS */
.contenido-categoria h2 {
  font-size: 34px;
  font-weight: 800;

  margin-bottom: 10px;

  text-shadow:
    0 4px 15px rgba(0,0,0,0.4);
}

/* SUBTEXTO */
.subcategoria {
  display: block;

  font-size: 14px;
  letter-spacing: 1px;

  color: rgba(255,255,255,0.88);

  margin-bottom: 24px;
}

/* BOTÓN */
.btn-ir {
  display: inline-block;

  padding: 14px 32px;

  border-radius: 30px;

  background: rgba(255,255,255,0.95);

  color: #111;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 0.5px;

  transition: 0.3s;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.18);
}

.btn-ir:hover {
  transform: scale(1.05);

  background: #ffffff;
}

/* EFECTO MOVIMIENTO IMAGEN */
.categoria-ropa::before {
  content: "";

  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  animation: zoomSlow 12s ease-in-out infinite alternate;

  transform: scale(1.05);
}

@keyframes zoomSlow {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

/* HOMBRE */
.hombre::before {
  background-image:
    url("https://res.cloudinary.com/dlte2cyol/image/upload/v1778298748/gettyimages-1175266114-612x612_jrmdsm.jpg");
}

/* MUJER */
.mujer::before {
  background-image:
    url("https://res.cloudinary.com/dlte2cyol/image/upload/v1778298749/photo-1529139574466-a303027c1d8b_eann2r.jpg");
}

/* TODOS LOS PRODUCTOS */
.todos-productos::before {
  background-image:
    url("https://res.cloudinary.com/dlte2cyol/image/upload/v1778298749/gettyimages-1456390851-612x612_vak412.jpg");
}

/* ========================= */
/* 🔥 MENÚ PREMIUM FASHION */
/* ========================= */

.menu-opciones {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* BOTONES */
.btn-categoria,
.btn-menu-link {

  background: rgba(255,255,255,0.55);

  border: 1px solid rgba(0,0,0,0.05);

  padding: 18px 22px;

  border-radius: 22px;

  color: #111;

  font-size: 16px;

  font-weight: 600;

  text-align: left;

  transition: 0.22s ease;

  backdrop-filter: blur(10px);

  box-shadow:
    0 4px 15px rgba(0,0,0,0.04);

  transform: scale(1);
}

/* HOVER */
.btn-categoria:hover,
.btn-menu-link:hover {

  background: #111;

  color: white;

  transform:
    translateX(4px)
    scale(1.02);

  box-shadow:
    0 10px 22px rgba(0,0,0,0.14);
}

/* TOQUE */
.btn-categoria:active,
.btn-menu-link:active {

  transform:
    scale(0.96);

  transition: 0.1s ease;
}

/* ACTIVO */
.btn-categoria.activo {

  background: #111;

  color: #fff;

  box-shadow:
    0 10px 22px rgba(0,0,0,0.18);
}

/* TOUCH */
.btn-categoria:active,
.btn-menu-link:active {
  transform: scale(0.98);
}

/* MENÚ */
.menu-lateral {

  background:
    linear-gradient(
      to bottom,

      #ffffff 0%,

      #fcfaf7 80%,

      #f6f0e8 90%,

      #efe5da 100%
    );

  backdrop-filter: blur(12px);

  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;

  box-shadow:
    8px 0 35px rgba(0,0,0,0.12);

  border-right:
    1px solid rgba(255,255,255,0.4);
}

/* TITULO */
.menu-header h3 {
  font-size: 24px;
  font-weight: 800;

  color: #111;
}

#productoDetalle .price {

  font-size: 30px !important;

  font-weight: 900 !important;

  letter-spacing: -1px;

  text-align: left !important;

  padding-left: 0 !important;

  margin-top: 10px;

  margin-bottom: 14px;

  text-shadow:
    0 3px 12px rgba(0,200,83,0.28);
}