/* ==========================================================================
   Inkcap - Global Variables & Base Styles
   ========================================================================== */
:root {
  --black: #000000;
  --white: #ffffff;
  --neon: #ccff00;
  --red: #cc1111;
  --gray: #1a1a1a;
  --gray2: #111111;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
}

body.loading {
  overflow: hidden;
}

/* Texture Overlay
   ========================================================================== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .45;
}

/* Preloader
   ========================================================================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity .8s ease, visibility .8s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: clamp(160px, 38vw, 280px);
  animation: lPulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(204, 255, 0, .2));
}

.loader-bar-wrap {
  width: min(200px, 55vw);
  height: 2px;
  background: rgba(255, 255, 255, .08);
}

.loader-bar {
  height: 100%;
  background: var(--neon);
  animation: lBar 2.6s cubic-bezier(.4, 0, .2, 1) forwards;
}

.loader-pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .5em;
  color: rgba(255, 255, 255, .25);
  text-transform: uppercase;
}

@keyframes lBar {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes lPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.96); }
}

/* Navigation - Mobile
   ========================================================================== */
.nav-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
  overflow: hidden;
}

/* Urban Texture for Mobile Menu */
.nav-mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(204, 255, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.4;
}

/* Distressed/Noise overlay for menu */
.nav-mobile-menu::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

.mnav-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  width: 100%;
  opacity: 0.05;
  filter: blur(2px) grayscale(1);
  pointer-events: none;
  z-index: 1;
}

.nav-mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mnav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  padding: 0 1rem;
}

.mnav-link:hover {
  color: var(--neon);
  transform: translateX(10px);
}

.mnav-link::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--neon);
  transform: translateY(-50%) scaleX(0);
  transition: transform .3s;
}

.mnav-link:hover::before {
  transform: translateY(-50%) scaleX(1);
}

.nav-close-btn {
  position: absolute;
  top: 1.6rem;
  right: clamp(1rem, 5vw, 4rem);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, .3);
  font-size: 1.5rem;
  transition: color .25s;
}

.nav-close-btn:hover {
  color: var(--white);
}

/* Navigation - Desktop
   ========================================================================== */
.navbar-inkcap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  padding: 1.2rem clamp(1rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, padding .35s;
  border-bottom: 1px solid transparent;
}

.navbar-inkcap.scrolled {
  background: rgba(0, 0, 0, .96);
  backdrop-filter: blur(12px);
  padding-top: .85rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link-custom {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem; /* Increased for better visibility */
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85); /* Much higher opacity for readability */
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 3px;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon);
  transition: width .3s;
}

.nav-link-custom:hover {
  color: var(--white);
}

.nav-link-custom:hover::after {
  width: 100%;
}

.nav-logo-img {
  height: 95px; /* Slightly larger for better branding */
  display: block;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}

.nav-logo-img:hover {
  filter: drop-shadow(0 0 15px rgba(204, 255, 0, .6));
  transform: scale(1.05);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.95); /* High contrast */
  font-size: 2rem; /* Larger for better accessibility */
  transition: all 0.3s ease;
}

/* Hero Section
   ========================================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 0 0 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/fondo-1.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.88) 0%, rgba(0,0,0,.60) 50%, rgba(0,0,0,.30) 100%),
    linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 45%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(0,0,0,.98) 0%, transparent 100%);
}

.hero-bg-logo {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: clamp(260px, 55vw, 600px);
  opacity: .06;
  filter: blur(1px) contrast(1.3);
  pointer-events: none;
  z-index: 1;
  animation: bgDrift 12s ease-in-out infinite;
}

@keyframes bgDrift {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-52%) scale(1.02); }
}

.hero-glow {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 255, 0, .04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--neon), transparent);
  z-index: 2;
  opacity: .4;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  max-width: 760px;
}

.hero-pre-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp .5s .9s forwards;
}

.pre-tag-dot {
  width: 5px;
  height: 5px;
  background: var(--neon);
  border-radius: 50%;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .1; }
}

.hero-logo-mid {
    /* margin-bottom: 2.5rem; */
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp .7s .7s forwards;
    position: relative;
    z-index: 8;
}

