@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,500;1,500&display=swap");

body {
  margin: 0;
  padding: 0;
  cursor: default;
}

.no-scroll {
  overflow: hidden;
}

#network-bg {
  position: fixed;
  inset: 0;
  z-index: -1; /* siempre detrás */
  background: #141b2b; /* tu color base oscuro */
}

.cursor-sombra {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  background: #ffd700;
  filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: transform 0.03s linear;
}

#quantor {
  font-family: "Raleway", sans-serif;
}

#finance {
  font-family: "Raleway", sans-serif;
}

.navbar-link {
  position: relative;
  display: inline-block;
  transition: color 0.4s, text-shadow 0.4s;
}

.navbar-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em;
  width: 0;
  height: 2px;
  background: #85700b;
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.navbar-link:hover::after {
  width: 100%;
}

#navbar-toggle.active {
  background: #cea855;
  border-color: #cea855;
}
#navbar-toggle.active span {
  background: #232b2b;
}

#container-inflacion::after {
  content: "";
  position: absolute;
  top: 53%;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: rgba(117, 117, 117, 0.18);
  border-radius: 10px;
  transform: translateY(-50%);
}

.active {
  background: #ffffffc2;
  border: 1px solid #cea855;
  color: #232b2b;
}

.plantilla-img {
  max-width: 1100px;
  width: 100%;
  height: 420px;
  object-fit: contain;
  transform: none;
  transform-origin: center center;
}

/* Productos link */

#productos-link {
  position: relative;
  display: inline-block;
}

#productos-link::after {
  content: "!";
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ff3b30;
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  line-height: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  transform: scale(1);
  transition: transform 0.2s ease-in-out;
}

#productos-link:hover::after {
  transform: scale(1.2);
}

/* Carrito logo y contador */

#carrito-logo {
  position: relative;
}

/* ====== Transición carrito <-> formulario en drawer ====== */
#cartFormTrack {
  will-change: transform;
}
#carrito-logo[data-count]:after {
  content: attr(data-count);
  position: absolute;
  top: -6px;
  right: -6px;
  background: #cea855;
  color: #232b2b;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  padding: 4px 6px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  box-shadow: 0 0 6px rgba(206, 168, 85, 0.8);
  pointer-events: none;
  z-index: 10;
}

/* Badge en botón hamburguesa (solo mobile) */
@media (max-width: 1023px) {
  #navbar-toggle[data-count] {
    position: relative;
  }
  #navbar-toggle[data-count]::after {
    content: attr(data-count);
    position: absolute;
    top: -6px;
    right: -6px;
    background: #cea855;
    color: #232b2b;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    padding: 4px 6px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    box-shadow: 0 0 6px rgba(206, 168, 85, 0.8);
    pointer-events: none;
  }
}
