@font-face {
  font-family: 'IgnitFont';
  src: url('ignitfont.ttf');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.shipping-bar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 6px;
  font-size: 15px;
  letter-spacing: 2px;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  background: transparent;
  backdrop-filter: blur(0px);
  z-index: 999;
}

/* VIDEO */
/* VIDEO SOLO HERO */
#bg-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 0;
  pointer-events: none;
}

/* IMAGEN MOBILE */
.hero-bg-img {
  position: absolute;
  inset: 0;

  background-image: url("index-mov.jpg");
  background-size: cover;
  background-position: center;

  z-index: 0;
}

/* VISIBILIDAD */
.desktop-media {
  display: block;
}

.mobile-media {
  display: none;
}

/* CAPAS */
.hero,
.intro,
.products {
  position: relative;
  z-index: 1;
}

html,
body {
  position: relative;
  overflow-x: hidden;
  background: #000;
  color: white;
  font-family: 'IgnitFont', sans-serif;
  min-height: 100vh;
}

/* CONTENEDOR */
.intro-loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-logo {
  width: 120px;
  opacity: 0;
  transform: scale(0.8);
  filter: blur(10px);
  animation: logoReveal 0.8s ease forwards;
}

.intro-loader.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.glow {
  position: absolute;
  width: 200px;
  height: 200px;

  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent);
  filter: blur(40px);

  animation: glowExpand 1.2s ease forwards;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes glowExpand {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: scale(3);
  }
}

/* LOGO ANIMACIÓN */
@keyframes logoDrop {
  0% {
    transform: translateY(-300px) scale(0.8);
    opacity: 0;
  }

  60% {
    transform: translateY(20px) scale(1.1);
    opacity: 1;
  }

  80% {
    transform: translateY(-10px) scale(0.98);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes shake {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(2px);
  }

  75% {
    transform: translateY(-1px);
  }

  100% {
    transform: translateY(0);
  }
}



/* HERO */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.loaded .hero {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.3) 60%,
      rgba(0, 0, 0, 0.7) 80%,
      #000 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.hero-box {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 20px;
  max-width: 450px;
  width: 80%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

h1 {
  font-size: 6rem;
}

p {
  margin-top: 10px;
  opacity: 0.85;
}

button {
  margin-top: 10px;
  padding: 16px;
  width: 100%;
  background: linear-gradient(45deg, #ff0000, #ff0000);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4), 0 0 12px rgba(255, 0, 0, 0.2);
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 10px;
}

button:hover {
  transform: translateY(-2px);
}

.hero-text {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.impact-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50%;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(120px);
  filter: blur(10px);
  animation: introText 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.impact-text span {
  display: block;
  opacity: 1;
  transform: translateY(40px);
  filter: blur(8px);
  animation: revealWord 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
}

.impact-text span:nth-child(1) {
  animation-delay: 0.6s;
}

.impact-text span:nth-child(2) {
  animation-delay: 0.8s;
}

.impact-text span:nth-child(3) {
  animation-delay: 1s;
}

.scroll-text {
  font-size: 1rem;
  letter-spacing: 4px;
  opacity: 0.9;
  margin-bottom: 12px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.scroll-down {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
  opacity: 1;
  animation: fadeInArrow 1.5s ease forwards 1.2s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

.scroll-down span {
  display: block;
  width: 22px;
  height: 22px;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
  transform: rotate(45deg);
  margin: -5px;
  animation: arrowMove 1.6s infinite, vibrate 2s infinite;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
}

.scroll-down span:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-down span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes arrowMove {
  0% {
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    transform: rotate(45deg) translate(0, 6px);
  }

  100% {
    transform: rotate(45deg) translate(0, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(-25px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes enterUp {
  0% {
    opacity: 0;
    transform: translateY(120px);
    filter: blur(10px);
  }

  60% {
    opacity: 1;
    transform: translateY(-15px);
    filter: blur(2px);
  }

  100% {
    transform: translateY(-10px);
    filter: blur(0);
  }
}

@keyframes fadeInArrow {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes vibrate {

  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }

  25% {
    transform: rotate(45deg) translate(1px, -1px);
  }

  50% {
    transform: rotate(45deg) translate(-1px, 1px);
  }

  75% {
    transform: rotate(45deg) translate(1px, 1px);
  }
}

@keyframes revealWord {
  0% {
    opacity: 0;
    transform: translateY(100px);
    filter: blur(12px);
  }

  60% {
    opacity: 1;
    transform: translateY(-8px);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes introText {
  0% {
    opacity: 0;
    transform: translateY(120px);
    filter: blur(10px);
  }

  60% {
    opacity: 1;
    transform: translateY(-10px);
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes bump {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}

/* INTRO */
.intro {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  margin-top: 0;
  padding: 30px 20px 40px;
  position: relative;
  z-index: 1;
}

.intro::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgb(0, 0, 0));
  pointer-events: none;
  z-index: 1;
}

.intro-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.intro h2 {
  font-size: 2rem;
  letter-spacing: 9px;
  margin-bottom: 10px;
  line-height: 1.1;
  text-align: center;
  width: 100%;
}

.intro h2:first-child {
  opacity: 0.8;
}

.intro h2:last-child {
  font-weight: 900;
}

.intro-sub {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.7;
  letter-spacing: 1px;
}

/* AMBASSADOR */
.ambassador {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 70px 30px 0;
  background: rgba(0, 0, 0, 0.95);
  position: relative;
  z-index: 2;
}

.ambassador-img {
  position: relative;
}

.ambassador-img img {
  width: 800px;
  max-width: 100%;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  filter: brightness(0.85);
  display: block;
}

.ambassador-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.26), transparent);
}

.ambassador-content {
  max-width: 400px;
  text-align: center;
}

.ambassador-content h2 {
  font-size: 2.5rem;
  letter-spacing: 4px;
  text-align: center;
}

.ambassador-content p {
  margin-top: 10px;
  margin-bottom: 25px;
  opacity: 0.7;
}

.ambassador-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 28px;
  border-radius: 10px;
  background: #ff0000;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.103),
    0 10px 30px rgb(150, 0, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 2;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

.ambassador-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.35);
}

.section-divider {
  width: 100%;
  height: 1px;
  margin: 40px auto;

  background: linear-gradient(to right,
      transparent,
      rgba(255, 0, 0, 0.4),
      transparent);

  position: relative;
}

/* PRODUCTOS */
.products {
  padding: 5px 40px;
  padding-bottom: 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  background: #000;
  position: relative;
}

.products::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
}

.category {
  width: 100%;
  max-width: 1200px;
  margin: 0;
  position: relative;
}

.category h2 {
  font-size: 1.8rem;
  margin-bottom: 35px;
  letter-spacing: 4px;
  text-align: center;
  font-weight: 400;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.03);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.03);
  scroll-snap-align: center;
}

.product-card:hover {
  transform: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.05);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.03);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 70%);
  opacity: 0;
  transition: 0.3s;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card img {
  width: 75%;
  max-height: 260px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.274));
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-info {
  margin-top: 15px;
  text-align: center;
}

.product-name {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
}

.product-desc {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 4px;
}

.price {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

.badge {
  display: block;
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 6px;
  letter-spacing: 1px;
  color: #ff3b3b;
  font-weight: 600;
  animation: pulse 1.5s infinite;
}

.product-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 15px;
}

.add-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: red;
  color: white;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgb(150, 0, 0);
  text-transform: uppercase;
}

