/* ==========================================================================
   OKINAGUA - STYLE SYSTEM & LAYOUT (style.css)
   Pixel-Perfect Reconstruction from Scratch
   ========================================================================== */

/* Design Variables */
:root {
  --neon-green: #45ff00;
  --neon-pink: #9d00ff;
  --neon-orange: #0066ff;
  --neon-purple: #9d00ff;
  --neon-blue: #00e5ff;
  --neon-yellow: #ccff00;
  --bg-deep: #02040f;
  --border-color: rgba(255, 255, 255, 0.15);
  
  /* Typography */
  --font-serif: 'Bebas Neue', sans-serif;
  --font-sans: 'Poppins', sans-serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: #ffffff;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-deep);
  background-image: radial-gradient(circle at 50% 50%, rgba(15, 17, 28, 1) 0%, var(--bg-deep) 100%);
  color: #ffffff;
  position: relative;
  min-height: 100vh;
}

/* Global Grid Texture Overlay (Textura de cuadros) */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
  pointer-events: none;
  z-index: 0;
}

body.catalog-page,
body.product-detail-page {
  background-color: var(--bg-deep) !important;
  background-image: radial-gradient(circle at 50% 50%, rgba(15, 17, 28, 1) 0%, var(--bg-deep) 100%) !important;
}

@media (pointer: fine) {
  /* Removed cursor:none so the default mouse is always visible */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-green);
}

/* Text Selection */
::selection {
  background-color: var(--neon-pink);
  color: #ffffff;
}

/* Keyframe Animations */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse-slow {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes float-subtle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes float-esoteric {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}

@keyframes pulse-vibration {
  0%, 100% { transform: scale(0.97); opacity: 0.85; filter: drop-shadow(0 0 10px rgba(157, 0, 255, 0.3)); }
  50% { transform: scale(1.03); opacity: 1; filter: drop-shadow(0 0 30px rgba(157, 0, 255, 0.85)); }
}

@keyframes wave-scroll {
  from { stroke-dashoffset: 40; }
  to { stroke-dashoffset: 0; }
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 8px currentColor);
  }
  20%, 24%, 55% {
    opacity: 0.35;
    filter: drop-shadow(0 0 1px currentColor);
  }
}

@keyframes hue-shift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

@keyframes border-glow-pink {
  0%, 100% { 
    box-shadow: 0 0 5px rgba(157, 0, 255, 0.4), inset 0 0 5px rgba(157, 0, 255, 0.2); 
    border-color: rgba(157, 0, 255, 0.6); 
  }
  50% { 
    box-shadow: 0 0 18px rgba(157, 0, 255, 0.85), inset 0 0 8px rgba(157, 0, 255, 0.4); 
    border-color: rgba(157, 0, 255, 1); 
  }
}

@keyframes border-glow-green {
  0%, 100% { 
    box-shadow: 0 0 5px rgba(69, 255, 0, 0.4), inset 0 0 5px rgba(69, 255, 0, 0.2); 
    border-color: rgba(69, 255, 0, 0.6); 
  }
  50% { 
    box-shadow: 0 0 18px rgba(69, 255, 0, 0.85), inset 0 0 8px rgba(69, 255, 0, 0.4); 
    border-color: rgba(69, 255, 0, 1); 
  }
}

@keyframes border-glow-yellow {
  0%, 100% { 
    box-shadow: 0 0 5px rgba(204, 255, 0, 0.4), inset 0 0 5px rgba(204, 255, 0, 0.2); 
    border-color: rgba(204, 255, 0, 0.6); 
  }
  50% { 
    box-shadow: 0 0 18px rgba(204, 255, 0, 0.85), inset 0 0 8px rgba(204, 255, 0, 0.4); 
    border-color: rgba(204, 255, 0, 1); 
  }
}

@keyframes text-glow-green {
  0%, 100% { text-shadow: 0 0 3px rgba(69, 255, 0, 0.5), 0 0 8px rgba(69, 255, 0, 0.3); }
  50% { text-shadow: 0 0 8px rgba(69, 255, 0, 0.95), 0 0 18px rgba(69, 255, 0, 0.6); }
}

@keyframes text-glow-pink {
  0%, 100% { text-shadow: 0 0 3px rgba(157, 0, 255, 0.5), 0 0 8px rgba(157, 0, 255, 0.3); }
  50% { text-shadow: 0 0 8px rgba(157, 0, 255, 0.95), 0 0 18px rgba(157, 0, 255, 0.6); }
}

@keyframes shake-glitch {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2px, -1px) rotate(-0.5deg); }
  20% { transform: translate(1px, 2px) rotate(0.5deg); }
  30% { transform: translate(-1px, 1px) rotate(0deg); }
  40% { transform: translate(1.5px, -1px) rotate(-1deg); }
  50% { transform: translate(-1.5px, 1.5px) rotate(1deg); }
  60% { transform: translate(2px, 1px) rotate(0.5deg); }
  70% { transform: translate(-1px, -1.5px) rotate(-0.5deg); }
  80% { transform: translate(1px, 1px) rotate(0deg); }
  90% { transform: translate(-1.5px, -1px) rotate(1deg); }
}

@keyframes soundwave-oscillate {
  0%, 100% { transform: scaleY(0.85); }
  50% { transform: scaleY(1.25); }
}

/* WebGL Background Canvas */
#bg-webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -2;
  mix-blend-mode: screen;
}

/* Custom Brutalist Cursor */
#brutalist-cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s cubic-bezier(0.18, 0.89, 0.32, 1.28), width 0.2s, height 0.2s, border-color 0.2s;
  mix-blend-mode: difference;
}

#brutalist-cursor .cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background-color: var(--neon-pink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: scale 0.15s ease;
}

.cursor-trail-particle {
  position: fixed;
  width: 6px;
  height: 6px;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

/* Preloader Re-design (Brutalist & Premium Split Panels) */
#preloader {
  position: fixed;
  inset: 0;
  background-color: transparent !important;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
  border: none !important;
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

/* Sliding Panels */
.preloader-panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #020205;
  z-index: 1;
  transition: transform 0.9s cubic-bezier(0.86, 0, 0.07, 1);
}

.panel-left {
  left: 0;
  transform: translateX(0);
}

.panel-right {
  right: 0;
  transform: translateX(0);
}

#preloader.preloader-hidden .panel-left {
  transform: translateX(-100%);
}

#preloader.preloader-hidden .panel-right {
  transform: translateX(100%);
}

/* Lightning Flashes */
.preloader-lightning {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  animation: lightning-strike 6s infinite ease-in-out;
}

.preloader-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.15) 0%, rgba(0, 229, 255, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: glow-surge 6s infinite ease-in-out;
}

.preloader-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

#preloader.preloader-hidden .preloader-content {
  opacity: 0;
  transform: scale(1.15);
  filter: blur(15px);
}

