* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;

  background: #111111;

  color: white;

  transition: background 1s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 80px;

  position: relative;
}

.nav-links {
  display: flex;

  gap: 40px;

  list-style: none;
}

.nav-links a {
  text-decoration: none;

  color: white;

  font-size: 18px;

  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.btn-nav {
  background: #ff6b00;

  color: white;

  padding: 14px 28px;

  border: none;

  border-radius: 40px;

  cursor: pointer;
}

.logo img {
  width: 100px;
}

.logo {
  display: flex;

  text-decoration: none;

  align-items: center;

  gap: 15px;
}

.menu-toggle {
  display: none;

  padding: 8px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;

  margin-left: auto;
}

.logo h2 {
  color: white;

  font-size: 28px;
}

ul {
  display: flex;

  list-style: none;

  gap: 40px;
}

button {
  padding: 16px 40px;

  border: none;

  border-radius: 50px;

  background: #ff6b00;

  color: white;

  font-size: 18px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;
}

button:hover {
  transform: translateY(-4px);
}

.hero {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100dvh;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 120px 80px;

  overflow: hidden;
}

.hero-texto p {
  font-size: 22px;
  line-height: 36px;
  color: #d8d8d8;
  margin-bottom: 35px;
}

.categoria {
  color: #ff7a00;

  font-weight: 700;

  letter-spacing: 4px;

  font-size: 15px;

  display: block;

  margin-bottom: 18px;

  text-transform: uppercase;
}

.hero-texto h1 {
  font-size: 72px;
  line-height: 75px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-texto {
  width: 480px;

  max-width: 480px;

  position: relative;

  z-index: 20;
}

.hero-imagen {
  flex: 0 0 55%;

  height: 700px;

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;
}

.hero-glow {
  position: absolute;
  z-index: 1;
  width: 1300px;
  height: 700px;

  border-radius: 50%;

  opacity: 0.9;

  filter: blur(80px);
}

.glow-orange {
  background: radial-gradient(
    ellipse,
    rgba(255, 120, 0, 0.4),
    rgba(255, 120, 0, 0.1),
    transparent
  );

  opacity: 0.9;
}

.glow-green {
  background: radial-gradient(
    ellipse,
    rgba(76, 175, 80, 0.4),
    rgba(76, 175, 80, 0.1),
    transparent
  );

  opacity: 0;
}

.hero-imagen img {
  position: absolute;

  width: 180%;
  z-index: 2;
  max-width: none;

  object-fit: contain;

  filter: drop-shadow(0px 40px 60px rgba(0, 0, 0, 0.45));

  transform-origin: center center;

  will-change: transform, opacity;
}

#imgActual {
  opacity: 1;

  z-index: 2;
}

#imgSiguiente {
  opacity: 0;

  z-index: 2;
}

.btn-hero {
  padding: 16px 40px;
}

header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 1000;

  background: transparent;

  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease;
}

.container {
  width: 100%;

  max-width: 1400px;

  margin: auto;

  display: flex;

  align-items: center;
}

.story {
  height: 390vh;
}