.add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.1);
}

.add-btn:active {
  transform: scale(0.96);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.add-btn.loading {
  pointer-events: none;
  opacity: 0.6;
}

.add-btn.added {
  background: white;
  color: black;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  animation: glowPulse 0.5s ease;
}

.carousel-arrows,
.carousel-dots {
  display: flex;
}

/* TRUST */
.trust {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 10px;
  text-align: center;
  padding-top: 30px;
  position: relative;
  z-index: 1;
}

.trust-item {
  opacity: 0.8;
  transition: 0.3s;
}

.trust-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.trust-item strong {
  color: white;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.7);
}

.social-proof {
  position: relative;
  z-index: 2;

  background: linear-gradient(black);
  border-top: 0px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0px solid rgba(255, 255, 255, 0.06);

  padding: 10px 20px;
  padding-bottom: 30px;

  text-align: center;
}

.social-proof p strong {
  color: white;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.5),
    inset 0 0 10px rgba(255, 255, 255, 0.05);
}

/* =========================
CARRITO
========================= */

.cart {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;

  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.9);

  transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2000;

  padding: 20px;
  display: flex;
  flex-direction: column;
}

.cart.active {
  right: 0;
}

/* HEADER */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.cart-header h2 {
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.cart-close {
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.2s;
}

.cart-close:hover {
  transform: scale(1.2);
}

/* ITEMS */
.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);

  padding: 12px;
  border-radius: 10px;
  margin-bottom: 16px;

  transition: 0.25s ease;
}

.cart-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.cart-item img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item div {
  flex: 1;
}