/* Atom container styling */
.preloader-atom-container {
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Loading Bar */
.preloader-progress-wrap {
  width: 320px;
  max-width: 75vw;
}

.preloader-bar {
  width: 100%;
  height: 6px;
  background: #272730;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #9d00ff, #d814ff);
  box-shadow: 0 0 12px #9d00ff, 0 0 20px #d814ff;
  border-radius: 10px;
  transition: width 0.1s cubic-bezier(0.1, 0.8, 0.25, 1);
}

.preloader-text {
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 1.15rem;
  color: #d814ff;
  text-shadow: 0 0 8px rgba(216, 20, 255, 0.6);
  letter-spacing: 0.15em;
  font-weight: 700;
}

/* Lightning Strike & Shake Keyframes */
@keyframes lightning-strike {
  0%, 94%, 98%, 100% { opacity: 0; }
  95% { opacity: 0.85; background: #ffffff; }
  96% { opacity: 0.2; }
  97% { opacity: 0.95; background: #e5ccff; }
}

@keyframes glow-surge {
  0%, 94%, 100% {
    transform: scale(1);
    background: radial-gradient(circle, rgba(157, 0, 255, 0.15) 0%, rgba(0, 229, 255, 0.05) 50%, transparent 70%);
  }
  95%, 97% {
    transform: scale(1.3);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(157, 0, 255, 0.4) 40%, rgba(0, 229, 255, 0.2) 60%, transparent 80%);
  }
  96% {
    transform: scale(1.1);
  }
}



/* Premium Glassmorphic Header (Electriclights Style) */
.site-header-pill {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2600;
  background: rgba(4, 2, 10, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0), 0 0 30px rgba(157, 0, 255, 0);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header-pill.scrolled {
  background: rgba(4, 2, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(157, 0, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(157, 0, 255, 0.2);
}

.site-header-pill.scrolled .header-pill-container {
  padding: 0.5rem 4%;
}

.header-pill-container {
  padding: 0.8rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.logo-group-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-text-pill {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #ffffff;
}

/* Nav Menu Pill */
.desktop-nav-pill ul {
  display: flex;
  gap: 0.8rem;
}

.nav-link-pill {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link-pill::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #BD2FFF; /* Purple */
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--neon-purple);
}

.nav-link-pill:hover::after,
.nav-link-pill.active::after {
  width: 100%;
}

.nav-link-pill:hover,
.nav-link-pill.active {
  color: #9d00ff;
  text-shadow: 0 0 12px rgba(157, 0, 255, 0.7);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

/* Header CTA Button */
.header-contact-btn {
  background: transparent;
  color: #ffffff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0; /* Square edges */
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-contact-btn:hover {
  background: var(--neon-orange); /* Magic Blue */
  border-color: var(--neon-orange);
  box-shadow: 0 0 15px var(--neon-orange);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 2700;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn .bar {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-menu-btn.active .bar-top {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .bar-mid {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active .bar-bot {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background-color: rgba(3, 5, 7, 0.82) !important;
  z-index: 2500 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

.mobile-nav-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-nav ul,
.mobile-nav-content ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #b030ff;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 70px;
  overflow: hidden;
  z-index: 10;
}

/* Subtle blueprint technical grid background overlay removed */

.distressed-text {
  font-family: var(--font-serif) !important;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  filter: url(#rough-edges);
  -webkit-font-smoothing: antialiased;
}

/* Combined Tank Gauge (Measurement Gauge Layout on Left) */
.tank-gauge-container {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.88);
  width: 90px;
  z-index: 20;
}

.tank-gauge-cell {
  padding: 0.8rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.tank-gauge-cell:last-child {
  border-bottom: none;
}

.tank-gauge-label {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-transform: uppercase;
}

/* ConcentraciÃ³n cell */
.tank-gauge-cell.concentracion {
  border-top: 3px solid var(--neon-green);
}

/* Alquimia cell */
.tank-gauge-cell.alquimia {
  border-top: 3px solid var(--neon-pink);
  padding: 1.5rem 0.5rem;
}
.tank-gauge-cell.alquimia .vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: #ffffff;
}

/* Frecuencia cell */
.tank-gauge-cell.frecuencia {
  border-top: 3px solid var(--neon-orange);
}
.tank-gauge-cell.frecuencia svg path {
  stroke-dasharray: 8 2;
  animation: wave-scroll 2.5s linear infinite;
}

/* Combined Bust Gauge on Right */
.bust-gauge-container {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.88);
  width: 90px;
  z-index: 20;
}

.bust-gauge-cell {
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bust-gauge-cell.vibracion {
  border-top: 3px solid var(--neon-yellow);
}

.bust-gauge-cell.vibracion .vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: #ffffff;
}

/* Hero Stamps */
.stamp-iluminado {
  border: 3px double var(--neon-pink);
  color: var(--neon-pink);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  padding: 0.6rem 1.2rem;
  background: rgba(0, 0, 0, 0.9);
  text-transform: uppercase;
  display: inline-block;
  transform: rotate(-15deg);
  box-shadow: 0 0 15px rgba(157, 0, 255, 0.15);
  z-index: 20;
}

/* SVG Circular stamp for Como es Arriba es Abajo */
.stamp-arriba-abajo-svg {
  width: 105px;
  height: 105px;
  z-index: 20;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 4px 4px 0px var(--neon-yellow);
  transform: rotate(8deg);
}

.stamp-arriba-abajo-svg text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 5.5px;
  letter-spacing: 1.1px;
  fill: #ffffff;
  text-transform: uppercase;
}

/* Hero Sticker */
.sticker-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  margin-bottom: 1.4rem;
}

.sticker-pink {
  background: var(--neon-pink);
  color: #ffffff;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
  border: 1px solid #ffffff;
}

.sticker-black {
  background: #000000;
  color: #ffffff;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sticker-black span.highlight {
  background: var(--neon-green);
  color: #000000;
  padding: 0.1rem 0.5rem;
  font-weight: 900;
}

/* Hero Outline Button */
.btn-hero-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
}

.btn-hero-outline:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Torn Paper divider & Marquee */
.torn-divider {
  background-color: #C038EE;
  position: relative;
  padding: 1.5rem 0;
  z-index: 20;
}

.marquee-container {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-left: 2.5rem; /* Matches the gap so it loops perfectly */
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.torn-edge-top,
.torn-edge-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 10px;
  background-repeat: repeat-x;
  background-size: 20px 10px;
  pointer-events: none;
}

.torn-edge-top {
  top: -9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10' fill='%23C038EE'%3E%3Cpolygon points='0,10 5,0 10,8 15,3 20,10'/%3E%3C/svg%3E");
}

.torn-edge-bottom {
  bottom: -9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10' fill='%23C038EE'%3E%3Cpolygon points='0,0 5,10 10,2 15,7 20,0'/%3E%3C/svg%3E");
}

/* ==========================================================================
   NEW LAYOUT & REDESIGN SECTIONS
   ========================================================================== */

/* Hero Section Base */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 90px;
  background-size: cover;
  background-position: center;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-section {
    height: 100vh;
    padding: 0;
    overflow: hidden;
  }
  .hero-container {
    position: relative;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden;
  }
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  pointer-events: none;
}

/* Rotating Badge */
.rotating-badge-wrap {
  width: 160px;
  height: 160px;
  color: #000000;
  background-color: var(--neon-blue);
  border-radius: 50%;
  filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
  pointer-events: none;
}

.rotating-badge-text {
  animation: badge-rotate 16s linear infinite;
  transform-origin: center;
}

.badge-text-path {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11.2px;
  letter-spacing: 0.23em;
  fill: currentColor;
}

.badge-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes badge-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Blueprint overlay grid line design removed */

.hero-container {
  z-index: 10;
}

/* Rough paper grain / distressed edges */
.distressed-text {
  filter: url(#rough-edges);
  letter-spacing: -0.05em;
  -webkit-font-smoothing: antialiased;
}

/* Left Column Gauge Widget */
.tank-gauge-container {
  display: flex;
  flex-direction: column;
  width: 96px;
  z-index: 20;
}

.tank-gauge-cell {
  padding: 1rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tank-gauge-label {
  font-weight: 700;
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  color: #888888;
  text-transform: uppercase;
}

/* Cell specific borders */
.tank-gauge-cell:first-child {
  border-top: 3px solid var(--neon-green);
}

.tank-gauge-cell:nth-child(2) {
  border-top: 3px solid var(--neon-pink);
}

.tank-gauge-cell:last-child {
  border-top: 3px solid var(--neon-orange);
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: #ffffff;
}

.wave-svg path {
  stroke: var(--neon-orange);
  stroke-dasharray: 8 2;
  animation: wave-scroll 2.5s linear infinite;
}

@keyframes wave-scroll {
  from { stroke-dashoffset: 40; }
  to { stroke-dashoffset: 0; }
}

.tank-img-wrapper {
  perspective: 1000px;
}

.tank-img-wrapper img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.tank-img-wrapper:hover img {
  transform: scale(1.04) rotateY(-5deg);
}

/* Center Column Title and stickers */
.occult-symbol-container svg {
  transform-origin: center;
}

.taller-banner {
  box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.1);
}

/* Stickers block */
.sticker-stack {
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

.sticker-pink {
  transform: rotate(-1.5deg);
}

.sticker-black {
  transform: rotate(1.2deg);
}

/* Explore CTA Button */
.btn-hero-explore {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  padding: 0.95rem 2.4rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.25s ease;
}

.btn-hero-explore:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.explore-asterisk {
  font-size: 0.88rem;
}

/* Right Column Widgets and Stamps */
.sculpture-img-wrapper {
  perspective: 1000px;
}

.sculpture-img-wrapper img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.sculpture-img-wrapper:hover img {
  transform: scale(1.04) rotateY(5deg);
}

/* Circular Stamp: ILUMINADO */
.stamp-iluminado {
  border: 3px double var(--neon-pink);
  color: var(--neon-pink);
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  padding: 0.6rem 1.3rem;
  background: rgba(0, 0, 0, 0.9);
  text-transform: uppercase;
  display: inline-block;
  transform: rotate(-14deg);
  box-shadow: 0 0 15px rgba(157, 0, 255, 0.2);
  z-index: 20;
  animation: float-badge 6s ease-in-out infinite alternate;
}

@keyframes float-badge {
  0% { transform: rotate(-14deg) translateY(0); }
  100% { transform: rotate(-11deg) translateY(-6px); }
}

/* Bust Gauge */
.bust-gauge-container {
  display: flex;
  flex-direction: column;
  width: 96px;
  z-index: 20;
}

.bust-gauge-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bust-gauge-cell:first-child {
  border-top: 3px solid var(--neon-yellow);
}

.vibracion-svg {
  animation: pulse-vibracion 2.5s ease-in-out infinite;
}

@keyframes pulse-vibracion {
  0%, 100% { opacity: 0.7; transform: scaleY(0.95); }
  50% { opacity: 1; transform: scaleY(1.05); }
}

/* Circular Stamp: Como es Arriba es Abajo */
.stamp-arriba-abajo {
  z-index: 20;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 4px 4px 0px var(--neon-yellow);
  transform: rotate(8deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stamp-arriba-abajo:hover {
  transform: rotate(18deg) scale(1.05);
  box-shadow: 6px 6px 0px var(--neon-pink);
}



/* -------------------------------------------------------------------------- */
/* Features Divider Row */
/* -------------------------------------------------------------------------- */
.features-divider-row {
  background-color: transparent;
  padding: 4rem 2rem;
  margin-top: -100px;
  margin-bottom: 50px;
  position: relative;
  z-index: 20;
}

.features-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 1.5rem;
}

.feature-col {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: crosshair;
}

.feature-icon-wrap,
.feature-col h3,
.feature-col p {
  position: relative;
  z-index: 10;
  pointer-events: none;
}

.feature-col:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.05);
}

/* Static ambient glows inside the card */
.card-glow-1 {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  filter: blur(48px);
  background: rgba(157, 0, 255, 0.15); /* Neon Purple */
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.card-glow-2 {
  position: absolute;
  bottom: -6rem;
  left: -6rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  filter: blur(48px);
  background: rgba(157, 0, 255, 0.08); /* Neon Pink */
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.feature-col:hover .card-glow-1, .catalog-card:hover .card-glow-1 { opacity: 0.25; }
.feature-col:hover .card-glow-2, .catalog-card:hover .card-glow-2 { opacity: 0.15; }

/* Mouse follow glow (Volumetric center light) */
.mouse-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.05s ease;
  z-index: 2;
  background: radial-gradient(circle at calc(var(--mouse-x, 50) * 1%) calc(var(--mouse-y, 50) * 1%), rgba(157, 0, 255, 0.15) 0%, transparent 60%),
              radial-gradient(circle at calc(var(--mouse-x, 50) * 1%) calc(var(--mouse-y, 50) * 1%), rgba(157, 0, 255, 0.12) 0%, transparent 65%);
  transform: translate(-50%, -50%);
}

.feature-col:hover .mouse-glow, .catalog-card:hover .mouse-glow {
  opacity: 1;
}

/* Mouse follow tech grid pattern */
.mouse-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  background-image: linear-gradient(to right, rgba(0, 229, 255, 0.04) 1px, transparent 1px), 
                    linear-gradient(to bottom, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at calc(var(--mouse-x, 50) * 1%) calc(var(--mouse-y, 50) * 1%), black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(circle at calc(var(--mouse-x, 50) * 1%) calc(var(--mouse-y, 50) * 1%), black 0%, transparent 60%);
}

.feature-col:hover .mouse-grid, .catalog-card:hover .mouse-grid {
  opacity: 0.4;
}

/* Mouse follow glowing border */
.mouse-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  padding: 1px;
  z-index: 4;
  background: radial-gradient(circle at calc(var(--mouse-x, 50) * 1%) calc(var(--mouse-y, 50) * 1%), rgba(0, 229, 255, 0.5) 0%, transparent 50%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
}

.feature-col:hover .mouse-border, .catalog-card:hover .mouse-border {
  opacity: 1;
}

.feature-icon-wrap {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  animation: float-subtle 4s ease-in-out infinite;
}

.feature-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.feature-col.pink .feature-icon-wrap {
  color: var(--neon-pink);
  filter: drop-shadow(0 0 5px rgba(157, 0, 255, 0.4));
}

.feature-col.yellow .feature-icon-wrap {
  color: var(--neon-yellow);
  filter: drop-shadow(0 0 5px rgba(204, 255, 0, 0.4));
}

.feature-col.green .feature-icon-wrap {
  color: var(--neon-green);
  filter: drop-shadow(0 0 5px rgba(69, 255, 0, 0.4));
}

.feature-col h3 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.feature-col p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 240px;
}


/* -------------------------------------------------------------------------- */
/* Products Catalog Section */
/* -------------------------------------------------------------------------- */
.catalog-section {
  background-color: transparent;
  position: relative;
  z-index: 10;
  padding: 5rem 0;
}

.catalog-section::before {
  display: none;
}

.catalog-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.04) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.catalog-tag {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--neon-blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.catalog-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 10;
}

/* ==========================================================================
   PREMIUM GLASSMORPHIC CATALOG CARDS
   ========================================================================== */
.catalog-card-pro {
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.catalog-card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.catalog-card-pro:hover {
  transform: translateY(-8px);
  border-color: var(--neon-purple);
  box-shadow: 0 20px 40px rgba(157, 0, 255, 0.18);
}

.catalog-card-visual-wrap-pro {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(157, 0, 255, 0.08), rgba(0, 0, 0, 0.8));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.4s ease;
}

.catalog-card-pro:hover .catalog-card-visual-wrap-pro {
  border-color: var(--neon-purple);
}

.catalog-card-img-pro {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
  filter: contrast(1.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-card-pro:hover .catalog-card-img-pro {
  transform: scale(1.06);
  filter: contrast(1.1);
}

.catalog-card-esoteric-svg-pro {
  width: 55%;
  height: 55%;
  color: var(--neon-blue);
  opacity: 0.25;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  animation: spin-slow 60s linear infinite;
  z-index: 5;
}

.catalog-card-pro:hover .catalog-card-esoteric-svg-pro {
  opacity: 0.7;
  transform: scale(1.06);
  color: var(--neon-purple);
}

.catalog-card-info-pro {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: transparent;
}

.catalog-card-category-pro {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--neon-blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.catalog-card-title-pro {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.catalog-card-price-pro {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--neon-blue);
  margin-top: auto;
  margin-bottom: 1.25rem;
}

.catalog-card-action-btn-pro {
  width: 100%;
  padding: 1rem;
  background: transparent;
  color: #fff;
  width: calc(100% - 2rem);
  margin: 0 auto 1.25rem auto;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-card-action-btn-pro::after {
  content: '';
  position: absolute;
  right: 1.5rem;
  width: 1.1rem;
  height: 1.1rem;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-card-pro:hover .catalog-card-action-btn-pro {
  background: var(--neon-purple);
  color: #fff;
  border-color: var(--neon-purple);
  box-shadow: 0 0 15px rgba(157, 0, 255, 0.4);
  padding-right: 2.2rem;
  padding-left: 0.85rem;
}
.catalog-card-pro:hover .catalog-card-action-btn-pro::after {
  opacity: 1;
  transform: translateX(0);
}

.catalog-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}


/* -------------------------------------------------------------------------- */
/* Nosotros Section */
/* -------------------------------------------------------------------------- */
.nosotros-section {
  background-color: #ffffff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
  z-index: 10;
  padding: 5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.nosotros-glow {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.04) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.nosotros-tag {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  color: var(--neon-purple);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.nosotros-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  color: #111111;
  text-transform: uppercase;
  line-height: 1.1;
}

.nosotros-title span.nosotros-highlight {
  background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.nosotros-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.7;
  color: #333333;
}

.nosotros-btn {
  color: var(--neon-purple);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nosotros-btn:hover {
  text-shadow: 0 0 6px var(--neon-purple);
  transform: translateX(4px);
}

/* Nosotros Video Frame */
.nosotros-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #080808;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

/* Double glowing neon border system */
.nosotros-video-border-outer {
  padding: 4px;
  background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-purple) 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(157, 0, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: border-glow-pink 8s infinite alternate ease-in-out;
}

.nosotros-video-border-outer:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(157, 0, 255, 0.25);
}

.nosotros-video-border-inner {
  padding: 4px;
  background: #000000;
  border-radius: 12px;
}

.nosotros-video-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000000;
}

.nosotros-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: grayscale(20%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.nosotros-video-content:hover .nosotros-video-img {
  transform: scale(1.04);
  filter: grayscale(0%);
  opacity: 0.8;
}

.nosotros-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(157, 0, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 15;
  text-decoration: none;
}

.nosotros-video-content:hover .nosotros-video-play-btn {
  background-color: var(--neon-purple);
  border-color: var(--neon-purple);
  color: #ffffff;
  box-shadow: 0 0 30px rgba(157, 0, 255, 0.6);
  transform: translate(-50%, -50%) scale(1.1);
}

.nosotros-video-subtext {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 15;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  pointer-events: none;
}


/* -------------------------------------------------------------------------- */
/* Projects Section */
/* -------------------------------------------------------------------------- */
.projects-section {
  background-color: #fcfcfc;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  position: relative;
  z-index: 10;
  padding: 5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.projects-glow {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.03) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.projects-tag {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--neon-green);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.projects-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: -0.01em;
  color: #111111;
  text-transform: uppercase;
  line-height: 1.1;
}

.projects-title span.green {
  color: #000000;
  text-shadow: 2px 2px 0px var(--neon-green);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 10;
}

.project-card-neon {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.75rem;
  transition: all 0.35s ease;
  position: relative;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.9);
}

.project-card-neon.green-glow {
  border-color: rgba(69, 255, 0, 0.25);
}
.project-card-neon.pink-glow {
  border-color: rgba(157, 0, 255, 0.25);
}
.project-card-neon.orange-glow {
  border-color: rgba(0, 102, 255, 0.25);
}
.project-card-neon.purple-glow {
  border-color: rgba(170, 0, 255, 0.25);
}

.project-card-neon:hover {
  transform: translateY(-4px);
}

.project-card-neon.green-glow:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 20px rgba(69, 255, 0, 0.35);
}
.project-card-neon.pink-glow:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(157, 0, 255, 0.35);
}
.project-card-neon.orange-glow:hover {
  border-color: var(--neon-orange);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.35);
}
.project-card-neon.purple-glow:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(170, 0, 255, 0.35);
}

.project-card-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.project-card-neon.green-glow .project-card-img { filter: sepia(100%) hue-rotate(60deg) saturate(500%) contrast(1.2); }
.project-card-neon.pink-glow .project-card-img { filter: sepia(100%) hue-rotate(290deg) saturate(600%) contrast(1.5); }
.project-card-neon.orange-glow .project-card-img { filter: sepia(100%) hue-rotate(350deg) saturate(400%) contrast(1.3); }
.project-card-neon.purple-glow .project-card-img { filter: sepia(100%) hue-rotate(230deg) saturate(500%) contrast(1.4); }

.project-card-neon:hover .project-card-img {
  transform: scale(1.1);
  filter: sepia(0) saturate(1.5);
}

.project-card-info {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.project-card-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #111111;
  text-transform: uppercase;
}

.project-card-desc {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--neon-green);
  text-transform: uppercase;
}

.project-card-neon.pink-glow .project-card-desc {
  color: var(--neon-pink);
}
.project-card-neon.orange-glow .project-card-desc {
  color: var(--neon-orange);
}
.project-card-neon.purple-glow .project-card-desc {
  color: var(--neon-purple);
}

.projects-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}


/* -------------------------------------------------------------------------- */
/* Contact & Esoteric CTA Section */
/* -------------------------------------------------------------------------- */
.contact-cta-section {
  background-color: transparent;
  position: relative;
  z-index: 10;
  padding: 7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.contact-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(69, 255, 0, 0.03) 0%, rgba(157, 0, 255, 0.03) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  position: relative;
  z-index: 10;
}

.contact-esoteric-side {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.contact-esoteric-side svg {
  width: 90%;
  max-width: 240px;
  height: auto;
  opacity: 0.35;
  transition: all 0.5s ease;
  animation: float-esoteric 6s ease-in-out infinite;
}

.contact-esoteric-side.left svg {
  color: var(--neon-purple);
  filter: drop-shadow(0 0 20px rgba(170, 0, 255, 0.35));
}

.contact-esoteric-side.right svg {
  color: var(--neon-yellow);
  filter: drop-shadow(0 0 20px rgba(204, 255, 0, 0.35));
}

.contact-cta-grid:hover .contact-esoteric-side.left svg {
  opacity: 0.65;
  color: var(--neon-pink);
  filter: drop-shadow(0 0 30px rgba(157, 0, 255, 0.55));
}

.contact-cta-grid:hover .contact-esoteric-side.right svg {
  opacity: 0.65;
  color: var(--neon-green);
  filter: drop-shadow(0 0 30px rgba(69, 255, 0, 0.55));
}

.contact-cta-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.contact-cta-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
}

.contact-cta-title span.green {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(69, 255, 0, 0.4);
}

.contact-cta-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 380px;
}

.contact-cta-btn {
  background: transparent;
  color: var(--neon-green);
  border: 2px solid var(--neon-green);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(69, 255, 0, 0.15);
}

.contact-cta-btn:hover {
  background: var(--neon-green);
  color: #000000;
  box-shadow: 0 0 25px rgba(69, 255, 0, 0.6);
  transform: scale(1.03);
}


/* -------------------------------------------------------------------------- */
/* Footer Redesign */
/* -------------------------------------------------------------------------- */
.footer-neon {
  background: 
    radial-gradient(circle 500px at 0% 100%, rgba(157, 0, 255, 0.2), transparent 80%),
    radial-gradient(circle 500px at 100% 100%, rgba(157, 0, 255, 0.2), transparent 80%),
    #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 2.2rem 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.footer-neon::before {
  content: none; /* Removed duplicate grid to prevent moiré effect with body::before grid */
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.58rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1;
}

.footer-logo-tagline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--neon-green);
  text-transform: uppercase;
}

.footer-logo-desc {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 220px;
}

.footer-col-nav h4 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.footer-col-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-col-nav ul a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col-nav ul a:hover {
  color: var(--neon-green);
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 0; /* Square edges */
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.footer-social-btn:hover {
  color: var(--neon-green);
  border-color: var(--neon-green);
  box-shadow: 0 0 10px rgba(69, 255, 0, 0.4);
  transform: translateY(-2px);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-sans);
}

.footer-bottom-bar a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-bar a:hover {
  color: var(--neon-green);
}

/* Floating back-to-top button */
.floating-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 0; /* Square edges */
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  box-shadow: 0 0 15px rgba(69, 255, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.floating-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.floating-top-btn:hover {
  background: var(--neon-green);
  color: #000000;
  box-shadow: 0 0 25px var(--neon-green);
  transform: translateY(-4px);
}


/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLING)
   ========================================================================== */
@media (max-width: 900px) {
  .features-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .catalog-nav-btn {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-esoteric-banner-left {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-bg-video {
    object-position: right center !important;
  }
  .hero-gradient-overlay {
    background: linear-gradient(to top, rgba(3, 5, 7, 0.95) 0%, rgba(3, 5, 7, 0.6) 45%, rgba(3, 5, 7, 0) 100%) !important;
  }
  .hero-section {
    min-height: 72vh !important;
    height: 72vh !important;
    padding-top: 90px !important;
    padding-bottom: 30px !important;
  }
  .hero-container {
    height: 100% !important;
    min-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding-bottom: 20px !important;
  }
  .features-grid-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 100%;
  }
  .catalog-card-pro {
    min-height: auto !important;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 100%;
  }
  .contact-cta-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-esoteric-side.left {
    order: 2;
  }
  .contact-cta-center {
    order: 1;
  }
  .contact-esoteric-side.right {
    order: 3;
  }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-social-icons {
    justify-content: center;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   STANDARDIZED BUTTONS (BRUTALIST SQUARE)
   ========================================================================== */
.btn-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
}

.btn-square::after {
  content: '';
  position: absolute;
  right: 1.2rem;
  width: 1.1rem;
  height: 1.1rem;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-square:hover {
  padding-left: 1.5rem;
  padding-right: 3.5rem;
}

.btn-square:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.btn-square-blue {
  background-color: var(--neon-blue);
  color: #000;
  border-color: var(--neon-blue);
  box-shadow: 4px 4px 0 rgba(0, 229, 255, 0.3);
}
.btn-square-blue:hover {
  background-color: transparent;
  color: var(--neon-blue);
  box-shadow: 0 0 0 rgba(0, 229, 255, 0);
}

.btn-square-pink {
  background-color: var(--neon-pink);
  color: #fff;
  border-color: var(--neon-pink);
  box-shadow: 4px 4px 0 rgba(255, 0, 255, 0.3);
}
.btn-square-pink:hover {
  background-color: transparent;
  color: var(--neon-pink);
  box-shadow: 0 0 0 rgba(255, 0, 255, 0);
}

.btn-square-green {
  background-color: var(--neon-green);
  color: #000;
  border-color: var(--neon-green);
  box-shadow: 4px 4px 0 rgba(69, 255, 0, 0.3);
}
.btn-square-green:hover {
  background-color: transparent;
  color: var(--neon-green);
  box-shadow: 0 0 0 rgba(69, 255, 0, 0);
}

.btn-square-white {
  background-color: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.3);
}
.btn-square-white:hover {
  background-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}


/* --- PRODUCT CATALOG & ADMIN PANEL EXPANSIONS --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.product-image-container {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: #f9fafb;
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-info {
  padding: 1.8rem;
  padding-right: 3.5rem;
  position: relative;
  border-top: 1px solid #f3f4f6;
  flex-grow: 1;
}

.product-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #111827;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.product-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.5;
  color: #6b7280;
}

.product-link {
  position: absolute;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  transition: var(--transition-fast);
  z-index: 2;
}

/* Stretched link: makes the entire card clickable */
.product-card-link {
  position: absolute;
  inset: 0;
  z-index: 10;
}

/* Product Card Hover States */
.product-card {
  cursor: pointer;
  border-radius: 6px; /* Subtle premium rounding */
}

/* Subtle overlay on the image container for depth */
.product-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(15,23,42,0.15) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.product-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 40px 80px rgba(6, 40, 90, 0.12);
  transform: translateY(-12px);
}

.product-card:hover .product-image-container::after {
  opacity: 1;
}

.product-card:hover .product-img {
  transform: scale(1.08); /* More dramatic zoom */
}

.product-card:hover .product-link {
  background-color: #111827;
  color: #ffffff;
  border-color: #111827;
  transform: translate(4px, -4px) scale(1.15); /* Snappy jump outward */
  box-shadow: -4px 4px 15px rgba(15, 23, 42, 0.2);
}

.product-detail-page {
  padding-top: 80px; /* Make space for fixed header */
  background-color: var(--color-bg-base);
}

.detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
  width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #9ca3af;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.breadcrumb-nav a {
  color: #6b7280;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #111827;
}

.breadcrumb-separator {
  color: #d1d5db;
}

.breadcrumb-current {
  color: #111827;
}

/* Back Link */
.back-to-catalog {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #111827;
  transition: color 0.3s ease;
  margin-bottom: 3.5rem;
}

.back-to-catalog svg {
  transition: transform 0.3s ease;
}

.back-to-catalog:hover {
  color: #4b5563;
}

.back-to-catalog:hover svg {
  transform: translateX(-4px);
}

/* Main Detail Grid */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}