@keyframes flotar {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.scroll-indicator {
  margin-top: 60px;

  display: flex;

  align-items: center;

  gap: 18px;

  opacity: 0.8;
}

.scroll-indicator span {
  font-size: 14px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #cccccc;
}

.mouse {
  width: 28px;

  height: 45px;

  border: 2px solid white;

  border-radius: 30px;

  display: flex;

  justify-content: center;
}

.wheel {
  width: 4px;

  height: 10px;

  border-radius: 20px;

  background: white;

  margin-top: 8px;

  animation: scrollMouse 1.8s infinite;
}

@keyframes scrollMouse {
  0% {
    opacity: 1;

    transform: translateY(0);
  }

  100% {
    opacity: 0;

    transform: translateY(12px);
  }
}

.menu {
  padding: 120px 80px;

  background: radial-gradient(
    ellipse at top,
    #9fb447 0%,
    #5e8f3c 18%,
    #366c35 42%,
    #1d4b29 68%,
    #0d1e14 100%
  );

  position: relative;
  overflow: hidden;
}

.menu-container {
  max-width: 1400px;

  margin: auto;
}

.menu h2 {
  font-size: 60px;

  margin-bottom: 60px;

  text-align: center;
}

.menu-grid {
  display: flex;

  flex-direction: column;

  gap: 70px;
}

.card {
  background: linear-gradient(180deg, #203224 0%, #18271b 100%);

  border: 1px solid rgba(255, 255, 255, 0.05);

  border-radius: 28px;

  padding: 28px;

  position: relative;

  overflow: visible;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.card-contenido {
  overflow: hidden;

  border-radius: 28px;
}

.card:hover::before {
  opacity: 1;

  transform: translateX(-10%) scale(4);
}

.card:hover {
  transform: translateY(-10px);

  border-color: rgba(255, 140, 0, 0.45);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(255, 140, 0, 0.1);
}

.card:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.card img {
  width: 92%;

  height: 220px;

  margin: auto;

  margin-top: 10px;

  display: block;

  object-fit: contain;

  transition: transform 0.4s ease;
}

.card h3 {
  margin-top: 20px;

  font-size: 30px;

  font-weight: 800;

  line-height: 1.1;
}

.card p {
  color: #bdbdbd;

  margin: 18px 0;

  line-height: 28px;

  min-height: 84px;
}

.card button {
  width: 100%;

  height: 56px;

  margin-top: auto;

  border: none;

  border-radius: 999px;

  background: linear-gradient(180deg, #4f8f3d, #3d742f);

  color: white;

  font-size: 17px;

  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.card button:hover {
  transform: translateY(-2px);

  background: linear-gradient(180deg, #63aa49, #4f8f3d);

  box-shadow: 0 10px 24px rgba(76, 175, 80, 0.35);
}

.carrito {
  position: fixed;

  right: 35px;

  bottom: 35px;

  z-index: 9999;
}

.btn-carrito {
  position: fixed;

  right: 24px;

  bottom: 24px;

  width: 68px;

  height: 68px;

  border: none;

  border-radius: 22px;

  background: linear-gradient(180deg, #01563f 0%, #014737 45%, #01372b 100%);

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  cursor: pointer;

  box-shadow:
    0 0 24px rgba(0, 184, 92, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

@media (max-width: 768px) {
  .btn-carrito {
    width: 56px;

    height: 56px;

    right: 16px;

    bottom: 16px;
  }
}

.btn-carrito:hover {
  transform: translateY(-4px) scale(1.05);

  box-shadow:
    0 0 34px rgba(0, 184, 92, 0.45),
    0 14px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-carrito img,
.btn-carrito svg,
.btn-carrito i {
  width: 30px;

  height: 30px;

  color: white;

  transition: 0.25s;
}

#cantidadCarrito {
  position: absolute;

  top: -6px;

  right: -6px;

  min-width: 26px;

  height: 26px;

  padding: 0 7px;

  border-radius: 999px;

  background: #ff8a00;

  color: white;

  font-size: 13px;

  font-weight: 700;

  display: flex;

  justify-content: center;

  align-items: center;

  border: 2px solid #01372b;

  box-shadow: 0 0 10px rgba(255, 138, 0, 0.45);
}

@keyframes pulseCarrito {
  0% {
    box-shadow:
      0 0 22px rgba(0, 184, 92, 0.25),
      0 8px 20px rgba(0, 0, 0, 0.35);
  }

  50% {
    box-shadow:
      0 0 36px rgba(0, 184, 92, 0.55),
      0 12px 26px rgba(0, 0, 0, 0.4);
  }

  100% {
    box-shadow:
      0 0 22px rgba(0, 184, 92, 0.25),
      0 8px 20px rgba(0, 0, 0, 0.35);
  }
}

.btn-carrito.activo {
  animation: pulseCarrito 2s infinite;
}

.modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.75);

  display: none;

  justify-content: center;

  align-items: center;

  z-index: 99999;
}

.modal-contenido {
  width: 90%;

  max-width: 700px;

  background: #161b18;

  border-radius: 25px;

  position: relative;

  max-height: 90vh;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  padding: 0;
}

.grupo-opciones {
  display: flex;

  flex-direction: column;

  gap: 18px;

  padding: 25px;
}

.grid-opciones {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.card-opcion {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 18px;

  border-radius: 16px;

  background: #1d231f;

  border: 2px solid #2b332d;

  cursor: pointer;

  transition: 0.25s;
}

.card-opcion:hover {
  border-color: #2ea44f;
}

.card-opcion.activo {
  background: #21462d;

  border-color: #39d353;
}

.card-opcion strong {
  color: white;

  font-size: 17px;
}

.card-opcion span {
  color: #ffb347;

  font-weight: 700;

  font-size: 16px;
}

.cerrar-modal {
  position: absolute;

  top: 24px;
  right: 24px;

  background: none;
  border: none;

  color: white;

  font-size: 34px;

  cursor: pointer;

  padding: 0;
  margin: 0;

  z-index: 1000;
}

.pasos {
  display: flex;

  justify-content: space-between;

  margin-bottom: 35px;
}

.pasos div {
  flex: 1;

  text-align: center;

  padding: 12px;

  border-bottom: 3px solid #444;

  color: #777;

  font-weight: 600;
}

.pasos .activo {
  color: rgb(255, 255, 255);

  border-color: #019138;
}

.paso.completado {
  color: #00c060;
}

.panel-carrito {
  position: fixed;

  top: 0;

  right: -450px;

  width: 440px;

  height: 100vh;

  background: linear-gradient(180deg, #1d2320 0%, #181d1a 45%, #141715 100%);
  border-left: 1px solid #2d3732;

  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.45);

  padding: 35px;

  transition: 0.35s;

  z-index: 99998;

  overflow-y: auto;
}

.panel-carrito.abierto {
  right: 0;
}

.item-carrito {
  margin-bottom: 18px;

  padding: 20px;

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid #2d3732;

  border-radius: 18px;

  transition: 0.25s;
}

.item-carrito:hover {
  border-color: #3f4b45;

  transform: translateY(-2px);
}

.item-carrito h3 {
  margin-bottom: 8px;
}

.item-carrito h4 {
  margin-top: 18px;
  margin-bottom: 8px;

  font-size: 0.95rem;

  color: #8ecf9d;

  text-transform: uppercase;

  letter-spacing: 0.8px;
}

.item-carrito p {
  margin: 6px 0;

  color: #d7d7d7;

  line-height: 1.45;
}

.texto-envio {
  font-size: 14px;

  color: #999;

  font-weight: 400;
}

.carrito-header {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.btn-eliminar {
  width: 38px;
  height: 38px;

  background: #2d1c1c;
  color: #ff6666;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;

  border: none;
  border-radius: 50%;

  font-size: 18px;
  line-height: 1;

  cursor: pointer;

  transition: 0.25s;

  flex-shrink: 0;
}

.btn-eliminar:hover {
  background: #ff4747;

  color: #fff;

  transform: scale(1.08);
}

.acciones-carrito {
  display: flex;

  gap: 10px;
}

.btn-editar {
  width: 38px;
  height: 38px;

  background: #252525;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;

  border: none;
  border-radius: 50%;

  font-size: 18px;
  line-height: 1;

  cursor: pointer;

  transition: 0.25s;

  flex-shrink: 0;
}

.btn-editar:hover {
  background: #0db14b;

  transform: scale(1.08);
}

.overlay-carrito {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 99998;
}

.overlay-carrito.activo {
  opacity: 1;

  visibility: visible;
}

.cerrar-carrito {
  position: absolute;

  top: 20px;

  right: 20px;

  background: none;

  border: none;

  color: white;

  font-size: 28px;

  cursor: pointer;

  margin: 0;
  padding: 0;
}

#listaDips {
  display: flex;

  flex-direction: column;

  gap: 14px;
}

.card-dip {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 18px;

  margin-bottom: 14px;

  background: linear-gradient(180deg, #003328 0%, #032124 100%);

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 18px;

  transition: 0.25s;
}

.card-dip > div:first-child {
  flex: 1;
}

.info-extra {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.controles-dip {
  display: flex;
  align-items: center;
  gap: 12px;
}

.controles-dip button {
  background: #00ff7369;

  color: #fff;
}

.controles-dip span {
  display: flex;

  justify-content: center;
  align-items: center;

  width: 28px;
  height: 28px;

  font-size: 18px;
  font-weight: 700;

  color: #fff;

  transition: transform 0.15s ease;
}

#contenidoModal {
  flex: 1;

  overflow-y: auto;

  padding: 20px 40px;
}

#contenidoModal::-webkit-scrollbar {
  width: 8px;
}

#contenidoModal::-webkit-scrollbar-track {
  background: #1a1a1a;
}

#contenidoModal::-webkit-scrollbar-thumb {
  background: #025e1d;

  border-radius: 20px;
}

.precio-extra {
  color: #27d06d;

  font-weight: 700;

  margin-left: 8px;

  float: none;
}

.fila-extra {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin: 6px 0;
}

.extra-sabor {
  display: block;

  margin-top: 4px;

  font-size: 15px;

  color: #ffb347;

  font-weight: 700;
}

.info-sabor {
  display: flex;

  flex-direction: column;
}

.controles-sabor {
  display: flex;

  align-items: center;

  gap: 12px;
}

.extra-sabor {
  margin-top: 3px;

  font-size: 12px;

  color: #ff7a00;

  font-weight: 600;
}

.categoria-menu {
  margin: 70px 0;
}

.grid-categoria {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;
}

.card-dip.activo {
  border: 1px solid #069e57;

  box-shadow:
    0 0 0 1px rgba(0, 43, 28, 0.363),
    0 8px 20px rgba(0, 255, 128, 0.205);
}

.info-dip span {
  color: #fff;

  font-size: 16px;

  font-weight: 600;
}

#contenidoCheckout {
  display: flex;

  flex-direction: column;
}

#contenidoCheckout label {
  margin-top: 18px;

  margin-bottom: 8px;

  font-weight: 600;
}

#contenidoCheckout input,
#contenidoCheckout textarea {
  width: 100%;

  padding: 14px 18px;

  border: none;

  border-radius: 12px;

  background: #2b2b2b;

  color: #fff;

  font-size: 16px;

  box-sizing: border-box;
}

#contenidoCheckout textarea {
  resize: none;
}

.acciones-checkout {
  display: flex;

  gap: 20px;

  margin-top: 35px;
}

.acciones-checkout button {
  flex: 1;
}

/*==================================================
BARRA DE PROGRESO CHECKOUT
==================================================*/

.checkout-progress {
  margin: 0 0 40px;
}

.progress-bar {
  position: relative;

  display: flex;

  justify-content: space-between;

  align-items: flex-start;
}

.progress-bar::before {
  content: "";

  position: absolute;

  top: 21px;
  left: 0;

  width: 100%;
  height: 4px;

  background: #2f2f2f;

  border-radius: 50px;
}

.progress-fill {
  position: absolute;

  top: 21px;
  left: 0;

  height: 4px;

  background: #07b44b;

  border-radius: 50px;

  transition: 0.35s ease;
}

.progress-fill.paso-1 {
  width: 0%;
}

.progress-fill.paso-2 {
  width: 50%;
}

.progress-fill.paso-3 {
  width: 100%;
}

.progress-step {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 6px;
}

.progress-step span {
  width: 36px;

  height: 36px;

  font-size: 15px;

  border-radius: 50%;

  background: #2f2f2f;

  color: #888;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: 700;

  transition: 0.3s;
}

.progress-step small {
  color: #8a8a8a;

  font-size: 0.82rem;

  font-weight: 600;
}

.progress-step.completed span {
  background: #07b44b;

  color: #fff;
}

.progress-step.completed small {
  color: #fff;
}

.precio-menu {
  font-size: 1.2rem;

  font-weight: 700;

  color: #ffb300;

  margin: 12px 0 18px;
}

.combo-card {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

/*==================================
MÉTODO DE PAGO SELECCIONADO
==================================*/

.metodo-seleccionado {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 18px 22px;

  margin-bottom: 28px;

  background: #18211d;

  border: 1px solid #2f3a34;

  border-radius: 18px;
}

.metodo-seleccionado span {
  font-size: 34px;
}

.metodo-seleccionado small {
  display: block;

  color: #8d8d8d;

  margin-bottom: 4px;
}

.metodo-seleccionado strong {
  color: #fff;

  font-size: 1.08rem;
}

.switch {
  position: relative;

  display: inline-block;

  width: 54px;

  height: 30px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;

  inset: 0;

  background: #555;

  border-radius: 30px;

  transition: 0.25s;

  cursor: pointer;
}

.slider:before {
  content: "";

  position: absolute;

  width: 22px;

  height: 22px;

  left: 4px;

  top: 4px;

  background: white;

  border-radius: 50%;

  transition: 0.25s;
}

.switch input:checked + .slider {
  background: #118b3a;
}

.switch input:checked + .slider:before {
  transform: translateX(24px);
}

.encabezado-categoria {
  display: flex;

  flex-direction: column;

  align-items: center;

  margin-bottom: 70px;
}

.icono-categoria {
  font-size: 48px;

  flex-shrink: 0;
}

.texto-categoria {
  flex: 1;
}

.titulo-categoria {
  font-size: 56px;

  font-weight: 900;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #fff;

  margin-bottom: 22px;

  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.descripcion-categoria {
  color: #bdbdbd;

  font-size: 17px;

  margin-bottom: 18px;
}

.linea-categoria {
  position: relative;

  width: 990px;
  height: 70px;

  margin-top: 18px;
}

.linea-categoria::before {
  content: "";

  position: absolute;

  top: 50%;

  width: 38%;
  height: 2px;

  transform: translateY(-50%);

  left: 0;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 180, 70, 0.35),
    rgba(255, 255, 255, 0.08)
  );

  background-size: 200% 100%;

  animation: lineaGlow 6s ease-in-out infinite;
}

.linea-categoria::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 38%;
  height: 2px;

  transform: translateY(-50%);

  right: 0;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 180, 70, 0.35),
    rgba(255, 255, 255, 0.08)
  );

  background-size: 200% 100%;

  animation: lineaGlow 6s ease-in-out infinite;
}

