body {
  background-color: #000000 !important;
}
.position-relative {
  z-index: 1;
}
.card img {
  -webkit-mask-image: linear-gradient(black 80%, transparent);
  mask-image: linear-gradient(black 80%, transparent);
}
.btn-cart {
  background-color: brown;
  color: white;
}
.btn-cart:hover {
  background-color: #000 !important;
  color: #fff !important;
}
.custom-card:hover img {
  transform: scale(1.1);
}

.custom-card img {
  transition: transform 0.3s ease-in-out;
}

.btn-primary {
  background-color: #1b1a20 !important;
  color: white;
  border: #1b1a20 !important;
}


.btn-primary:hover {
  border: none !important;
  opacity: 0.8 !important;
}


/* HEADER GENERAL */
.kks-header {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* CONTENEDOR */
.header_mid_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Estilo general del botón */
.header-phone .phone-link {
  font-size: 1rem;
  display: flex;
  align-items: center;
  background: #e63946; 
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  gap: 8px;
  transition: 0.2s;
  white-space: nowrap;
}

.header-phone .phone-link:hover {
  background: #ff4d5a;
  transform: scale(1.05);
}

/* Cuando el header está en desktop */
.header-phone {
  margin-left: 25px;
}

/* ====== CORRECCIÓN DEFINITIVA PARA MÓVIL ====== */
@media (max-width: 768px) {

  /* Contenedor principal del header ocupa todo el ancho */
  .header_mid_inner {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }

  /* El menú se centra correctamente */
  .kks-nav {
    width: 100%;
    display: flex;
    justify-content: center !important;
  }

  .kks-nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  /* 📞 El teléfono queda centrado al 100% */
  .header-phone {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 28px 253px 9px 0 !important;
  }

  .header-phone .phone-link {
    padding: 10px 18px;
    font-size: 1.1rem;
  }
}





/* LOGO */
.logo img {
  max-height: 100px;
}

/* REDES */
.social_wrap ul {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.social_wrap a {
  font-size: 22px;
  color: #e6002e;
  transition: 0.3s;
}
.social_wrap a:hover {
  transform: scale(1.2);
}


/* NAV */
.kks-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.kks-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  transition: 0.3s;
}
.kks-nav a:hover {
  color: #e6002e;
}
h1 {
  text-transform: uppercase;
  letter-spacing: 3px;
    font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
    font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.rocknroll-one-regular {
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.mochiy-pop-one-regular {
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .header_mid_inner {
    flex-direction: column;
    gap: 15px;
  }

  .kks-nav ul {
    gap: 15px;
  }
}


@keyframes swing {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(5deg);
  }
  to {
    transform: rotate(0);
  }
}

.offcanvas-header {
  background-color: #cecece !important;
}

.btn_shopping {
  background-color: #73A839 !important;
  border: 1px solid #000000 !important;
}
.btn_shopping :hover {
  animation: swing 0.6s ease forwards;
  display: inline-block;
}
.fs-5 {
  font-size: 30px !important;
  color: rgba(var(--bs-warning-rgb),var(--bs-text-opacity)) !important;
  font-weight: 600 !important;
}
.fs-6 {
  font-size: 25px !important;
  color: #dc3545 !important;
}
.fs-7 {
  font-size: 16px !important;
  color: #dc3545 !important;
}

.offcanvas {
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.offcanvas.show {
  transform: translateX(0);
  opacity: 1;
}

.offcanvas:not(.show) {
  transform: translateX(100%);
  opacity: 0;
}

/* BOTÓN WHATSAPP */
.btn-whatsapp-anim {
  background-color: #25D366;
  border-color: #1ebe5d;
  color: white;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.5);
  transition: all .2s ease-in-out;
  animation: pulse 1.8s infinite ease-in-out;
}

.btn-whatsapp-anim:hover {
  background-color: #1ebe5d;
  border-color: #19a94f;
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.8);
}

/* ACTIVE (click) */
.btn-whatsapp-anim:active {
  background-color: #128C7E;
  border-color: #0f6f63;
  transform: scale(0.97);
}

/* ANIMACIÓN TIPO LATIDO */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 16px rgba(37, 211, 102, 0.65);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
  }
}

/* ANIMACIÓN DE VIBRACIÓN (cuando el mouse pasa arriba) */
.btn-whatsapp-anim:hover i {
  animation: shake .4s ease-in-out;
}

/* ANIMACIÓN SHAKE */
@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  50% { transform: rotate(-8deg); }
  75% { transform: rotate(6deg); }
  100% { transform: rotate(0deg); }
}

/* Switch estilo iOS */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.switch input { display: none; }

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: .4s;
}

input:checked + .slider {
  background-color: #ff3b3b;
}

input:checked + .slider:before {
  transform: translateX(22px);
}




