/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Colors */
  --black-deep: #0a0a0f;
  --black-card: #111118;
  --black-surface: #16161f;
  --purple-deep: #1a0a2e;
  --purple-dark: #2d1b4e;
  --purple-medium: #4a2c6e;
  --purple-accent: #7b4daa;
  --burgundy: #6b1d3a;
  --burgundy-light: #8b2a4a;
  --gold-antique: #c9a84c;
  --gold-bright: #d4af37;
  --gold-dim: #a08030;
  --silver-aged: #8a8a9a;
  --silver-light: #b0b0c0;
  --cream: #e8dcc8;
  --cream-dark: #c4b89c;
  --white-soft: #f0ece4;
  --text-primary: #e8e0d4;
  --text-secondary: #a09888;
  --text-muted: #706858;

  /* Gradients */
  --gradient-hero: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(26,10,46,0.7) 50%, rgba(10,10,15,0.95) 100%);
  --gradient-card: linear-gradient(145deg, rgba(17,17,24,0.9) 0%, rgba(22,22,31,0.95) 100%);
  --gradient-gold: linear-gradient(135deg, #a08030 0%, #d4af37 50%, #c9a84c 100%);
  --gradient-purple: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);

  /* Typography */
  --font-heading: 'Cinzel Decorative', 'Cinzel', serif;
  --font-subheading: 'Cinzel Decorative', serif;
  --font-body: 'Cormorant Garamond', 'Georgia', serif;
  --font-ui: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(3rem, 8vw, 7rem);
  --container-max: 1200px;
  --container-padding: clamp(1rem, 4vw, 2rem);

  /* Borders & Shadows */
  --border-subtle: 1px solid rgba(201,168,76,0.15);
  --border-glow: 1px solid rgba(201,168,76,0.3);
  --shadow-card: 0 4px 30px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(201,168,76,0.1);
  --shadow-glow-strong: 0 0 40px rgba(201,168,76,0.2);
  --shadow-glow-subtle: 0 0 15px rgba(201,168,76,0.08);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--black-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

::selection {
  background: rgba(201,168,76,0.3);
  color: var(--white-soft);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.5em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-style: italic;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-divider::before,
.section-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--gradient-gold);
  opacity: 0.5;
}

.section-divider .divider-icon {
  color: var(--gold-antique);
  font-size: 1.2rem;
  opacity: 0.7;
}

/* Reveal animation classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   PARTICLES CANVAS
   ============================================ */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--gold-bright); /* Made brighter */
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 0 15px rgba(230, 200, 117, 0.4);
  animation: brandMovement 8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  will-change: transform, text-shadow;
}

@keyframes brandMovement {
  0% {
    transform: translate3d(0, 0, 0);
    text-shadow: 0 0 10px rgba(230, 200, 117, 0.3);
  }
  100% {
    transform: translate3d(0, -5px, 0);
    text-shadow: 0 0 30px rgba(230, 200, 117, 0.9), 0 0 8px rgba(255, 255, 255, 0.6);
  }
}

.navbar-brand .brand-icon {
  font-size: 1.4em;
  display: inline-block;
  animation: moonSpin 6s linear infinite;
  will-change: transform;
}

@keyframes moonSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-antique);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--gold-antique);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Nav Controls */
.nav-controls {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.ui-select {
  background: rgba(10,10,15,0.6);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-antique);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-base);
}

#currencySelect {
  width: 75px;
  text-overflow: ellipsis;
}

.ui-select:hover, .ui-select:focus {
  border-color: var(--gold-antique);
  box-shadow: 0 0 10px rgba(201,168,76,0.2);
}

.ui-select option {
  background: var(--black-deep);
  color: var(--text-primary);
}

/* Custom Select Container */
.custom-select-wrapper {
  position: relative;
  user-select: none;
  font-family: var(--font-ui);
}