.linea-categoria img {
  position: absolute;

  left: 50%;
  top: 50%;

  height: 150px;
  width: auto;

  transform: translate(-50%, -50%);

  z-index: 2;

  animation: guerreroFloat 6s ease-in-out infinite;
}

@keyframes guerreroFloat {
  0%,
  100% {
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.15));
  }

  50% {
    transform: translate(-50%, -58%);
    filter: drop-shadow(0 0 16px rgba(255, 170, 0, 0.3));
  }
}

@keyframes lineaGlow {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.18);
  }

  50% {
    background: rgba(255, 170, 0, 0.35);
  }
}

@keyframes lineaGlow {
  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.6;
  }

  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

.card::before {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -2px;

  transform: translateX(-50%);

  width: 72%;
  height: 42px;

  border-radius: 50%;

  background: radial-gradient(
    ellipse,
    rgba(2, 85, 43, 0.45) 0%,
    rgba(6, 221, 78, 0.219) 45%,
    transparent 80%
  );

  filter: blur(28px);

  opacity: 0;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;

  z-index: -1;
}

.modal-hero {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 25px 20px 15px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-titulo {
  color: #fff;

  font-size: 26px;

  font-weight: 700;

  text-align: center;

  margin: 0;
}

.modal-img {
  width: 180px;
  height: 180px;

  object-fit: contain;

  margin-bottom: 15px;
}

.modal-hero h2 {
  margin-top: 10px;

  font-size: 42px;

  font-weight: 900;
}

.modal-descripcion {
  max-width: 500px;

  margin: 14px auto 18px;

  color: #bdbdbd;

  line-height: 1.7;

  text-align: center;
}

.modal-precio {
  display: flex;

  justify-content: center;
  align-items: center;

  width: 120px;
  height: 54px;

  margin: 18px auto 0;

  background: linear-gradient(180deg, #18b75a, #11984a);

  border-radius: 999px;

  color: #fff;

  font-size: 28px;
  font-weight: 800;

  line-height: 2;
  /* <- importante */

  padding: 0;
  /* <- importante */

  box-shadow: 0 8px 20px rgba(24, 183, 90, 0.28);
}

.pop {
  animation: pop 0.18s ease;
}

#heroModal {
  flex-shrink: 0;

  padding: 40px 40px 25px;
}

#presentaciones {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin-top: 20px;
}