/* Gallery Column */
.detail-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 120px;
}

.main-image-viewport {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  overflow: hidden;
}

.main-image-viewport img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-thumbnails-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.thumbnail-card {
  width: 75px;
  aspect-ratio: 4/5;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.thumbnail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-card:hover {
  border-color: #9ca3af;
  transform: translateY(-2px);
}

.thumbnail-card.active {
  border-color: #111827;
  box-shadow: 0 0 0 1px #111827;
}

/* Info Column */
.detail-info-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.product-detail-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.8rem;
}

.product-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #111827;
  text-transform: uppercase;
  line-height: 1.2;
}

.product-detail-description {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 2.5rem;
}

/* Highlights Box */
.highlights-box {
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 2rem;
  width: 100%;
  margin-bottom: 3rem;
}

.highlights-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #111827;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.highlights-list {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.highlights-list li {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: #475569;
  list-style-type: circle;
}

/* Action Buttons */
.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  width: 100%;
}

.detail-btn svg {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.detail-btn-primary {
  background-color: #22cc52;
  color: #ffffff;
  border: 1px solid #22cc52;
}

.detail-btn-primary:hover {
  background-color: transparent;
  color: #111827;
}

.detail-btn-primary:hover svg {
  transform: scale(1.15);
}

.detail-btn-secondary {
  background-color: transparent;
  color: #4b5563;
  border: 1px solid #d1d5db;
}

.detail-btn-secondary:hover {
  border-color: #111827;
  color: #111827;
}

.detail-btn-secondary:hover svg {
  transform: translateX(4px);
}

/* Specifications Table */
.specifications-section {
  padding: 8rem 0;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.specs-table th {
  background-color: #f8fafc;
  color: #111827;
  padding: 1.4rem 1.8rem;
  border-bottom: 2px solid #e2e8f0;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.specs-table td {
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  line-height: 1.6;
  font-weight: 300;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:nth-child(even) td {
  background-color: #f8fafc;
}

.spec-label {
  width: 30%;
  font-weight: 500;
  color: inherit;
}

/* Related Section */
.related-section {
  padding: 8rem 0;
}

/* Not Found Screen */
.full-height-centered {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.not-found-content {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-icon {
  color: #ef4444;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.error-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.error-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.error-redirect {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ----------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ---------------------------------------------------- */

/* Desktops and Laptops (Medium-Wide) */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1.3fr 0.7fr;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
  }
  .footer-col.brand-col {
    grid-column: span 4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
    margin-bottom: 1rem;
  }
}

/* Tablets (Portrait & Landscape) */
@media (max-width: 1024px) {
  .site-header {
    padding: 0rem 0;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    min-height: 80vh;
    padding-top: 4vh;
  }

  .hero-content-left {
    max-width: 100%;
  }

  .hero-tank-watermark {
    top: 55%;
    transform: translate(-50%, -50%) scale(0.85);
  }

  .desktop-nav ul {
    gap: 1.5rem;
  }

  /* Grid Conversions for Tablets */
  .grid-two-columns {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-media {
    order: -1; /* Welder image on top of text on tablets */
  }

  .cta-visual {
    margin-top: 2rem;
  }
}

/* Mobile Screens (Landscape & Portrait) */
@media (max-width: 768px) {
  section, 
  .section-light, 
  .section-dark {
    padding: 4rem 0 !important;
  }

  .cta-section {
    padding: 6rem 0 10rem 0;
  }

  .waves-container {
    height: 70px;
  }

  /* Product Detail Mobile Overrides */
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .detail-gallery-col {
    position: static;
  }

  .spec-label {
    width: 40%;
  }

  .specs-table th, .specs-table td {
    padding: 1rem 1.2rem;
    font-size: 0.85rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
  .hero-container {
    grid-template-columns: 1fr;
    align-content: flex-end;
    padding-bottom: 7vh; /* Push text down */
  }

  .bottom-left-discover {
    display: none !important;
  }

  .bottom-gradient {
    display: block !important;
    height: 45vh;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
  }

  /* Add 20% black overlay to hero video on mobile */
  .video-background-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1; /* Place over video */
    pointer-events: none;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  /* Hide center watermark on mobile as it conflicts with text overlays */
  .hero-tank-watermark {
    display: none;
  }

  .hero-bottom-indicators {
    bottom: 3%;
  }

  /* Make indicators smaller and cleaner on mobile */
  .indicator-line {
    height: 35px;
  }
  
  .discover-text, .scroll-text {
    font-size: 0.6rem;
  }
  
  .scroll-mouse-icon {
    width: 14px;
    height: 22px;
  }
  
  .mouse-wheel {
    top: 4px;
    height: 4px;
  }

  /* Footer responsive grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-col.brand-col {
    grid-column: span 2;
  }
}

/* Ultra Small Screens */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
    letter-spacing: 0.03em;
  }
  
  .brand-name {
    font-size: 1.15rem;
  }
  
  .tagline {
    font-size: 0.5rem;
  }

  .cta-btn {
    width: 100%;
    justify-content: space-between;
  }
  
  .cta-underline {
    width: 100%;
  }
  
  /* Simplify bottom indicators on mobile devices */
  .bottom-right-scroll {
    display: none; /* Hide scroll mouse on very small screens, keep discover */
  }
  
  .hero-bottom-indicators {
    justify-content: center;
  }

  /* Stack grids completely on small mobile */
  .features-grid,
  .projects-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Keep products in 2 columns on small mobile and scale down card contents */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-info {
    padding: 1rem;
    padding-right: 2.5rem;
  }

  .product-title {
    font-size: 0.85rem;
  }

  .product-price {
    font-size: 1rem !important;
  }

  .product-link {
    bottom: 1rem;
    right: 0.8rem;
    width: 26px;
    height: 26px;
  }

  .footer-col.brand-col {
    grid-column: span 1;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
	padding-bottom: 3rem;
  }
}

/* ==========================================================================
   Catalog Category Filters Styles
   ========================================================================== */

.category-filters-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  width: 100%;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  background-color: #f8fafc;
  padding: 0.5rem;
  border-radius: 50px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.filter-btn {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #64748b;
  background: transparent;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
  color: #0f172a;
}

.filter-btn.active {
  color: #ffffff;
  background-color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.mobile-bottom-nav, .sheet-overlay {
  display: none;
}

@media (max-width: 768px) {
  /* Mobile Filter Bottom Sheet */
  .category-filters-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background-color: #ffffff;
    padding: 2rem 1.5rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    margin: 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
    transform: translateY(110%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    visibility: hidden;
  }
  .category-filters-container.sheet-active {
    transform: translateY(0);
    visibility: visible;
  }
  .sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  .sheet-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Fix stacking context on mobile so sheet goes over bottom nav */
  .catalog-grid-section {
    z-index: auto !important;
  }
  
  /* Mobile Bottom Navigation Bar */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(3, 5, 7, 0.88);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
    z-index: 1990;
    justify-content: space-around;
    align-items: center;
    padding: 0.6rem 0.5rem;
    padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(15, 23, 42, 0.05);
  }
  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.65rem;
    font-weight: 500;
    transition: color 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
  }
  .bottom-nav-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
  }
  .bottom-nav-item.active, .bottom-nav-item:active {
    color: #3b82f6;
  }
  .bottom-nav-item.active svg {
    stroke-width: 2;
  }
  
  /* Adjust body padding so content doesn't hide behind bottom nav */
  .catalog-page {
    padding-bottom: 80px;
  }
  
  .category-filters {
    gap: 0.8rem;
    border-radius: 0;
    padding: 0;
    background-color: transparent;
    justify-content: center;
  }
  
  .filter-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
    width: 100%;
    background-color: #f1f5f9;
    border-radius: 100px;
  }
  
  .sheet-close-btn {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f1f5f9;
    border: none;
    color: #0f172a;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }
  
  .sheet-close-btn:active {
    background: #e2e8f0;
  }
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background-color: rgba(7, 10, 19, 0.85); /* Dark transparent */
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: #ffffff;
  color: #070a13;
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 5.5rem; /* Lift above bottom nav */
    right: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

/* --- Search Modal & Header Actions --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-icon-btn {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, color 0.2s;
}

.search-icon-btn:hover {
  transform: scale(1.1);
  color: #3b82f6;
}

/* Search Modal Overlay */
.search-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(3, 5, 7, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

.search-modal-content {
  max-width: 600px;
  width: 100%;
  margin: 2rem auto 0 auto;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}

.search-input-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.5rem;
  padding: 0.5rem 0;
  font-family: var(--font-sans);
}

.search-input-wrapper input:focus {
  outline: none;
  border-bottom-color: #3b82f6;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  transition: background 0.2s;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.search-result-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.search-result-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.search-result-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.search-result-price {
  color: #3b82f6;
  font-weight: 500;
  font-size: 0.85rem;
}

.search-view-more {
  margin-top: 1rem;
  text-align: center;
  color: #3b82f6;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
}

/* --- Horizontal Carousel (Scroll Snap) --- */
.carousel-grid {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
}

.carousel-grid::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-grid .product-card {
  flex: 0 0 calc(25% - 1.125rem);
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .carousel-grid .product-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

@media (max-width: 768px) {
  .carousel-grid {
    gap: 1rem;
    padding-bottom: 1.5rem;
  }
  .carousel-grid .product-card {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (max-width: 480px) {
  .carousel-grid .product-card {
    flex: 0 0 calc(75% - 0.75rem);
  }
}

/* End of style.css */

/* Pagination Styles */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background-color: transparent;
  color: #0f172a;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.page-btn:hover:not(.disabled) {
  border-color: #3b82f6;
  color: #3b82f6;
}
.page-btn.active {
  background-color: #3b82f6;
  color: white;
  border-color: #3b82f6;
}
.page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
  color: #3b82f6;
}

/* Search Modal Overlay */
.search-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(3, 5, 7, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

.search-modal-content {
  max-width: 600px;
  width: 100%;
  margin: 2rem auto 0 auto;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}

.search-input-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.5rem;
  padding: 0.5rem 0;
  font-family: var(--font-sans);
}

.search-input-wrapper input:focus {
  outline: none;
  border-bottom-color: #3b82f6;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  transition: background 0.2s;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.search-result-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.search-result-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.search-result-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.search-result-price {
  color: #3b82f6;
  font-weight: 500;
  font-size: 0.85rem;
}

.search-view-more {
  margin-top: 1rem;
  text-align: center;
  color: #3b82f6;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
}

/* --- Horizontal Carousel (Scroll Snap) --- */
.carousel-grid {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
}

.carousel-grid::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-grid .product-card {
  flex: 0 0 calc(25% - 1.125rem);
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .carousel-grid .product-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

@media (max-width: 768px) {
  .carousel-grid {
    gap: 1rem;
    padding-bottom: 1.5rem;
  }
  .carousel-grid .product-card {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (max-width: 480px) {
  .carousel-grid .product-card {
    flex: 0 0 calc(75% - 0.75rem);
  }
}

/* End of style.css */

/* Pagination Styles */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background-color: transparent;
  color: #0f172a;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.page-btn:hover:not(.disabled) {
  border-color: #3b82f6;
  color: #3b82f6;
}
.page-btn.active {
  background-color: #3b82f6;
  color: white;
  border-color: #3b82f6;
}
.page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .sheet-handle { display: block !important; }
}

/* ==========================================================================
   UNIFIED SITE TAG BADGES (Button-Style Purple Border, Low Opacity & White Text)
   ========================================================================== */
.catalog-tag,
.nosotros-tag,
.projects-tag,
.catalog-hero-tag,
.specs-tag,
.related-tag,
.site-tag-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.18em !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: rgba(157, 0, 255, 0.18) !important;
  border: 1.5px solid rgba(157, 0, 255, 0.7) !important;
  border-radius: 50px !important;
  padding: 8px 24px !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 0 15px rgba(157, 0, 255, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: default !important;
}

.catalog-tag:hover,
.nosotros-tag:hover,
.projects-tag:hover,
.catalog-hero-tag:hover,
.specs-tag:hover,
.related-tag:hover,
.site-tag-badge:hover {
  background: rgba(157, 0, 255, 0.32) !important;
  border-color: rgba(157, 0, 255, 1) !important;
  box-shadow: 0 0 25px rgba(157, 0, 255, 0.5) !important;
  transform: translateY(-2px) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   CATALOG PAGE STYLES (productos.html)
   ========================================================================== */
body.catalog-page {
  background: #00000082 !important;
  background-color: #00000082 !important;
  background-image: none !important;
}

.catalog-hero-section {
  position: relative;
  padding: 160px 0 60px!Important;
  background: transparent;
  z-index: 10;
}
.catalog-hero-section .catalog-hero-tag {
  margin-bottom: 0.5rem;
}
.catalog-hero-section .catalog-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  color: #fff;
  line-height: 0.95;
  text-transform: uppercase;
}
.catalog-hero-section .catalog-hero-title .highlight-purple {
  color: #9d00ff;
  text-shadow: 0 0 30px rgba(157,0,255,0.5);
}

.catalog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.catalog-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.catalog-breadcrumb a:hover { color: #00e5ff; }
.catalog-breadcrumb .sep { color: rgba(255,255,255,0.25); }
.catalog-breadcrumb .current { color: #fff; text-transform: uppercase; letter-spacing: 0.1em; }

.cat-filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 48px;
}
.cat-filter-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.cat-filter-btn:hover {
  border-color: rgba(157,0,255,0.5);
  color: #fff;
  background: rgba(157,0,255,0.08);
}
.cat-filter-btn.active {
  border-color: #9d00ff;
  color: #fff;
  background: rgba(157,0,255,0.15);
  box-shadow: 0 0 15px rgba(157,0,255,0.3), inset 0 0 8px rgba(157,0,255,0.1);
}

.shop-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 32px 0;
}
.shop-page-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: all 0.3s ease;
}
.shop-page-btn:hover {
  border-color: #9d00ff;
  color: #fff;
}
.shop-page-btn.active {
  border-color: #9d00ff;
  color: #fff;
  background: rgba(157,0,255,0.2);
  box-shadow: 0 0 12px rgba(157,0,255,0.3);
}
.shop-page-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.mobile-filter-fab {
  display: none;
  position: fixed;
  bottom: 95px !important;
  right: 20px;
  z-index: 1500 !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #9d00ff;
  border: none;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(157,0,255,0.6);
  align-items: center;
  justify-content: center;
}
.shop-sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  backdrop-filter: blur(4px);
}
.shop-sheet-overlay.active { display: block; }
.shop-filters-sheet {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  z-index: 210;
  background: #1B1C21;
  border-top: 1px solid rgba(157,0,255,0.3);
  padding: 32px 24px 110px 24px;
  transition: bottom 0.4s cubic-bezier(0.23,1,0.32,1);
  max-height: 60vh;
  overflow-y: auto;
}
.shop-filters-sheet.active { bottom: 0; }
.shop-filters-sheet .sheet-handle {
  width: 40px;
  height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 5px;
  margin: 0 auto 24px;
}
.shop-filters-sheet .sheet-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.shop-filters-sheet .sheet-filters-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-results-header {
  display: none;
  font-family: 'Poppins', sans-serif;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.search-results-header strong {
  color: #00e5ff;
}

.ambient-blob-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
  will-change: transform;
  opacity: 0.22;
  pointer-events: none;
}
#blob1 {
  width: 550px;
  height: 550px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(157,0,255,0.6) 0%, rgba(157,0,255,0) 70%);
}
#blob2 {
  width: 580px;
  height: 580px;
  top: 25%;
  right: -180px;
  background: radial-gradient(circle, rgba(0,229,255,0.55) 0%, rgba(0,229,255,0) 70%);
}
#blob3 {
  width: 620px;
  height: 620px;
  top: 55%;
  left: -200px;
  background: radial-gradient(circle, rgba(157,0,255,0.55) 0%, rgba(157,0,255,0) 70%);
}
#blob4 {
  width: 520px;
  height: 520px;
  bottom: -80px;
  right: -120px;
  background: radial-gradient(circle, rgba(0,229,255,0.6) 0%, rgba(0,229,255,0) 70%);
}