.hero-logo-mid img {
  height: clamp(100px, 12vw, 180px);
  filter: drop-shadow(0 0 14px rgba(204, 255, 0, .15));
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3.8rem, 11vw, 9rem);
  line-height: .9;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s .5s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-title span {
  display: block;
}

.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp .7s .9s forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.btn-neon {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(.8rem, 1.4vw, 1rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--neon);
  color: #000;
  padding: 1.1rem 2.8rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp .7s 1.1s forwards;
}

.btn-neon:hover {
  background: #d9ff26;
  box-shadow: 0 0 30px rgba(204, 255, 0, .4);
  transform: translateY(-2px);
  color: #000;
}

/* Ticker Section
   ========================================================================== */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: #0a0a0a;
  overflow: hidden;
  padding: 1.1rem 0;
  opacity: 0;
  animation: fadeIn .5s 2.5s forwards;
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .2);
  flex-shrink: 0;
}

.ticker-item strong {
  color: var(--neon);
  font-weight: 900;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Featured Designs
   ========================================================================== */
.disenios-section {
  background: var(--black);
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.tattoo-wrap {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.mandala-circle {
  width: clamp(220px, 45vw, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(180,120,40,1) 0%, rgba(80,40,10,1) 50%, rgba(20,10,0,1) 70%),
    conic-gradient(rgba(204,255,0,0.4) 0deg, rgba(150,100,30,0.2) 30deg, rgba(204,255,0,0.4) 60deg,
      rgba(150,100,30,0.2) 90deg, rgba(204,255,0,0.4) 120deg, rgba(150,100,30,0.2) 150deg,
      rgba(204,255,0,0.4) 180deg, rgba(150,100,30,0.2) 210deg, rgba(204,255,0,0.4) 240deg,
      rgba(150,100,30,0.2) 270deg, rgba(204,255,0,0.4) 300deg, rgba(150,100,30,0.2) 330deg,
      rgba(204,255,0,0.4) 360deg);
  box-shadow: 0 0 0 1px rgba(204,255,0,0.2), 0 0 0 20px rgba(150,100,30,0.1),
    0 0 80px rgba(204,255,0,0.25), inset 0 0 50px rgba(0,0,0,0.9);
  position: relative;
  overflow: hidden;
}

.mandala-circle::before {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(204,255,0,0.3);
  box-shadow: 0 0 0 20px rgba(150,100,30,0.15), 0 0 0 40px rgba(150,100,30,0.1), 0 0 0 60px rgba(150,100,30,0.05);
}

.mandala-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.6) 0%, rgba(150, 100, 30, 0.3) 60%, transparent 100%);
  box-shadow: 0 0 0 8px rgba(204, 255, 0, 0.2), 0 0 0 16px rgba(204, 255, 0, 0.1);
}

.badge-limitada {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1.5px solid var(--red);
  padding: .35rem 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--red);
}

.badge-dot-red {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.1s infinite;
  flex-shrink: 0;
}

.disenios-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: .88;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
}

.disenios-sub {
  font-size: 1.05rem; /* Increased size */
  color: rgba(255, 255, 255, 0.75); /* Increased from 0.4 */
  line-height: 1.7;
  margin-top: 1.5rem;
  max-width: 480px;
  letter-spacing: .02em;
}

/* Event Countdown
   ========================================================================== */
.countdown-section {
  background: var(--gray2);
  text-align: center;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 6vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, .05);
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(204, 255, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 255, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(204, 255, 0, 0.06) 0%, transparent 70%);
}

.badge-countdown {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1.5px solid var(--neon);
  padding: .35rem 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(204, 255, 0, 0.05);
}

.badge-dot-neon {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--neon);
  animation: blink 1.1s infinite;
  flex-shrink: 0;
}