.opcion {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;

  padding: 18px;

  margin-bottom: 14px;

  background: linear-gradient(180deg, #003328 0%, #032124 100%);

  border: 1px solid rgba(0, 166, 81, 0.28);

  border-radius: 18px;

  transition: 0.25s;

  cursor: pointer;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 4px 12px rgba(0, 0, 0, 0.22);
}

.opcion .nombre {
  color: #fff;

  font-size: 17px;

  font-weight: 600;
}

.opcion .precio {
  font-size: 17px;
  font-weight: 700;

  color: #ff7a00;
}

.opcion:hover {
  border-color: #00b85c;
}

.opcion.activo {
  background: linear-gradient(180deg, #016b4d 0%, #01563f 55%, #014735 100%);

  border-color: #00b85c;

  box-shadow:
    0 0 18px rgba(0, 184, 92, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  transform: translateY(-2px);
}

.opcion .precio {
  background: rgba(0, 166, 81, 0.18);

  color: #22d96f;

  padding: 6px 12px;

  border-radius: 999px;

  font-weight: 700;
}

#contenidoPaso h2 {
  font-size: 24px;

  margin-bottom: 20px;

  text-align: left;
}

/* ==========================
   TARJETAS DE SABORES
========================== */

.fila-sabor {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 18px;

  margin-bottom: 14px;

  background: linear-gradient(180deg, #003328 0%, #032124 100%);

  border: 1px solid rgba(0, 166, 81, 0.28);

  border-radius: 18px;

  transition: 0.25s;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 4px 12px rgba(0, 0, 0, 0.22);
}

.fila-sabor.activo {
  background: linear-gradient(180deg, #016b4d 0%, #01563f 55%, #014735 100%);

  border-color: #00b85c;

  box-shadow:
    0 0 18px rgba(0, 184, 92, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.info-sabor {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-sabor span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.extra-sabor {
  color: #ff7a00;
  font-size: 13px;
}

.controles-sabor {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.18s;
}

.controles-sabor button {
  background: #00ff7369;

  color: #fff;
}

.controles-sabor span {
  display: flex;

  justify-content: center;
  align-items: center;

  width: 28px;
  height: 28px;

  font-size: 18px;
  font-weight: 700;

  color: #fff;

  transition: transform 0.15s ease;
}

.pop {
  animation: pop 0.18s ease;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}

.btn-continuar {
  width: 100%;

  padding: 16px;

  margin-top: 24px;

  border: none;
  border-radius: 18px;

  background: linear-gradient(180deg, #00b85c, #00994c);

  color: #fff;

  font-size: 17px;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;

  box-shadow: 0 10px 24px rgba(0, 166, 81, 0.25);
}

.btn-continuar:hover {
  transform: translateY(-2px);

  box-shadow: 0 14px 28px rgba(0, 166, 81, 0.35);
}

.btn-continuar:active {
  transform: scale(0.98);
}

.btn-continuar:disabled {
  background: #303030;

  color: #888;

  box-shadow: none;

  cursor: not-allowed;
}

.acciones-checkout {
  margin-top: 30px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {
  .modal-hero {
    padding: 25px 25px 10px;

    text-align: center;
  }

  .modal-img {
    display: none;
  }

  .modal-info {
    display: flex;

    flex-direction: column;

    gap: 8px;
  }

  .modal-titulo {
    margin: 0;

    font-size: 28px;

    line-height: 1.1;
  }

  .modal-precio {
    margin: 0;

    font-size: 22px;

    font-weight: 700;

    color: #ffb347;
  }

  .menu {
    padding: 80px 16px;
  }

  .hero {
    padding: 140px 24px 40px;

    min-height: 100dvh;

    height: auto;
  }

  .container {
    flex-direction: column-reverse;

    justify-content: center;

    align-items: center;

    text-align: center;

    gap: 30px;
  }

  .hero-texto {
    width: 100%;

    max-width: 100%;
  }

  .categoria {
    font-size: 13px;

    letter-spacing: 3px;

    margin-bottom: 12px;
  }

  .hero-texto h1 {
    font-size: 54px;

    line-height: 54px;

    margin-bottom: 18px;
  }

  .hero-texto p {
    font-size: 20px;

    line-height: 34px;

    max-width: 340px;

    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .card button {
    width: 100%;

    height: 44px;

    padding: 0;

    margin-top: 12px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 14px;

    line-height: 1;
  }

  .card p {
    font-size: 14px;

    line-height: 20px;

    min-height: auto;

    margin: 10px 0;
  }

  .card h3 {
    font-size: 20px;

    margin-top: 14px;
  }

  .card img {
    width: 100%;

    height: 120px;

    margin-top: 0;
  }

  .card {
    padding: 16px;

    border-radius: 18px;
  }

  .grid-categoria {
    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
  }

  .story {
    height: 220vh;
  }
}

@media (max-width: 768px) {
  .hero-imagen {
    width: 100%;

    height: 280px;

    flex: none;
  }

  .hero-imagen img {
    width: 90%;

    max-width: 340px;
  }

  .hero-glow {
    width: 380px;

    height: 260px;

    filter: blur(45px);
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    justify-content: center;

    margin-top: 35px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px 24px;
  }

  .btn-nav {
    display: none;
  }

  .logo {
    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 15px;
  }

  .logo img {
    width: 65px;
  }

  .logo h2 {
    font-size: 20px;
  }
}

.menu-toggle {
  display: none;

  padding: 8px;

  background: none;

  border: none;

  color: #fff;

  font-size: 32px;

  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;

    padding: 8px;

    background: none;

    border: none;

    color: #fff;

    font-size: 32px;

    cursor: pointer;

    margin: 0;
  }

  .nav-links {
    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    background: #12361f;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 30px;

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
  }

  .nav-links.activo {
    max-height: 320px;

    padding: 30px 0;
  }
}

@media (max-width: 768px) {
  .modal-contenido {
    width: 95%;

    max-height: 96vh;

    border-radius: 22px;
  }
}

header.scrolled {
  background: rgba(18, 54, 31, 0.85);

  backdrop-filter: blur(16px);

  -webkit-backdrop-filter: blur(16px);

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

html {
  scroll-behavior: smooth;
}

.ubicacion {
  padding: 120px 8%;
  background: #111;
}

.ubicacion-contenedor {
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 70px;

  align-items: center;
}

.ubicacion-info .subtitulo {
  color: #52d46c;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ubicacion-info h2 {
  font-size: 3.6rem;
  line-height: 1.1;
  margin: 18px 0 35px;
}

.ubicacion-info p {
  font-size: 1.1rem;
  color: #bdbdbd;
  line-height: 2;
  margin-bottom: 45px;
  max-width: 420px;
}

.radio-entrega {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #1c1c1c;
  border: 1px solid #2f2f2f;

  padding: 14px 20px;

  border-radius: 40px;

  margin-bottom: 35px;
}

.btn-ubicacion {
  display: inline-block;

  background: #4caf50;

  color: white;

  padding: 15px 32px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.btn-ubicacion:hover {
  transform: translateY(-4px);
}

#mapa {
  width: 100%;
  height: 600px;

  border-radius: 25px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .ubicacion-contenedor {
    grid-template-columns: 1fr;
  }

  #mapa {
    height: 400px;
  }
}

.datos-entrega {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.datos-entrega div {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #fff;

  font-weight: 500;
}

.datos-entrega span {
  color: #d5d5d5;
}

.nosotros {
  padding: 120px 8%;
  background: #111;
}

.nosotros-contenedor {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  align-items: center;
}

.nosotros-imagen img {
  width: 100%;
  display: block;
}

.nosotros-info .subtitulo {
  color: #52d46c;
  font-size: 0.9rem;
  letter-spacing: 3px;
  font-weight: 700;
}

.nosotros-info h2 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin: 18px 0 30px;
}

.nosotros-info p {
  color: #bdbdbd;
  line-height: 2;
  margin-bottom: 25px;
}

.nosotros-caracteristicas {
  margin-top: 40px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.nosotros-caracteristicas div {
  background: #181818;

  border: 1px solid #252525;

  padding: 18px 22px;

  border-radius: 16px;

  font-weight: 500;
}

.contacto {
  padding: 120px 8%;
  background: #0d0d0d;
}

.contacto-contenedor {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.contacto h2 {
  font-size: 3rem;
  margin: 18px 0 20px;
}

.contacto p {
  color: #bdbdbd;
  max-width: 650px;
  margin: auto;
}

.contacto-grid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.contacto-card {
  display: flex;
  align-items: center;
  gap: 20px;

  padding: 28px;

  background: #181818;

  border: 1px solid #2b2b2b;

  border-radius: 20px;

  text-decoration: none;

  transition: 0.3s;
}

.contacto-card:hover {
  border-color: #52d46c;
  transform: translateY(-5px);
}

.contacto-card span {
  font-size: 2rem;
}

.contacto-card h3 {
  margin-bottom: 5px;
}

.contacto-card p {
  color: #9f9f9f;
  margin: 0;
}

.footer {
  background: #080808;

  padding: 70px 8% 40px;
}

.footer-contenedor {
  max-width: 1200px;

  margin: auto;

  text-align: center;
}

.footer h2 {
  font-size: 2rem;

  margin-bottom: 12px;
}

.footer p {
  color: #8d8d8d;

  margin-bottom: 35px;
}

.footer-redes {
  display: flex;

  justify-content: center;

  gap: 40px;
}

.footer-redes a {
  color: #ffffff;

  text-decoration: none;

  transition: 0.3s;
}

.footer-redes a:hover {
  color: #52d46c;
}

.footer-linea {
  width: 100%;

  height: 1px;

  background: #232323;

  margin: 45px 0 25px;
}

.footer span {
  color: #777;

  font-size: 0.9rem;
}

.nav-links a {
  position: relative;

  transition: 0.3s;
}

.nav-links a.active {
  color: #52d46c;
}

.nav-links a.active::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 100%;

  height: 2px;

  background: #52d46c;

  border-radius: 10px;
}

@media (max-width: 900px) {
  /* ===========================
   NOSOTROS
=========================== */

  .nosotros {
    padding: 80px 24px;
  }

  .nosotros-contenedor {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .nosotros-imagen {
    order: 1;
  }

  .nosotros-info {
    order: 2;
    text-align: center;
  }

  .nosotros-info h2 {
    font-size: 2.2rem;
  }

  .nosotros-caracteristicas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  /* ===========================
   CONTACTO
=========================== */

  .contacto {
    padding: 80px 24px;
  }

  .contacto h2 {
    font-size: 2.2rem;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contacto-card {
    padding: 22px;
  }
}

/* ===========================
   EXTRAS / DIPS / COMBO
=========================== */

.extra-card {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;

  padding: 16px;
}

.extra-card h4 {
  font-size: 16px;
}

.extra-card p {
  font-size: 14px;
  margin: 4px 0;
}

.extra-card small {
  font-size: 13px;
}

.controles-dip {
  width: 100%;

  justify-content: flex-end;

  gap: 10px;
}

.controles-dip span {
  width: 24px;
  height: 24px;
  font-size: 16px;
}

.combo-card {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* ===========================
   PRESENTACIONES (Boneless)
=========================== */

#contenidoPaso h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

#presentaciones {
  gap: 10px;
}

.opcion {
  padding: 15px 16px;
  margin-bottom: 10px;
  border-radius: 14px;
}

.opcion .nombre {
  font-size: 15px;
}

.opcion .precio {
  font-size: 14px;
  padding: 5px 10px;
}

.fila-sabor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.info-sabor {
  flex: 1;
  min-width: 0;
}

.info-sabor span {
  font-size: 15px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.controles-sabor {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 120px;
  flex-shrink: 0;
}

.controles-sabor button {
  width: 40px;
  height: 40px;
  padding: 0;
}

.controles-sabor span {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.controles-sabor button {
  -webkit-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;

  touch-action: manipulation;
}

.controles-sabor {
  -webkit-user-select: none;
  user-select: none;
}

@media (min-width: 769px) {
  .modal-hero {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 170px;

    padding: 20px 40px;
  }

  .modal-img {
    display: none;
  }

  .modal-info {
    text-align: center;
    width: 100%;
  }

  .modal-descripcion {
    max-width: 600px;

    margin: 16px auto 20px;

    color: #bdbdbd;

    line-height: 1.7;
  }

  .modal-precio {
    display: inline-block;
  }
}

@media (min-width: 769px) {
  .modal-contenido {
    display: flex;
    flex-direction: column;

    max-height: 90vh;
  }

  #contenidoModal {
    flex: 1;
    overflow-y: auto;

    padding: 20px 40px 120px;
  }
}

.progress-step.active span {
  background: #07b44b;

  color: #fff;

  transform: scale(1.12);

  box-shadow: 0 0 18px rgba(7, 180, 75, 0.45);
}

.progress-step.active small {
  color: #fff;
}

.checkout {
  width: 92%;
  max-width: 760px;

  max-height: 85vh;

  padding: 32px 32px 26px;

  overflow-y: auto;
}

.checkout::-webkit-scrollbar {
  width: 8px;
}

.checkout::-webkit-scrollbar-thumb {
  background: #0db14b;

  border-radius: 20px;
}

.checkout-titulo {
  font-size: 3.4rem;

  font-weight: 800;

  text-align: center;

  margin: 10px 0 8px;

  line-height: 1.05;
}

.checkout-subtitulo {
  text-align: center;

  color: #8e8e8e;

  font-size: 1rem;

  margin-bottom: 22px;
}

/*=========================
CARDS ENTREGA
=========================*/

.opciones-entrega {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;

  margin-top: 20px;
}

.card-entrega {
  background: linear-gradient(180deg, #1b2420, #151b18);

  border: 1px solid #2d3732;

  border-radius: 22px;

  padding: 28px 22px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 14px;

  text-align: center;

  transition: 0.25s;

  cursor: pointer;
}

.card-entrega:hover {
  transform: translateY(-8px);

  border-color: #00b85c;

  box-shadow: 0 20px 45px rgba(0, 184, 92, 0.22);
}

.card-entrega:active {
  transform: scale(0.97);
}

.icono-entrega {
  font-size: 42px;

  transition: transform 0.25s ease;
}

.card-entrega:hover .icono-entrega {
  transform: scale(1.12);
}

.card-entrega h3 {
  font-size: 1.35rem;

  font-weight: 700;

  color: #fff;
}

.card-entrega p {
  color: #9d9d9d;

  font-size: 0.92rem;

  line-height: 1.5;
}

@media (max-width: 768px) {
  .opciones-entrega {
    grid-template-columns: 1fr;
  }
}

.btn-secundario {
  background: linear-gradient(180deg, #2b2b2b, #222222);

  border: 1px solid #3b3b3b;

  color: #fff;

  transition: 0.25s;
}

.btn-secundario:hover {
  background: linear-gradient(180deg, #353535, #292929);

  border-color: #4d4d4d;

  transform: translateY(-3px);
}

.btn-secundario:active {
  transform: scale(0.98);
}

/*=============================
RESUMEN CARRITO
=============================*/

.resumen-carrito {
  margin-top: 30px;

  padding: 28px;

  border-radius: 22px;

  background: linear-gradient(180deg, #202622, #181d1a);

  border: 1px solid #2f3833;
}

.subtotal-titulo {
  color: #9c9c9c;

  font-size: 1rem;

  margin-bottom: 10px;
}

.subtotal-precio {
  font-size: 3.4rem;

  font-weight: 800;

  line-height: 1;

  margin-bottom: 22px;
}

.envio-info {
  color: #b8b8b8;

  margin-bottom: 24px;
}

.cupon-checkout {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cupon-checkout label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.cupon-checkout-input {
  display: flex;
  gap: 10px;
}

.cupon-checkout-input input {
  flex: 1;
  min-width: 0;
  text-transform: uppercase;
}

.btn-aplicar-cupon,
.btn-quitar-cupon {
  border: 0;
  border-radius: 10px;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
}

.btn-aplicar-cupon {
  background: #0db14b;
  color: #fff;
}
.btn-quitar-cupon {
  background: #343434;
  color: #fff;
}

.mensaje-cupon {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.mensaje-cupon.valido {
  color: #61de93;
}
.mensaje-cupon.error {
  color: #ff8585;
}

.resumen-checkout {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.resumen-checkout > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0;
}

.resumen-descuento strong {
  color: #61de93;
}

.resumen-total {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.1rem;
}

@media (max-width: 480px) {
  .cupon-checkout-input {
    flex-direction: column;
  }

  .btn-aplicar-cupon,
  .btn-quitar-cupon {
    min-height: 42px;
  }
}

.btn-finalizar {
  width: 100%;

  padding: 18px;

  border: none;

  border-radius: 18px;

  background: linear-gradient(180deg, #0dc95c, #09b44c);

  color: #fff;

  font-size: 1rem;

  font-weight: 700;

  cursor: pointer;

  transition: 0.25s;
}

.btn-finalizar:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 35px rgba(0, 184, 92, 0.28);
}

.btn-finalizar:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .panel-carrito {
    width: 100%;

    right: -100%;

    padding: 20px;
  }
}

@media (max-width: 768px) {
  .controles-sabor,
  .controles-dip {
    width: 110px;

    gap: 6px;
  }

  .controles-sabor button,
  .controles-dip button {
    width: 34px;
    height: 34px;

    padding: 0;
  }
}

@media (max-width: 768px) {
  .modal-hero {
    padding: 18px 20px 12px;
  }

  .modal-titulo {
    font-size: 2.6rem;

    line-height: 1.05;

    margin-bottom: 12px;
  }

  .modal-hero p {
    margin: 0 auto;
  }

  .modal-precio {
    margin-top: 12px;
  }

  .modal-info {
    display: flex;

    flex-direction: column;

    gap: 12px;
  }

  .modal-descripcion {
    max-width: 290px;

    margin: 8px auto 10px;

    font-size: 1rem;

    line-height: 1.6;
  }
}

.card-dip h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.card-dip p {
  color: #bdbdbd;
  margin: 0;
}

.card-dip small {
  color: #ff7a00;
  font-weight: 700;
}

.pedido-enviado {
  text-align: center;
  max-width: 420px;
}

.icono-exito {
  font-size: 70px;
  margin-bottom: 15px;
}

#folioPedidoEnviado {
  display: block;

  margin-top: 18px;

  font-size: 36px;

  font-weight: 800;

  color: #2ecc71;

  letter-spacing: 2px;
}

#btnAceptarPedido {
  margin-top: 28px;

  width: 100%;

  height: 55px;

  border: none;

  border-radius: 12px;

  background: #0b7a2e;

  color: white;

  font-size: 17px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.25s;
}

#btnAceptarPedido:hover {
  background: #0e8f37;

  transform: translateY(-2px);
}

.icono-exito {
  width: 78px;
  height: 78px;

  margin: auto;

  border-radius: 50%;

  background: #0b7a2e;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  font-size: 42px;

  font-weight: bold;

  box-shadow: 0 0 20px rgba(11, 122, 46, 0.35);
}
/*==============================
DIRECCIONES CHECKOUT
==============================*/

#listaDireccionesCheckout {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0;
}

.direccionCheckout {
  border: 2px solid #2b2b2b;
  border-radius: 18px;
  background: #1b1b1b;
  transition: 0.25s;
}

.direccionCheckout:hover {
  border-color: #18b54a;
}

.direccionCheckout label {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  cursor: pointer;

  padding: 20px;
}

.direccionCheckout input[type="radio"] {
  display: none;
}

.infoDireccion h3 {
  margin: 0;

  font-size: 20px;

  color: #fff;
}

.infoDireccion p {
  margin: 0;

  line-height: 1.55;
}

.direccionCheckout small {
  color: #999;
}

.btnNuevaDireccionCheckout {
  width: 100%;

  background: transparent;

  border: 2px dashed #18b54a;

  color: #18b54a;

  border-radius: 18px;

  padding: 16px;

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.25s;

  margin-bottom: 30px;
}

.btnNuevaDireccionCheckout:hover {
  background: #18b54a;

  color: white;
}
.infoDireccion {
  display: flex;

  flex-direction: column;

  gap: 6px;
}
.direccionCheckout {
  border: 2px solid #2d2d2d;

  border-radius: 18px;

  background: #1b1b1b;

  transition: 0.25s;

  cursor: pointer;
}

.direccionCheckout:hover {
  border-color: #18b54a;
}

.direccionCheckout.seleccionada {
  border-color: #18b54a;

  background: #1d241d;

  box-shadow:
    0 0 0 1px rgba(24, 181, 74, 0.35),
    0 0 18px rgba(24, 181, 74, 0.22);
}
/*==============================
SIN DIRECCIONES
==============================*/

.sinDirecciones {
  text-align: center;

  background: #1b1b1b;

  border: 2px dashed #18b54a;

  border-radius: 18px;

  padding: 35px 25px;

  margin: 30px 0;
}

.sinDirecciones h3 {
  color: #fff;

  margin-bottom: 15px;
}

.sinDirecciones p {
  color: #bdbdbd;

  line-height: 1.7;

  margin-bottom: 25px;
}

.btnIrPerfil {
  background: #18b54a;

  color: white;

  border: none;

  border-radius: 999px;

  padding: 14px 30px;

  font-size: 15px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.25s;
}

.btnIrPerfil:hover {
  background: #22d55e;
}
.dropdownPerfil a {
  display: flex;

  align-items: center;

  gap: 12px;
}

.dropdownPerfil a svg {
  width: 20px;

  height: 20px;

  stroke-width: 2;

  flex-shrink: 0;
}
/* ==========================================
   RESPONSIVE - PERFIL DEL NAVBAR
   ========================================== */

@media (max-width: 768px) {
  #usuarioNavbar {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 4px;
  }

  #usuarioNavbar .perfilMenu {
    position: relative;
    display: flex;
    align-items: center;
  }

  #usuarioNavbar #btnPerfil {
    width: 44px;
    height: 44px;

    padding: 0;
    margin: 0;

    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #18b54a;
    color: white;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);

    transition:
      transform 0.2s ease,
      background 0.2s ease,
      box-shadow 0.2s ease;
  }

  #usuarioNavbar #btnPerfil:hover {
    transform: none;
    background: #18b54a;
  }

  #usuarioNavbar #btnPerfil:active {
    transform: scale(0.94);
  }

  #usuarioNavbar .iconoPerfil {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;
    line-height: 1;
  }

  #usuarioNavbar .nombrePerfil,
  #usuarioNavbar .flechaPerfil {
    display: none;
  }
}
/* ==========================================
   MODAL DE MENSAJE
   ========================================== */

.modal-mensaje {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;

  display: none;

  align-items: center;
  justify-content: center;

  z-index: 2147483647 !important;

  background: rgba(0, 0, 0, 0.65);
}
.modal-mensaje-contenido {
  width: min(420px, 100%);

  position: relative;
  z-index: 2147483647 !important;

  padding: 30px 25px;

  background: #ffffff;
  border-radius: 18px;

  text-align: center;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

  animation: aparecerMensaje 0.2s ease-out;
}

.modal-mensaje-icono {
  font-size: 45px;
  margin-bottom: 10px;
}

.modal-mensaje-contenido h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.modal-mensaje-contenido p {
  margin: 0 0 25px;
  color: #555;
  line-height: 1.5;
}

.btn-modal-mensaje {
  border: none;
  border-radius: 10px;

  padding: 11px 25px;

  background: #111;
  color: white;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
}

.btn-modal-mensaje:hover {
  opacity: 0.85;
}

@keyframes aparecerMensaje {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