.catalog-main-section {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 0 0 80px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 1280px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

.catalog-empty-state {
  text-align: center;
  padding: 80px 24px;
  color: rgba(255,255,255,0.4);
  font-family: 'Poppins', sans-serif;
  grid-column: 1 / -1;
}
.catalog-empty-state p:first-child {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.catalog-empty-state p:last-child {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .cat-filters-bar { display: none; }
  .mobile-filter-fab { display: flex; }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES (producto.html)
   ========================================================================== */
body.catalog-page,
body.product-detail-page {
  background: #00000082 !important;
  background-color: #00000082 !important;
  background-image: none !important;
}

/* User Requested Solid Dark Section Background to ensure consistency across sections */
.catalog-section,
.projects-section,
.gotas-cta-section,
.nosotros-section,
.features-divider-row,
.footer-neon,
.section-dark {
  background: transparent;
  background-color: transparent;
}

.product-detail-page .section-light,
.product-detail-page .detail-intro-section,
.product-detail-page .specifications-section,
.product-detail-page .related-section {
  background: transparent !important;
  color: #fff !important;
}

.product-nav-section {
  position: relative;
  z-index: 10;
  padding: 140px 0 30px;
  background-image: none !important;
  background-size: cover;
  background-position: center;
}
.product-nav-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 2, 10, 0.88) 0%, rgba(4, 2, 10, 0.6) 100%);
  z-index: 1;
}
.product-nav-section > * {
  position: relative;
  z-index: 2;
}
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.product-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.product-breadcrumb a:hover { color: #00e5ff; }
.product-breadcrumb .sep { color: rgba(255,255,255,0.25); font-size: 0.7rem; }
.product-breadcrumb .current {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.back-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #00e5ff;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
.back-catalog-link:hover {
  color: #45ff00;
  transform: translateX(-4px);
}

.product-detail-dark-section {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 100px 0 80px;
}
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main-img-viewport {
  position: relative;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at center, rgba(157, 0, 255, 0.08), rgba(0, 0, 0, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-img-viewport:hover {
  border-color: rgba(157, 0, 255, 0.4);
  box-shadow: 0 20px 40px rgba(157, 0, 255, 0.15);
}
.main-img-viewport img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  filter: contrast(1.05);
}
.main-img-viewport::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(157,0,255,0.03) 0%, rgba(0,229,255,0.02) 100%);
  pointer-events: none;
}
.gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.65);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.gallery-thumb:hover {
  border-color: rgba(157,0,255,0.5);
  transform: translateY(-2px);
}
.gallery-thumb.active {
  border-color: #9d00ff;
  box-shadow: 0 0 15px rgba(157,0,255,0.4);
  transform: translateY(-2px);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-price-display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: #45ff00;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(69,255,0,0.3);
  margin-bottom: 4px;
}
.product-price-display .bajo-cot {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  text-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-title-display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 16px;
}
.product-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 16px 0 20px;
}
.product-desc-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