.countdown-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: .88;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.countdown-sub {
  font-size: 1.05rem; /* Increased size */
  color: rgba(255, 255, 255, 0.75); /* Increased from 0.4 */
  line-height: 1.7;
  margin-bottom: 4rem;
  max-width: 600px;
  letter-spacing: .02em;
  margin-left: auto;
  margin-right: auto;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 3vw, 3rem);
  flex-wrap: wrap;
  align-items: center;
}

.cd-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  min-width: 140px;
  position: relative;
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.cd-block::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 2px;
  background: var(--neon);
}

.cd-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -.02em;
  min-width: 2ch;
  text-align: center;
  transition: all 0.3s ease;
}

.cd-num.flash {
  color: var(--neon);
  transform: scale(1.05);
}
.cd-unit {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5); /* Increased from 0.2 */
  margin-top: 1rem;
}

.cd-sep {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 3rem;
  color: var(--neon);
  opacity: 0.3;
  align-self: center;
  margin-bottom: 2rem;
}

/* Brand Manifesto
   ========================================================================== */
.manifesto {
  background: var(--black);
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .05);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--neon), transparent);
  opacity: .35;
}

.manifesto-bg-logo {
  position: absolute;
  bottom: -10%;
  right: -2%;
  width: clamp(190px, 20vw, 360px);
  opacity: .035;
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.manifesto .container-fluid {
  position: relative;
  z-index: 10;
}

.manifesto-inner {
  max-width: 860px;
  position: relative;
  z-index: 20;
  transform: translateZ(10px);
}

.manifesto-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 800px;
}

.manifesto-label::before {
  display: none;
}

.manifesto-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: .9;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
}

.manifesto-quote em {
  font-style: normal;
  color: var(--neon);
}

.manifesto-meta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .18);
}

.manifesto-meta img {
  height: 20px;
  opacity: .3;
}

.manifesto-person-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 95%;
  width: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(-30px 0 60px rgba(0,0,0,0.9));
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  object-fit: contain;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (max-width: 991px) {
  .manifesto-person-img {
    height: 70%;
    opacity: 0.5;
    right: -5%;
  }
}

@media (max-width: 576px) {
  .manifesto-person-img {
    display: block;
    height: 60%;
    opacity: 0.35;
    right: -22%;
  }
}

/* Footer
   ========================================================================== */
footer {
  background: #050505;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(204, 255, 0, 0.1); /* Subtle neon top border */
}

/* Industrial Texture for Footer */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(204, 255, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 255, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
}

/* Structural Accent Strip */
footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--neon), transparent);
  opacity: 0.4;
  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
  padding: 4rem clamp(1.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
  min-width: 250px;
}

.footer-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: .5rem;
}

.footer-link {
  font-family: inherit;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--neon);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-social-icon {
  color: var(--white);
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  color: var(--neon);
  transform: translateY(-3px);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.payment-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.6);
  padding: .5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.payment-badge:hover {
  border-color: var(--neon);
  color: var(--neon);
}

/* Utility Animations
   ========================================================================== */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Product & Showcases
   ========================================================================== */
.main-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(450px, 70vh, 600px);
  width: 100%;
}

.mandala-layer {
  position: absolute;
  z-index: 1;
  opacity: 1;
  animation: rotateAura 60s linear infinite;
}

@keyframes rotateAura {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.product-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  z-index: 10;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.9));
}

.product-carousel {
  position: relative;
  width: 100%;
  max-width: 480px;
  z-index: 10;
  overflow: visible;
  animation: floating 6s ease-in-out infinite;
}

.carousel-inner-custom {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
  will-change: transform;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}

.carousel-slide:hover .product-img {
  transform: scale(1.05);
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(204, 255, 0, 0.1);
  border: 1px solid rgba(204, 255, 0, 0.3);
  color: var(--neon);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.carousel-nav-btn:hover {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

.carousel-prev { left: -60px; }
.carousel-next { right: -60px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  position: absolute;
  bottom: -40px;
  width: 100%;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--neon);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--neon);
}