.custom-select-trigger {
  background: rgba(10,10,15,0.6);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-antique);
  font-size: 0.85rem;
  padding: 0.3rem 1.8rem 0.3rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  min-width: 60px;
}

.custom-select-trigger:hover, .custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--gold-antique);
  box-shadow: 0 0 10px rgba(201,168,76,0.2);
}

.custom-select-trigger::after {
  content: '▼';
  font-size: 0.6rem;
  position: absolute;
  right: 0.6rem;
  transition: transform 0.3s;
}

.custom-select-wrapper.open .custom-select-trigger::after {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--gold-antique);
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  margin-top: 5px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  flex-direction: column;
  min-width: max-content;
}

/* Custom Scrollbar for dropdown options */
.custom-select-options::-webkit-scrollbar {
  width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.2);
}

.custom-select-options::-webkit-scrollbar-thumb {
  background: var(--gold-antique);
  border-radius: 3px;
}

.custom-select-wrapper.open .custom-select-options {
  display: flex;
}

.custom-select-option {
  padding: 0.6rem 1rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition-base);
  text-align: left;
}

.custom-select-option:hover, .custom-select-option.selected {
  background: rgba(201,168,76,0.1);
  color: var(--gold-antique);
}

.custom-select-wrapper.currency-wrapper .custom-select-trigger {
  width: 75px;
  overflow: hidden;
}

.custom-select-wrapper.currency-wrapper .custom-select-options {
  min-width: 340px;
  right: 0;
  left: auto;
}

.custom-select-wrapper.currency-wrapper .custom-select-option {
  white-space: normal;
  line-height: 1.4;
  padding: 0.55rem 0.85rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold-antique);
  transition: var(--transition-base);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s var(--ease-smooth);
    border-left: 1px solid rgba(201,168,76,0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero-content {
  text-align: center;
  padding: 2rem var(--container-padding);
  max-width: 800px;
  animation: heroFadeIn 1.5s var(--ease-smooth);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyes {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.mystic-eye-svg {
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.2));
  animation: gentlePulse 4s ease-in-out infinite;
}

.eye-rays line {
  transition: opacity 0.3s;
}

@keyframes gentlePulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--gold-bright); /* Made brighter */
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.5em;
  text-shadow: 0 0 40px rgba(201,168,76,0.3);
  animation: brandMovement 8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  will-change: transform, text-shadow;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: btnShine 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--black-deep);
  border: 1px solid var(--gold-antique);
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-antique);
  border: 1px solid rgba(201,168,76,0.4);
}