.highlights-dark-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 28px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45),
              inset 0 1px 1px rgba(255, 255, 255, 0.3),
              inset 0 0 20px rgba(255, 255, 255, 0.03);
}
.highlights-dark-box .hl-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: #00e5ff;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.highlights-dark-box ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlights-dark-box ul li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.highlights-dark-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9d00ff;
  box-shadow: 0 0 10px rgba(157,0,255,0.8);
}

.product-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border-radius: 12px;
}
.product-cta-btn.primary {
  background: #45ff00;
  color: #02040f;
  border: 1px solid #45ff00;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(69,255,0,0.3);
}
.product-cta-btn.primary:hover {
  background: #56ff17;
  box-shadow: 0 0 30px rgba(69,255,0,0.5);
  transform: translateY(-2px);
}
.product-cta-btn.secondary {
  background: rgba(157,0,255,0.12);
  border: 1px solid rgba(157,0,255,0.4);
  color: #ffffff;
}
.product-cta-btn.secondary:hover {
  background: rgba(157,0,255,0.25);
  border-color: #9d00ff;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(157,0,255,0.4);
  transform: translateY(-2px);
}

.specs-dark-section {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.specs-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.specs-section-header .specs-tag {
  margin-bottom: 12px;
}
.specs-section-header .specs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  text-transform: uppercase;
}
.specs-table-wrapper {
  overflow-x: auto;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
              inset 0 1px 1px rgba(255, 255, 255, 0.3),
              inset 0 0 25px rgba(255, 255, 255, 0.03);
}
.specs-dark-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-dark-table thead th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 20px 28px;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.specs-dark-table tbody td {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
  color: rgba(255, 255, 255, 0.9);
}
.specs-dark-table td.spec-label,
.specs-dark-table .spec-label,
.specs-dark-table tbody td:first-child,
.spec-label {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600 !important;
  width: 35%;
  letter-spacing: 0.02em;
}
.specs-dark-table td.spec-value,
.specs-dark-table .spec-value,
.spec-value {
  color: rgba(255, 255, 255, 0.82) !important;
}
.specs-dark-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.specs-dark-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.09);
}