.product-tag {
  position: absolute;
  top: 15%;
  right: 5%;
  background: var(--neon);
  color: #000;
  padding: 5px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(15deg);
  box-shadow: 0 5px 15px rgba(204,255,0,0.3);
  pointer-events: none;
  z-index: 15;
}

/* Responsive Overrides
   ========================================================================== */
@media (max-width: 768px) {
  .nav-left { display: none; }
  .nav-hamburger { display: block; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .cd-sep { display: none; }
  .hero { padding-bottom: 140px; justify-content: flex-end; }
  .hero-content { padding: 0 2rem; margin-top: 100px; }
  .hero-logo-mid img { height: 80px; }
  .hero-title { font-size: 3.2rem; }
  .main-showcase { min-height: 450px; }
  .product-carousel { max-width: 320px; }
  .carousel-prev { left: -10px; }
  .carousel-next { right: -10px; }
  .cd-block { min-width: 100px; padding: 1.5rem 1rem; }
}

/* Authentication Pages
   ========================================================================== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start; /* Changed from center to ensure scroll starts at top */
  justify-content: center;
  padding: 140px 20px 60px; /* Increased top padding to clear navbar */
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
    url('../images/fondo-1.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden; /* Prevent horizontal scroll from absolute elements */
}

/* Background Watermark for Auth - Repositioned and more visible */
.auth-bg-logo {
  position: absolute;
  top: 10%;
  right: -10%;
  width: min(600px, 90vw);
  opacity: 0.08; /* Increased visibility */
  pointer-events: none;
  z-index: 0;
  filter: blur(2px) contrast(1.2);
  animation: bgDrift 15s ease-in-out infinite alternate;
}

.auth-card {
  width: 100%;
  max-width: 450px;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(204, 255, 0, 0.1);
  padding: 3.5rem 2.5rem;
  position: relative;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(204,255,0,0.03);
  box-sizing: border-box; /* Force border-box */
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--neon);
}

.auth-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.auth-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7); /* Increased from 0.5 */
  margin-bottom: 2.5rem;
}

.auth-form .form-group {
  margin-bottom: 1.5rem;
}

.auth-form label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem; /* Increased from 0.75 */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85); /* Much higher contrast */
  margin-bottom: 0.8rem;
  display: block;
}

.auth-form .form-control {
  background: rgba(20, 20, 20, 0.6); /* Darker, more solid background */
  border: 1px solid rgba(255, 255, 255, 0.15); /* More visible border */
  border-radius: 4px; /* Give it a small radius for better UI */
  color: #FFFFFF; /* Absolute white */
  padding: 1rem 1.2rem; /* More breathing room */
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem; /* Larger font for readability */
  transition: all 0.3s ease;
}

.auth-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4); /* Clearer placeholders */
  font-size: 0.9rem;
}

.password-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field-wrapper .form-control {
  padding-right: 3.5rem; /* Space for the button */
  width: 100%;
}

.toggle-password {
  position: absolute;
  right: 0.8rem;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background for the icon */
  border: none;
  color: #FFFFFF; /* High contrast white */
  font-size: 1.1rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.toggle-password:hover {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 10px rgba(204, 255, 0, 0.4);
}

.auth-form .form-control:focus {
  background: rgba(0, 0, 0, 0.7); /* Keep it dark on focus to prevent contrast issues */
  border-color: var(--neon);
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.1);
  outline: none;
}

.auth-form .invalid-feedback {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 0.4rem;
}

.auth-btn-wrap {
  margin-top: 2rem;
}

.auth-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon); /* Changed for better visibility */
  text-decoration: none;
  transition: color 0.3s ease;
}

.auth-link:hover {
  color: var(--neon);
}

.auth-check-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.auth-form .form-check-input {
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  cursor: pointer;
}

.auth-form .form-check-input:checked {
  background-color: var(--neon) !important;
  border-color: var(--neon) !important;
}

/* Responsive adjustments for Auth */
@media (max-width: 480px) {
  .auth-page {
    padding-top: 110px; /* Adjusted for mobile navbar height */
    padding-bottom: 40px;
  }
  .auth-card {
    padding: 2.2rem 1.2rem;
    clip-path: none;
    margin-top: 0;
  }
  .auth-title {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
  }
  .auth-sub {
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
  }
}