.btn-secondary:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold-antique);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-whatsapp, .btn-whatsapp-send {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes btnShine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-whatsapp:hover, .btn-whatsapp-send:hover {
  background: linear-gradient(135deg, #2ada6e 0%, #149a8b 100%);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
}

.about-simple {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-simple .section-title {
  margin-bottom: 2rem;
}

.about-simple .about-text p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 1.5rem;
}

.about-simple .section-divider {
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.about-simple .section-divider .divider-icon {
  color: rgba(212, 175, 55, 0.3);
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-text h3 {
  font-family: var(--font-subheading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--gold-antique);
  margin-bottom: 1rem;
}

.about-text p {
  color: #ffffff;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: var(--border-subtle);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold-antique);
  display: block;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}



/* ============================================
   CATALOG SECTION
   ============================================ */
.catalog {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(26,10,46,0.15) 50%, transparent);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  align-items: start;
}

/* SEARCH & FILTERS */
.catalog-header-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
.catalog-search-wrapper {
  flex: 1;
  position: relative;
}
.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
}
.catalog-search {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--black-card);
  border: var(--border-subtle);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 1rem;
  transition: all var(--transition-base);
}
.catalog-search:focus {
  outline: none;
  border-color: var(--gold-antique);
  box-shadow: var(--shadow-glow-subtle);
}

.catalog-view-toggle {
  display: none;
  background: rgba(255,255,255,0.05);
  border: var(--border-subtle);
  border-radius: 8px;
  padding: 0.25rem;
  gap: 0.25rem;
}
.catalog-view-toggle .view-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.catalog-view-toggle .view-btn.active {
  background: rgba(201,168,76,0.2);
  color: var(--gold-antique);
}

@media (max-width: 900px) {
  .catalog-view-toggle.mobile-only {
    display: flex;
  }
  
  .catalog-grid.compact-view {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    align-items: stretch;
  }
  .catalog-grid.compact-view .service-card {
    margin-bottom: 0;
    width: 100%;
    justify-content: flex-start;
  }
  .catalog-grid.compact-view .service-card-header {
    padding: 1rem 0.5rem 0.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  .catalog-grid.compact-view .service-card-icon-box {
    margin-bottom: 0.2rem;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  .catalog-grid.compact-view .service-card-name {
    font-size: 0.9rem;
  }
  .catalog-grid.compact-view .service-card-price {
    font-size: 1rem;
    align-items: center;
  }
  .catalog-grid.compact-view .service-card-desc,
  .catalog-grid.compact-view .service-card-tags {
    display: none;
  }
  .catalog-grid.compact-view .service-card:has(.custom-dropdown-container) .service-card-price {
    display: none;
  }
  .catalog-grid.compact-view .service-card-body {
    padding: 0.5rem;
    align-items: center;
    flex: none;
    justify-content: flex-start;
  }
  .catalog-grid.compact-view .add-to-cart-btn,
  .catalog-grid.compact-view .btn-add-cart {
    width: 100%;
    padding: 0.6rem;
    font-size: 0.8rem;
    margin-top: auto;
  }
}


.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.filter-btn {
  background: var(--black-card);
  border: var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: var(--font-ui);
  cursor: pointer;
  transition: all var(--transition-base);
}
.filter-btn:hover {
  border-color: var(--gold-antique);
  color: var(--gold-antique);
}
.filter-btn.active {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold-antique);
  color: var(--gold-antique);
}

/* CATALOG GRID */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* SERVICE CARD UPDATE */
.service-card {
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-strong);
  border-color: rgba(201,168,76,0.3);
}
.service-card-header {
  position: relative;
  display: flex;
  padding: 1.5rem 1.5rem 0;
  gap: 1rem;
}
.service-card-icon-box {
  background: rgba(255,255,255,0.05);
  border: var(--border-subtle);
  border-radius: 8px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.service-card-title-group {
  flex: 1;
}
.service-card-name {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  color: var(--gold-antique);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.service-card-pill {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--text-secondary);
}
.service-card-pill.highlight-pill {
  background: rgba(201,168,76,0.2);
  color: var(--gold-antique);
}
.service-card-price {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  color: var(--gold-bright);
  font-weight: 700;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.service-card-price small {
  font-size: 0.7em;
  color: var(--text-muted);
  font-weight: 400;
}
.service-card-body {
  padding: 1rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}
.service-card-tags {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.service-card-tags span {
  background: rgba(0,0,0,0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.05);
}
.btn-add-cart {
  width: 100%;
  padding: 1rem;
  border: none;
  background: var(--gradient-gold);
  color: #1a0a2e;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(201,168,76,0.15);
}

.btn-add-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.btn-add-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
  filter: brightness(1.1);
}

.btn-add-cart:hover::before {
  left: 150%;
}

.btn-add-cart:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(201,168,76,0.2);
}

.btn-add-cart.added {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.2) inset;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

/* CART SIDEBAR */
.catalog-sidebar {
  position: sticky;
  top: 100px; /* Below navbar */
}
.cart-box {
  background: var(--gradient-card);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(201,168,76,0.05);
  position: relative;
  overflow: hidden;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.cart-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--gold-antique);
  letter-spacing: 0.1em;
}
.cart-title {
  font-family: var(--font-subheading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-top: 0.2rem;
}
.cart-badge {
  background: var(--gradient-gold);
  color: #1a0a2e;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(201,168,76,0.4);
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}
.cart-items {
  min-height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 5px; /* Prevent scrollbar overlapping content */
}

/* Custom Scrollbar for Cart Items */
.cart-items::-webkit-scrollbar {
  width: 4px;
}
.cart-items::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}
.cart-items::-webkit-scrollbar-thumb {
  background: rgba(201,168,76,0.3);
  border-radius: 4px;
  transition: background 0.3s ease;
}
.cart-items::-webkit-scrollbar-thumb:hover {
  background: rgba(201,168,76,0.8);
}

.cart-empty-state {
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.02);
}
.cart-item:hover {
  background: rgba(201,168,76,0.08);
  transform: translateX(4px);
  border-color: transparent;
}
.cart-item-info h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.cart-item-info .cart-item-price {
  font-size: 0.85rem;
  color: var(--gold-antique);
}
.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: all 0.2s ease;
  padding: 0 0.5rem;
}
.cart-item-remove:hover {
  color: #ff4d4d;
  transform: scale(1.2) rotate(90deg);
  text-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.total-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.total-price {
  color: var(--gold-bright);
  font-size: 1.2rem;
  font-weight: 700;
}
.cart-message-box {
  margin-bottom: 1.5rem;
}
.cart-message-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.cart-message-input {
  width: 100%;
  background: rgba(0,0,0,0.2);
  border: var(--border-subtle);
  border-radius: 6px;
  padding: 0.8rem;
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  resize: vertical;
  min-height: 80px;
  transition: all 0.3s ease;
}
.cart-message-input:focus {
  outline: none;
  border-color: var(--gold-antique);
  box-shadow: 0 0 15px rgba(201,168,76,0.2);
  background: rgba(0,0,0,0.4);
}
.btn-whatsapp-send {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: var(--gradient-gold);
  color: #1a0a2e;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(201,168,76,0.2);
}

.btn-whatsapp-send::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.btn-whatsapp-send:hover {
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.btn-whatsapp-send:hover::before {
  left: 150%;
}

.btn-whatsapp-send:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(201,168,76,0.2);
}

@media (max-width: 992px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .catalog-sidebar {
    position: static;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(26,10,46,0.1) 50%, transparent);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: var(--border-subtle);
  border-radius: 8px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: var(--gradient-card);
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(201,168,76,0.25);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  font-family: var(--font-subheading);
  font-size: 1rem;
  text-align: left;
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--gold-antique);
}