.related-dark-section {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 80px 0 100px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.related-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.related-section-header .related-tag {
  margin-bottom: 12px;
}
.related-section-header .related-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  text-transform: uppercase;
}

#productNotFoundWrap {
  display: none;
}

.not-found-dark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  z-index: 10;
}
.not-found-dark .nf-icon {
  color: rgba(157,0,255,0.6);
  margin-bottom: 24px;
}
.not-found-dark .nf-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.not-found-dark .nf-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.not-found-dark .nf-redirect {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}
.not-found-dark .nf-redirect span {
  color: #00e5ff;
  font-weight: 600;
}
.not-found-dark .nf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #45ff00;
  border: 1px solid rgba(69,255,0,0.4);
  background: rgba(69,255,0,0.08);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.not-found-dark .nf-btn:hover {
  background: rgba(69,255,0,0.2);
  border-color: #45ff00;
  box-shadow: 0 0 20px rgba(69,255,0,0.3);
}

@media (max-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-price-display { font-size: 2rem; }
  .product-title-display { font-size: 1.8rem; }
  .gallery-thumb { width: 64px; height: 64px; }
  .specs-dark-table { font-size: 0.8rem; }
  .specs-dark-table thead th { padding: 10px 12px; font-size: 0.75rem; }
  .specs-dark-table tbody td { padding: 10px 12px; font-size: 0.8rem; }
  .related-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
}