.cart-item div div:first-child {
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item div div:nth-child(2) {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 4px;
}

/* CONTROLES */
.quantity-controls {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  align-items: center;
}

.quantity-controls button {
  padding: 6px 14px;
  font-size: 0.85rem;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;

  border-radius: 10px;
  cursor: pointer;

  transition: all 0.2s ease;
  min-width: 36px;
  font-weight: 500;

  box-shadow: none;
}

.quantity-controls button:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.quantity-controls button:active {
  transform: scale(0.9);
}

.quantity-controls span {
  font-size: 0.9rem;
  flex: 1;
  text-align: center;
}

/* REMOVE */
.remove-btn {
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.4;
  transition: 0.2s;
}

.remove-btn:hover {
  opacity: 1;
  color: rgb(255, 0, 0);
}

/* TOTAL */
.cart-total {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* CHECKOUT */
.cart-checkout {
  margin-top: auto;
  padding: 14px;

  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgb(255, 2, 2);
  color: rgb(255, 255, 255);

  font-weight: 600;
  letter-spacing: 1px;

  cursor: pointer;

  transition: all 0.25s ease;
  text-transform: uppercase;

    box-shadow: 0 0 8px rgba(255, 0, 0, 0.6), 0 0 15px rgba(255, 0, 0, 0.3);
}

.cart-checkout:hover {
  background: #ff0000;
  transform: translateY(-2px);
}

.cart-checkout:active {
  transform: scale(0.96);
}

/* CONTADOR */
#cart-count {
  position: absolute;
  top: -8px;
  right: -10px;

  background: rgb(255, 0, 0);
  color: rgb(255, 255, 255);

  font-size: 0.7rem;
  font-weight: 600;

  padding: 2px 6px;
  border-radius: 50%;

  min-width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 8px rgba(255, 0, 0, 0.6), 0 0 15px rgba(255, 0, 0, 0.3);
  transition: all 0.2s ease;
}

#cart-count.bump {
  animation: bump 0.3s ease;
}

/* ICONO */
.cart-icon {
  position: relative;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 8px;
  margin-right: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.25s ease;
}

.cart-icon:hover {
  transform: scale(1.1);
}

.cart-icon:hover #cart-count {
  transform: scale(1.1);
}

.cart-icon:active {
  transform: scale(0.9);
}

/* FOOTER */
.footer {
  background: #000;
  color: white;
  padding: 15px 20px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.8);
}

.footer-logo img {
  height: 50px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

.footer-brand h2 {
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.footer-brand p {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 5px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: white;
}

.footer-bottom {
  display: flex;
  text-align: center;
  margin-top: 10px;
  font-size: 0.75rem;
  opacity: 0.5;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer-social a img {
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: 0.25s ease;
  filter: brightness(0) invert(1); /* blanco */
}

.footer-social a img:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.1);
}
.email-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;

  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}

.email-popup.active {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  position: relative;
  background: #0a0a0a;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 350px;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}
.popup-logo {
  position: absolute;
  top: 10px;
  left: 10px;

  width: 100px; /* ajusta según tu logo */
  opacity: 0.9;
}

.popup-box h2 {
  font-size: 2rem;
  letter-spacing: 3px;
  margin-top: 25px;
}

.popup-box input {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.popup-box button {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  background: red;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
.popup-box button.loading {
  opacity: 0.6;
  pointer-events: none;
}

.popup-box button.success {
  background: white;
  color: black;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s;
}

.close-popup:hover {
  opacity: 1;
  transform: scale(1.2);
}
.discount-code {
  display: none; /* 👈 oculto real */
  margin-top: 15px;
  padding: 12px;
  border-radius: 10px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);

  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}

.discount-code span {
  color: red;
  font-weight: 800;
}

.discount-code.show {
  display: block; /* 👈 aparece */
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
/* MOBILE */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }

  .shipping-bar {
    font-size: 0.75rem;
    background: rgba(transparent);
  }

  ;

  .intro-logo {
    width: 120px;
  }

  /* SWITCH */
  .desktop-media {
    display: none;
  }

  .mobile-media {
    display: block;
  }

  .intro {
    padding: 40px 20px;
  }

  .intro h2 {
    font-size: 1rem;
    line-height: 1.1;
  }

  .intro-sub {
    font-size: 0.8rem;
  }

  .ambassador {
    flex-direction: column;
    padding: 40px 20px 0;
    gap: 30px;
    text-align: center;
  }

  .ambassador-img img {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    filter: brightness(0.9);
  }

  .ambassador-content {
    max-width: 100%;
  }

  .ambassador-content h2 {
    font-size: 1.8rem;
  }

  .ambassador-content p {
    margin-top: 10px;
    font-size: 0.95rem;
  }


  .products {
    padding: 5px 20px;
    gap: 40px;
  }

  .category {
    margin-bottom: 25px;
  }

  .category h2 {
    font-size: clamp(1.5rem, 2vw, 1.2rem);
    letter-spacing: 2px;
    padding: 6px 16px;
    opacity: 0.85;
  }

  .product-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-right: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    min-width: 60%;
    max-width: 280px;
    padding: 16px;
    scroll-snap-align: center;
  }

  .product-card img {
    max-height: 150px;
  }

  .product-bottom {
    justify-content: center;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .dot.active {
    width: 22px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }

  .trust {
    flex-direction: column;
    gap: 15px;
    padding-top: 1px;
    padding-bottom: 25px;
  }


  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    /* 👈 CLAVE */
    justify-content: center;
    gap: 10px;
  }
}