.faq-icon {
  color: var(--gold-antique);
  font-size: 0.8rem;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: 10px;
  padding: 1.8rem;
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-glow);
}

.contact-card-icon {
  font-size: 2rem;
  color: var(--gold-antique);
}

.contact-card-label {
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  color: var(--text-primary);
}

.contact-card-value {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 2.5rem 0;
  border-top: var(--border-subtle);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-antique);
  margin-bottom: 0.5rem;
}

.footer-text {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-text a {
  color: var(--gold-dim);
  transition: color var(--transition-base);
}

.footer-text a:hover {
  color: var(--gold-antique);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition-base);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black-deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(201,168,76,0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201,168,76,0.5);
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-symbol {
  font-size: 3rem;
  color: var(--gold-antique);
  animation: pulseLoader 1.5s infinite;
  margin-bottom: 1rem;
}

.loader-text {
  font-family: var(--font-subheading);
  color: var(--gold-antique);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

@keyframes pulseLoader {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); text-shadow: 0 0 20px var(--gold-bright); }
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(10,10,15,0) 0%, rgba(201,168,76,0.03) 50%, rgba(10,10,15,0) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item {
  padding: 1.5rem;
  background: var(--gradient-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.3);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.4));
}

.trust-item h3 {
  font-family: var(--font-subheading);
  color: var(--gold-bright);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================
   FOOTER LEGAL
   ============================================ */
.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
}

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