/* ==========================================================================
   HELPER UTILITY CLASSES (Replacing Inline Styles)
   ========================================================================== */
.btn-pill-height {
  height: 45px !important;
}
.hero-gradient-overlay {
  background: linear-gradient(90deg, rgba(37, 40, 59, 1) 0%, rgba(37, 40, 59, 0) 50%);
  pointer-events: none;
}
.hero-badge-scale {
  transform: scale(0.85);
  transform-origin: left center;
}
.hero-badge-scale-center {
  transform: scale(0.85);
  transform-origin: center center;
}
.divider-rotate-flipped {
  transform: rotate(180deg);
  opacity: 0.15;
}
.pt-60 {
  padding-top: 60px !important;
}

/* ==========================================================================
   ADMIN PANEL STYLES (okiadminpagina.html)
   ========================================================================== */
.admin-page {
  background-color: #0b0c10;
  color: #f3f4f6;
  min-height: 100vh;
  font-family: var(--font-sans);
}

.admin-lock-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #050507;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lock-card {
  max-width: 420px;
  width: 100%;
  background-color: rgba(20, 20, 25, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border-radius: 26px;
}

.lock-input {
  width: 100%;
  padding: 1rem;
  background-color: rgba(5, 5, 5, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: white;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin: 1.5rem 0;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s;
}

.lock-input:focus {
  border-color: #6b7280;
}

.lock-btn {
  width: 100%;
  padding: 1rem;
  background-color: #1e293b;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s;
}

.lock-btn:hover {
  background-color: white;
  color: black;
  border-color: white;
}

.error-msg {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: none;
}

.admin-dashboard-wrap {
  display: none;
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 4% 10rem 4%;
}

.admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.admin-panel-card {
  background-color: rgba(20, 20, 25, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  position: sticky;
  top: 100px;
  border-radius: 26px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.panel-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: white;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem;
  background-color: rgba(5, 5, 5, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: white;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-control:focus {
  border-color: #6b7280;
}

.form-control:disabled {
  background-color: rgba(20, 20, 25, 0.3);
  color: #64748b;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.03);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.image-upload-wrapper {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.img-preview-box {
  width: 80px;
  height: 100px;
  background-color: #070a13;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-input-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.file-input-btn input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.dynamic-list-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.remove-row-btn {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.remove-row-btn:hover {
  opacity: 0.7;
}

.add-row-btn {
  background: none;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  width: 100%;
  padding: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
  border-radius: 12px;
}

.add-row-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.admin-table-card {
  background-color: rgba(20, 20, 25, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  border-radius: 26px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  padding: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.admin-table td {
  padding: 1.2rem 1.0rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  vertical-align: middle;
  font-size: 0.85rem;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.td-product-img {
  width: 45px;
  height: 55px;
  object-fit: cover;
  background-color: #070a13;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.action-btn-group {
  display: flex;
  gap: 0.8rem;
}

.act-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.act-btn:hover {
  border-color: white;
  color: white;
}

.act-btn-delete {
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.2);
}

.act-btn-delete:hover {
  background-color: #ef4444;
  border-color: #ef4444;
  color: white;
}

.form-action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.dashboard-btn {
  padding: 1rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-save {
  background-color: white;
  color: black;
  border-color: white;
  flex-grow: 1;
}

.btn-save:hover {
  background-color: transparent;
  color: white;
}

.btn-cancel {
  background-color: transparent;
  color: #94a3b8;
  width: 100px;
}

.btn-cancel:hover {
  border-color: white;
  color: white;
}

.btn-reset-db {
  background-color: transparent;
  color: #94a3b8;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.btn-reset-db:hover {
  border-color: #ef4444;
  color: #f87171;
}

@media (max-width: 1024px) {
  .admin-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .admin-panel-card {
    position: static;
  }
}

.admin-lock-icon {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
.admin-lock-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: white;
}
.admin-lock-subtitle {
  font-size: 0.75rem;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}
.text-slate-500 {
  color: #64748b !important;
}
.admin-title-large {
  color: white;
  font-size: 2.2rem;
}
.admin-btn-row {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-force-update {
  background-color: transparent;
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
}
.btn-force-update svg {
  margin-right: 6px;
}
.btn-catalog-link {
  background-color: transparent;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.65rem;
  padding: 0.8rem 1.2rem;
}
.btn-logout {
  background-color: #ef4444;
  border-color: #ef4444;
  color: white;
  font-size: 0.65rem;
  padding: 0.8rem 1.2rem;
}
.table-responsive-wrap {
  overflow-x: auto;
  width: 100%;
}
.text-right {
  text-align: right !important;
}
.bg-dark-select {
  background-color: #070a13 !important;
  color: white !important;
}
.new-cat-input {
  display: none;
  margin-top: 0.5rem;
  background-color: #070a13 !important;
  color: white !important;
}
.no-photo-text {
  font-size: 0.6rem;
  color: #475569;
  text-align: center;
}
.file-btn-wrapper {
  width: 100%;
  margin-bottom: 0.5rem;
}
.btn-full-pointer-none {
  width: 100%;
  text-align: center;
  pointer-events: none;
}

/* ==========================================================================
   GOTAS CUÁNTICAS HERO CTA SECTION (index.html)
   ========================================================================== */
.gotas-cta-section {
  position: relative;
  z-index: 10;
  background: transparent;
}

.gotas-cta-glow-bg {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.25) 0%, rgba(0, 229, 255, 0.12) 50%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.tag-pill-unified {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.15em !important;
  height: 42px !important;
  padding: 0 22px !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  vertical-align: middle !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
}

.tag-pill-purple {
  background: rgba(157, 0, 255, 0.18) !important;
  border: 1px solid rgba(157, 0, 255, 0.7) !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(157, 0, 255, 0.3) !important;
}

.tag-pill-purple:hover {
  background: rgba(157, 0, 255, 0.32) !important;
  border-color: rgba(157, 0, 255, 1) !important;
  box-shadow: 0 0 25px rgba(157, 0, 255, 0.5) !important;
  transform: translateY(-2px) !important;
  color: #ffffff !important;
}

.tag-pill-cyan {
  background: rgba(0, 229, 255, 0.18) !important;
  border: 1px solid rgba(0, 229, 255, 0.7) !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3) !important;
}

.tag-pill-cyan:hover {
  background: rgba(0, 229, 255, 0.32) !important;
  border-color: rgba(0, 229, 255, 1) !important;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.5) !important;
  transform: translateY(-2px) !important;
  color: #ffffff !important;
}

.text-gradient-purple-cyan {
  background: linear-gradient(135deg, #9d00ff 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(157, 0, 255, 0.4);
}

.gotas-cta-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.gotas-cta-description strong {
  color: #ffffff;
  font-weight: 600;
}

.gotas-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}
.gotas-feature-card:hover {
  border-color: rgba(157, 0, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(157, 0, 255, 0.2);
}
.gotas-feature-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.gotas-feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 2px;
}
.gotas-feature-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.gotas-btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #45ff00 0%, #00e5ff 100%);
  color: #02040f;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: 0 0 25px rgba(69, 255, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.gotas-btn-buy:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(69, 255, 0, 0.6), 0 0 20px rgba(0, 229, 255, 0.5);
  color: #000000;
}

.gotas-btn-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 14px;
  background: rgba(157, 0, 255, 0.15);
  border: 1px solid rgba(157, 0, 255, 0.5);
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.gotas-btn-details:hover {
  background: rgba(157, 0, 255, 0.3);
  border-color: #9d00ff;
  box-shadow: 0 0 20px rgba(157, 0, 255, 0.4);
  transform: translateY(-3px);
}

/* Carlos Okinagua Card Frame */
.carlos-card-outer {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 4px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.8) 0%, rgba(0, 229, 255, 0.6) 50%, rgba(69, 255, 0, 0.5) 100%);
  box-shadow: 0 20px 50px rgba(157, 0, 255, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}
.carlos-card-outer:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(157, 0, 255, 0.45), 0 0 30px rgba(0, 229, 255, 0.3);
}

.carlos-card-inner {
  position: relative;
  border-radius: 24px;
  background: radial-gradient(circle at center, rgba(30, 20, 50, 0.9) 0%, rgba(5, 5, 15, 0.98) 100%);
  padding: 24px 20px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.carlos-photo-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.5) 0%, rgba(0, 229, 255, 0.3) 60%, transparent 80%);
  filter: blur(50px);
  pointer-events: none;
}

.carlos-hero-img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.7));
  transition: transform 0.4s ease;
}
.carlos-card-outer:hover .carlos-hero-img {
  transform: scale(1.03);
}