/* --- PROFESSIONAL ADMIN UI --- */
.admin-section {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    background: #f4f6f9; /* Professional light gray background for admin area */
}

.admin-card-white {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    color: #333333;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.admin-card-white .auth-title {
    color: #111111 !important;
    font-weight: 800;
    font-family: 'Barlow Condensed', sans-serif;
}

.admin-card-white .auth-sub {
    color: #6c757d !important;
}

.admin-stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.admin-stat-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: #adb5bd;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.admin-stat-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #111111;
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
}

.admin-stat-icon {
    font-size: 2rem;
    color: var(--neon);
    margin-bottom: 1rem;
}

.admin-table-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Bootstrap Table Overrides */
.bootstrap-table .fixed-table-container {
    border: none !important;
}

.bootstrap-table .table thead th {
    background: #f8f9fa !important;
    color: #495057 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 15px !important;
    border-bottom: 2px solid #dee2e6 !important;
}

.bootstrap-table .table tbody td {
    padding: 15px !important;
    color: #495057;
    border-bottom: 1px solid #f1f3f5;
}

.bootstrap-table .search input {
    border-radius: 20px;
    padding: 8px 20px;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #333;
}

.text-neon-dark { color: #88aa00; } /* A more readable version for light backgrounds */
/* ==========================================================================
   Auth Navigation Highlighting
   ========================================================================== */

/* Mobile Overrides (Dentro del menú hamburguesa) */
@media (max-width: 991px) {
    .mnav-link.auth-login-link {
        font-size: 1.8rem !important;
        margin: 15px 1rem !important;
        background: var(--neon);
        color: #000 !important;
        border-radius: 8px;
        padding: 10px 25px !important;
        text-align: center;
        display: block;
        box-shadow: 0 4px 20px rgba(204, 255, 0, 0.4);
        border: none !important;
        transform: none !important;
    }
    .mnav-link.auth-login-link::before { display: none; }
    
    .mnav-link.auth-logout-link {
        font-size: 1.8rem !important;
        margin: 10px 1rem !important;
        background: rgba(255, 68, 68, 0.15);
        border: 1px solid rgba(255, 68, 68, 0.4) !important;
        color: #ff4444 !important;
        border-radius: 8px;
        padding: 10px 25px !important;
        text-align: center;
        display: block;
        transform: none !important;
    }
    .mnav-link.auth-logout-link::before { display: none; }
    
    .mnav-link.auth-login-link:hover, .mnav-link.auth-logout-link:hover {
        transform: scale(1.02) !important;
    }
}

/* Desktop Overrides */
@media (min-width: 992px) {
    .nav-link-custom.auth-login-link {
        background: var(--neon) !important;
        color: #000 !important;
        padding: 0.6rem 1.8rem !important;
        border-radius: 4px;
        font-weight: 900 !important;
        margin-left: 1.5rem;
        box-shadow: 0 0 15px rgba(204, 255, 0, 0.3);
        border: 2px solid var(--neon) !important;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .nav-link-custom.auth-login-link:hover {
        background: transparent !important;
        color: var(--neon) !important;
        box-shadow: 0 0 25px rgba(204, 255, 0, 0.6);
        transform: translateY(-3px);
    }
    
    .nav-link-custom.auth-logout-link {
        background: rgba(255, 68, 68, 0.1) !important;
        color: #ff4444 !important;
        padding: 0.6rem 1.8rem !important;
        border-radius: 4px;
        font-weight: 800 !important;
        margin-left: 0.8rem;
        border: 2px solid rgba(255, 68, 68, 0.4) !important;
        transition: all 0.3s ease;
    }
    
    .nav-link-custom.auth-logout-link:hover {
        background: #ff4444 !important;
        color: #fff !important;
        border-color: #ff4444 !important;
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    }
}

/* Vue.js Cloak to hide uncompiled templates */
[v-cloak] {
  display: none !important;
}