.footer-sep {
  color: rgba(255,255,255,0.1);
}

/* ============================================
   GENERIC MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--black-card);
  border: 1px solid var(--gold-dim);
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 20px rgba(201,168,76,0.05);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--gold-bright);
}

.modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-title {
  font-family: var(--font-heading);
  color: var(--gold-bright);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.modal-price {
  font-family: var(--font-subheading);
  color: var(--gold-antique);
  font-size: 1.2rem;
  font-weight: 700;
}

.modal-body {
  padding: 2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.modal-body h4 {
  color: var(--text-primary);
  margin: 1.5rem 0 0.5rem;
  font-family: var(--font-subheading);
}

.modal-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
  color: var(--text-secondary);
}

.modal-footer {
  padding: 1rem 2rem 2rem;
}

/* ============================================
   RESPONSIVE FINE TUNING
   ============================================ */
@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
@media (pointer: fine) {
  body, a, button, select, .service-card, .ui-select, .nav-links a, .custom-dropdown-trigger, .custom-option, .btn-add-cart, .add-to-cart-btn {
    cursor: none !important;
  }

  .custom-cursor {
    position: fixed;
    top: -20px;
    left: -20px;
    width: 16px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(201, 168, 76, 0.4);
    transition: width 0.15s ease-out, height 0.15s ease-out, background-color 0.15s ease-out, box-shadow 0.15s ease-out;
    will-change: left, top, width, height;
  }

  .custom-cursor.hovering {
    width: 40px;
    height: 40px;
    background-color: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.8);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
    backdrop-filter: blur(2px);
  }
}

/* ============================================
   SVG ICONS STYLING
   ============================================ */
.trust-icon svg,
.service-card-icon-box svg {
  color: var(--gold-antique);
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.4));
  margin-bottom: 0.5rem;
}

.service-card-select { background-color: #0a0a0f !important; }
.service-card-select option { background-color: #0a0a0f !important; color: #d4af37 !important; padding: 10px; font-family: 'Inter', sans-serif; }

.custom-dropdown-trigger:hover { background: rgba(212,175,55,0.1) !important; }

.custom-option {
  padding: 15px;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s;
  line-height: 1.5;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  font-size: 0.92rem;
}
.custom-option:last-child { border-bottom: none; }
.custom-option:hover { background: rgba(212,175,55,0.1); }

.service-card.dropdown-active {
  z-index: 999 !important;
  position: relative !important;
  overflow: visible !important;
}

/* ============================================
   ACCESSIBILITY & UX UTILITIES
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--gold-antique);
  color: var(--black-deep);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.service-card-hint {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
}

.service-card:hover .service-card-hint {
  opacity: 1;
  color: var(--gold-antique);
}

.cart-error {
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  background: rgba(107, 29, 58, 0.25);
  border: 1px solid rgba(139, 42, 74, 0.5);
  color: #f0c4d0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-align: center;
}

.cart-error[hidden] {
  display: none;
}

.cart-highlight {
  animation: cartPulse 1.2s ease;
}

@keyframes cartPulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.45); }
}

.mobile-cart-fab {
  display: none;
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--gradient-gold);
  color: var(--black-deep);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.mobile-cart-fab:not([hidden]) {
  display: inline-flex;
}

.mobile-cart-fab.has-items {
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
}

.mobile-cart-fab-count {
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--black-deep);
  color: var(--gold-bright);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-note {
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  margin: -1.5rem auto 2rem;
  max-width: 520px;
}

@media (max-width: 900px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }
}

/* Respeta preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .navbar-brand,
  .hero-title,
  .navbar-brand .brand-icon,
  .mystic-eye-svg,
  .whatsapp-float {
    animation: none !important;
  }
  #particles-canvas,
  #heroVideo { display: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .loader { display: none !important; }
}