/* Floating Badges on Carlos Card */
.carlos-floating-badge {
  position: absolute;
  z-index: 10;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(10, 10, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
}
.badge-top-right {
  top: 20px;
  right: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #45ff00;
  box-shadow: 0 0 10px #45ff00;
}

.badge-bottom-left {
  bottom: 24px;
  left: 16px;
}
.badge-icon {
  font-size: 1.4rem;
}
.badge-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  color: #00e5ff;
  letter-spacing: 0.1em;
  line-height: 1;
}
.badge-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   GOTAS CUÁNTICAS SECTION (Pixel-Perfect Match to Mockup Screenshot)
   ========================================================================== */
.gotas-mockup-section {
  position: relative;
  background: #04020a !important;
  z-index: 10;
  padding-top: 180px !important;
  padding-bottom: 120px !important;
  overflow: hidden;
}

/* Deep Radial Background Glow (Matching Mockup Colors) */
.gotas-mockup-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle at 50% 40%, rgba(45, 18, 90, 0.65) 0%, rgba(20, 8, 45, 0.4) 45%, transparent 75%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Giant Title BEHIND Carlos Image */
.gotas-mockup-title-wrap {
  width: 100%;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  margin-top: 30px;
  margin-bottom: 10px;
}

.gotas-mockup-giant-title {
  font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 14.5vw, 335px);
  font-weight: 400; /* Regular weight from Figma */
  color: #ffffff;
  letter-spacing: -0.03em !important; /* -3% from Figma */
  line-height: 0.8;
  text-transform: uppercase;
  text-shadow: 0 0 60px rgba(157, 0, 255, 0.25);
  margin: 0;
  white-space: nowrap;
}

/* Carlos Center Image Box */
.gotas-carlos-img-box {
  position: relative;
  z-index: 10;
  margin-top: -10px;
  display: flex;
  justify-content: center;
}

.gotas-carlos-cutout {
  max-width: 410px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.9));
  transition: transform 0.4s ease;
}

.gotas-carlos-img-box:hover .gotas-carlos-cutout {
  transform: scale(1.02);
}

/* Bottom Row Description Text */
.gotas-mockup-description {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 10;
}

/* Bright Fuchsia / Magenta Pill CTA Button (Matching Mockup) */
.gotas-mockup-magenta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 44px;
  border-radius: 50px;
  background: #d814ff;
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 0 30px rgba(216, 20, 255, 0.6), 0 0 60px rgba(216, 20, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gotas-mockup-magenta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: #ea3bff;
  box-shadow: 0 0 45px rgba(216, 20, 255, 0.9), 0 0 80px rgba(216, 20, 255, 0.5);
  color: #ffffff;
}

/* Dark Glass Cards (Feature Boxes Matching Mockup) */
.gotas-mockup-card {
  width: 100%;
  min-height: 135px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(22, 25, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 10;
}

.gotas-card-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.gotas-mockup-card:hover {
  border-color: rgba(157, 0, 255, 0.4);
  background: rgba(28, 32, 50, 0.85);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(157, 0, 255, 0.2);
}

.gotas-card-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.gotas-card-body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .gotas-mockup-title-wrap {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: 10px;
  }
  .gotas-mockup-giant-title {
    font-size: clamp(3.2rem, 11vw, 7rem);
  }
  .gotas-carlos-cutout {
    max-width: 320px;
  }
  .gotas-mockup-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

/* Header Hide on Scroll Down */
#site-header {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease !important;
}

#site-header.header-hidden {
  transform: translateY(-140%) !important;
}

/* Mobile App Bottom Navigation Bar */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 440px;
    height: 64px;
    background: rgba(10, 10, 20, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-radius: 50px;
    z-index: 9999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(157, 0, 255, 0.25);
    align-items: center;
    justify-content: space-around;
    padding: 0 8px;
  }

  .mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    padding: 6px 8px;
    border-radius: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .mobile-bottom-nav-item svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.25s ease, color 0.25s ease;
  }

  .mobile-bottom-nav-item:hover,
  .mobile-bottom-nav-item.active {
    color: #00e5ff;
  }

  .mobile-bottom-nav-item.active svg {
    color: #9d00ff;
    transform: translateY(-2px);
  }
}
}

/* Mobile Scroll Performance Optimization: Disable Heavy Blur Filters */
@media (max-width: 768px) {
  .catalog-card,
  .catalog-card-pro,
  .feature-col,
  .project-card-neon,
  .glass-card,
  .info-badge,
  .producto-info-container,
  .gotas-mockup-section,
  #site-header {
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 10;
}

/* Bright Fuchsia / Magenta Pill CTA Button (Matching Mockup) */
.gotas-mockup-magenta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 44px;
  border-radius: 50px;
  background: #d814ff;
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 0 30px rgba(216, 20, 255, 0.6), 0 0 60px rgba(216, 20, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gotas-mockup-magenta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: #ea3bff;
  box-shadow: 0 0 45px rgba(216, 20, 255, 0.9), 0 0 80px rgba(216, 20, 255, 0.5);
  color: #ffffff;
}

/* Dark Glass Cards (Feature Boxes Matching Mockup) */
.gotas-mockup-card {
  width: 100%;
  min-height: 135px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(22, 25, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 10;
}

.gotas-card-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.gotas-mockup-card:hover {
  border-color: rgba(157, 0, 255, 0.4);
  background: rgba(28, 32, 50, 0.85);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(157, 0, 255, 0.2);
}

.gotas-card-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.gotas-card-body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .gotas-mockup-title-wrap {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: 10px;
  }
  .gotas-mockup-giant-title {
    font-size: clamp(3.2rem, 11vw, 7rem);
  }
  .gotas-carlos-cutout {
    max-width: 320px;
  }
  .gotas-mockup-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

/* Header Hide on Scroll Down */
#site-header {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease !important;
}

#site-header.header-hidden {
  transform: translateY(-140%) !important;
}

/* Mobile App Bottom Navigation Bar */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 440px;
    height: 64px;
    background: rgba(10, 10, 20, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-radius: 50px;
    z-index: 9999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(157, 0, 255, 0.25);
    align-items: center;
    justify-content: space-around;
    padding: 0 8px;
  }

  .mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    padding: 6px 8px;
    border-radius: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .mobile-bottom-nav-item svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.25s ease, color 0.25s ease;
  }

  .mobile-bottom-nav-item:hover,
  .mobile-bottom-nav-item.active {
    color: #00e5ff;
  }

  .mobile-bottom-nav-item.active svg {
    color: #9d00ff;
    transform: translateY(-2px);
  }
}
}

/* Mobile Scroll Performance Optimization: Disable Heavy Blur Filters */
@media (max-width: 768px) {
  .catalog-card,
  .catalog-card-pro,
  .feature-col,
  .project-card-neon,
  .glass-card,
  .info-badge,
  .producto-info-container,
  .gotas-mockup-section,
  #site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background-color: rgba(10, 10, 20, 0.95) !important;
  }
  
  .mobile-bottom-nav {
    backdrop-filter: blur(8px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(8px) saturate(160%) !important;
  }
  
  /* Disable full-screen mix-blend-mode on mobile (It destroys scroll FPS) */
  #bg-webgl-canvas {
    mix-blend-mode: normal !important;
  }
  
  /* Remove heavy background JPGs that are overlapped by WebGL anyway */
  .product-nav-section {
    background-image: none !important;
  }
  
  /* Add padding to footer to prevent overlap with mobile bottom nav */
  .footer-neon {
    padding-bottom: 100px !important;
  }
}

/* ==========================================
   Responsive Admin Dashboard Styles (Mobile First Refined)
   ========================================== */
@media (max-width: 1024px) {
  .admin-dashboard-wrap {
    padding: 3rem 1.5rem 6rem 1.5rem !important;
  }
  .admin-header-row {
    margin-bottom: 2rem !important;
    padding-bottom: 1.5rem !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .admin-title-large {
    font-size: 1.8rem !important;
  }
  .admin-btn-row {
    justify-content: center !important;
    width: 100% !important;
    gap: 0.5rem !important;
  }
  .admin-btn-row .dashboard-btn {
    width: 100% !important;
    text-align: center;
  }
  .admin-panel-card, .admin-table-card {
    padding: 1.5rem !important;
    border-radius: 20px !important;
  }
  .panel-card-title {
    font-size: 1.35rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  /* Stack grid and put Form on top so they don't have to scroll past the table */
  .admin-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
  }
  #formCard {
    order: -1 !important; /* Form first */
  }

  /* Table responsiveness under 1024px */
  .admin-table th:nth-child(1), /* Hide # */
  .admin-table td:nth-child(1),
  .admin-table th:nth-child(3), /* Hide ID */
  .admin-table td:nth-child(3),
  .admin-table th:nth-child(6), /* Hide Category */
  .admin-table td:nth-child(6) {
    display: none !important;
  }
  
  .admin-table td, .admin-table th {
    padding: 0.8rem 0.6rem !important;
  }
  
  .table-responsive-wrap {
    overflow-x: auto !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  .admin-dashboard-wrap {
    padding: 2rem 0.75rem 4rem 0.75rem !important;
  }
  .admin-panel-card, .admin-table-card {
    padding: 1rem !important;
    border-radius: 14px !important;
  }
  .admin-title-large {
    font-size: 1.5rem !important;
  }
  
  /* Hide Image column on small mobile screens to save even more space */
  .admin-table th:nth-child(2),
  .admin-table td:nth-child(2) {
    display: none !important;
  }
  
  .admin-table td, .admin-table th {
    padding: 0.7rem 0.4rem !important;
    font-size: 0.80rem !important;
  }
}
