/** Shopify CDN: Minification failed

Line 889:12 Expected identifier but found whitespace
Line 889:13 Unexpected "skewX("
Line 1143:12 Expected identifier but found whitespace
Line 1143:13 Unexpected "14px"

**/
/* ============================= */
/* 🌌 GLOBAL */
/* ============================= */
html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* keep Shopify layout intact */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__heading-logo {
  max-height: 60px;
}

/* ============================= */
/* 📦 CONTENT WIDTH */
/* ============================= */
.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================= */
/* 🎬 HERO / BANNER */
/* ============================= */
.banner {
  position: relative;
}

.banner__content {
  text-align: center;
}

.banner__heading {
  font-size: clamp(32px, 6vw, 70px);
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* ============================= */
/* 🛍 PRODUCT GRID */
/* ============================= */
.grid {
  gap: 20px;
}

.card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================= */
/* 🔥 MV SECTION */
/* ============================= */
.mv-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
} 
.mv-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================= */
/* 🔥 CARD (REAL CARD) */
/* ============================= */
.mv-card {
  background: rgba(0,0,0,0.6);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
}

/* ============================= */
/* 🖼 IMAGE (NO SIDE GAPS) */
/* ============================= */
.mv-card img {
  display: block;
  width: 100%;
  height: auto;            /* 🔑 keeps full image */
}

/* ============================= */
/* 📝 TEXT */
/* ============================= */
.mv-card h2 {
  font-size: 15px;
  margin: 12px 10px 6px;
}

.mv-card p {
  font-size: 13px;
  opacity: 0.85;
  padding: 0 12px 14px;
}

/* ============================= */
/* 📱 MOBILE */
/* ============================= */
@media (max-width: 768px) {
  .mv-section {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* 🎬 TEXT */
/* ============================= */
.cinematic-text {
  font-size: clamp(28px, 6vw, 56px);
  letter-spacing: 8px;
  text-align: center;

  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.cinematic-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* 📱 MOBILE */
/* ============================= */
@media (max-width: 768px) {

  .banner {
    height: 40vh;
    min-height: 250px;
  }

  .banner__heading {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .mv-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .header__heading-logo {
    max-height: 70px;
  }
}

/* ============================= */
/* 📱 MENU */
/* ============================= */
.menu-drawer {
  background: rgba(0,0,0,0.95);
}

.menu-drawer a {
  color: white;
  text-decoration: none;
}

/* ============================= */
/* 🚫 IOS FLASH FIX */
/* ============================= */
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  transform: translateZ(0);
}
/* ===== CLEAN HEADER (PREMIUM) ===== */

.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
}

/* layout */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.header__heading-logo {
  max-height: 60px;
}

/* icons */
.header__icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ✨ MENU LINKS */
.menu-drawer__menu-item {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 22px;
  transition: all 0.25s ease;
}

/* hover / tap */
.menu-drawer__menu-item:hover {
  opacity: 0.6;
  transform: translateX(6px);
}
/* ============================= */
/* 🔥 SHOPIFY DRAWER (FINAL FIX) */
/* ============================= */

.menu-drawer-container {
  position: relative;
  z-index: 9999;
}

/* 🎬 PREMIUM SLIDE */
.menu-drawer {
  transform: translateX(-110%);
  opacity: 0;
  transition: 
    transform 0.45s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.3s ease;
}

.menu-drawer-container[open] .menu-drawer {
  transform: translateX(0);
  opacity: 1;
}

/* 🌫 BACKDROP */
.menu-drawer-container[open]::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 9998;
}

/* INNER CONTENT */
.menu-drawer__inner-container {
  padding: 80px 20px 20px;
  height: 100%;
  overflow-y: auto;
}

/* MENU ITEMS */
.menu-drawer__menu-item {
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
  text-decoration: none;
}

/* SUBMENU */
.menu-drawer__submenu {
  padding-left: 12px;
}

.menu-drawer__submenu a {
  color: #aaa;
  font-size: 15px;
}/* ============================= */
/* 🔥 FINAL MENU FIX (FORCE ABOVE EVERYTHING) */
/* ============================= */

/* ensure nothing clips it */
body, html {
  overflow-x: visible !important;
}

/* kill parent clipping */
.header-wrapper,
.header,
.header-drawer,
.menu-drawer-container {
  overflow: visible !important;
}

/* force drawer above ALL content */
.menu-drawer {
  z-index: 999999 !important;
}

/* force overlay below drawer but above page */
.menu-drawer-container[open]::before {
  z-index: 999998 !important;
}

/* prevent banner or sections from overlapping */
.banner,
.slideshow,
.main-content,
.page-width {
  position: relative;
  z-index: 1;
}
/* 🔥 FORCE FULL DRAWER WIDTH */
.menu-drawer-container {
  display: block !important;
  width: auto !important;
}

.menu-drawer {
  width: 85vw !important;
  max-width: 320px !important;
  min-width: 280px !important;
}
/* 🔒 STABLE SHOPIFY DRAWER */
.menu-drawer-container {
  display: block !important;
}

.menu-drawer {
  will-change: transform;
}
/* 🔥 FIX GHOST STRIP (SUMMARY CLICK AREA) */
.menu-drawer-container summary {
  position: relative;
  z-index: 10001;
}

/* reset weird expansion */
.menu-drawer-container:not([open]) summary {
  height: auto;
}

/* prevent invisible block */
.menu-drawer-container summary::before,
.menu-drawer-container summary::after {
  display: none !important;
}
.menu-drawer-container:not([open]) .menu-drawer {
  transform: translateX(-100%) !important;
  visibility: hidden;
}
.menu-drawer__menu {
  list-style: none;
}

.menu-drawer__menu li::marker {
  display: none;
}
.menu-drawer__inner-container {
  padding: 100px 30px 40px;
}

.menu-drawer__menu-item {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.menu-drawer__menu-item {
  position: relative;
}

.menu-drawer__menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #9be7ff;
  transition: width 0.3s ease;
}

.menu-drawer__menu-item:hover::after {
  width: 40%;
}
.menu-drawer {
  background: linear-gradient(
    180deg,
    #0a0a0a 0%,
    #0f1720 100%
  );
  border-right: 1px solid rgba(255,255,255,0.08);
}
.menu-drawer__menu-item {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.menu-drawer-container[open] .menu-drawer__menu-item {
  opacity: 1;
  transform: translateY(0);
}

/* stagger */
.menu-drawer__menu-item:nth-child(1) { transition-delay: 0.05s; }
.menu-drawer__menu-item:nth-child(2) { transition-delay: 0.1s; }
.menu-drawer__menu-item:nth-child(3) { transition-delay: 0.15s; }
.menu-drawer__menu-item:nth-child(4) { transition-delay: 0.2s; }
.menu-drawer__menu-item:nth-child(5) { transition-delay: 0.25s; }

.menu-drawer__submenu {
  display: block !important;
  margin-top: 10px;
}

.menu-drawer__submenu li {
  margin-bottom: 10px;
}

.menu-drawer__submenu a {
  font-size: 16px;
  opacity: 0.7;
  text-transform: none;
}
.menu-drawer {
  width: 100vw !important;
  max-width: none !important;
  height: 100vh;
}
.menu-drawer__inner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  padding: 60px 40px;
}
.mv-menu-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-menu-brand img {
  max-width: 200px;
  opacity: 0.9;
}

/* stagger letters */
.menu-drawer__menu-item span:nth-child(1) { transition-delay: 0.02s; }
.menu-drawer__menu-item span:nth-child(2) { transition-delay: 0.04s; }
.menu-drawer__menu-item span:nth-child(3) { transition-delay: 0.06s; }
/* continues automatically visually */

.menu-drawer__menu-item {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}
/* 🔥 FIX LETTER STACKING */
.menu-drawer__menu-item {
  white-space: nowrap;
}
.menu-drawer__menu-item span {
  display: inline-block;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.3s ease;
}

.menu-drawer-container[open] .menu-drawer__menu-item span {
  transform: translateY(0);
  opacity: 1;
}
/* keep spacing visible */
.menu-drawer__menu-item .space {
  display: inline-block;
  width: 0.4em;
}
.menu-drawer__menu-item {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.menu-drawer-container[open] .menu-drawer__menu-item {
  opacity: 1;
  transform: translateY(0);
}
/* 🔥 FIX HAMBURGER ICON SIZE */
summary.header__icon {
  width: auto !important;
  min-width: auto !important;
  padding: 8px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

/* prevent stretching from flex parent */
.header__icons,
.header {
  align-items: center;
}

/* fix SVG size */
summary.header__icon svg {
  width: 22px;
  height: 22px;
}

/* remove weird spacing */
header-drawer {
  margin-left: 0 !important;
}
summary.header__icon {
  transition: transform 0.2s ease;
}

summary.header__icon:active {
  transform: scale(0.9);
}
summary.header__icon {
  flex: 0 0 auto !important;
}
/* 🔥 FULL CONTROL OF HAMBURGER */
summary.header__icon.header__icon--menu {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  flex: 0 0 40px !important;
}

/* kill any inner stretching */
summary.header__icon .svg-wrapper {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* icon size */
summary.header__icon svg {
  width: 40px !important;
  height: 40px !important;
}

/* remove hidden clickable overflow */
summary.header__icon::after {
  display: none !important;
}
.header {
  justify-content: flex-start !important;
  gap: 10px;
}

.header__icons {
  gap: 10px;
}

.header__heading-logo {
  max-width: 110px;
}
/* 🔥 TRUE CENTERED LOGO */
.header {
  position: relative;
  justify-content: space-between;
}

/* center logo absolutely */
.header__heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 2;
}

/* keep logo size clean */
.header__heading-logo {
  max-height: 50px;
  width: auto;
}

/* keep left + right icons aligned */
.header__icons {
  margin-left: auto;
  z-index: 3;
}

/* ensure hamburger stays left */
header-drawer {
  z-index: 3;
}
/* 🔥 TRUE CENTERED LOGO */
.header {
  position: relative;
  justify-content: space-between;
}

/* center logo absolutely */
.header__heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 2;
}

/* keep logo size clean */
.header__heading-logo {
  max-height: 50px;
  width: auto;
}

/* keep left + right icons aligned */
.header__icons {
  margin-left: auto;
  z-index: 3;
}

/* ensure hamburger stays left */
header-drawer {
  z-index: 3;
}
/* 🔍 Smaller search icon */
.header__icon--search .svg-wrapper {
  width: 11px;
  height: 11px;
}

.header__icon--search svg {
  width: 100%;
  height: 100%;
}
/* ❌ Hide close (X) icon */
.header__icon--search .icon-close {
  display: none !important;
}
.header__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 🔍 FORCE SMALL SEARCH ICON */
.header__icon--search svg {
  width: 18px !important;
  height: 18px !important;
}

/* prevent container from stretching it */
.header__icon--search {
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
}
/* 🔥 HARD OVERRIDE */
.header__icon--search .svg-wrapper {
  width: 18px !important;
  height: 18px !important;
}

.header__icon--search .svg-wrapper svg {
  width: 100% !important;
  height: 100% !important;
}
/* 🔥 DEFINE SAFE ZONE AROUND LOGO */
.header__icons {
  position: relative;
  right: 0;
  max-width: 35%; /* prevents icons from invading center */
}
/* ✨ LIGHT SWEEP BASE */
.light-sweep {
  position: relative;
  overflow: hidden;
}

.light-sweep::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.15) 40%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0.15) 60%,
    transparent 100%
  );

  transform: skewX(-20deg);
  animation: sweep 4s infinite;
}

@keyframes sweep {
  0% {
    left: -120%;
  }
  100% {
    left: 120%;
  }
}
/* 🔥 header shine */
.header__heading-logo-wrapper {
  position: relative;
  overflow: hidden;
}

.header__heading-logo-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,255,255,0.35),
    transparent
  );
  transform: skewX(-20deg);
  animation: sweep 5s infinite;
}
.light-sweep {
  color: #fff;
  letter-spacing: 2px;
  position: relative;
}
.light-sweep::after {
  animation: sweep 6s ease-in-out infinite;
  opacity: 0.6;
}
/* ✨ HERO TEXT SWEEP */
.banner__heading {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.banner__heading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,255,255,0.5),
    transparent
  );

  transform: skewX(-20deg);
  animation: sweep 5s infinite;
}
/* ✨ SECTION TITLE SWEEP */
.title {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,255,255,0.4),
    transparent
  );

  transform: skewX(-20deg);
  animation: sweep 6s infinite;
}
/* 🔥 LIGHT SWEEP EFFECT */
.cinematic-text span {
  position: relative;
  display: inline-block;
  color: white;
  overflow: hidden;
}

/* animation */
@keyframes lightSweep {
  0% {
    left: -120%;
  }
  100% {
    left: 120%;
  }
}
/* ============================= */
/* 🔥 SCROLL-SYNC LIGHT SWEEP */
/* ============================= */

.cinematic-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cinematic-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* text container */
.cinematic-text span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: white;
}

.cinematic-text span::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--sweep-pos, -120%);
  width: 70%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 255, 200, 0.4),
    rgba(140, 0, 255, 0.4),
    transparent
  );

  transform: skewX(-20deg);
  pointer-events: none;
  filter: blur(3px);
}

  transform: skewX(-20deg);
  pointer-events: none;
}
.cinematic-text span {
  text-shadow: 0 0 8px rgba(255,255,255,0.15);
}
/* 🚫 HARD STOP any old animations */
.cinematic-text span::after {
  animation: none !important;
  transition: none !important;
}
/* Center the CTA section */
.mv-cta {
  text-align: center;
}

/* Center the button itself */
.mv-btn {
  display: inline-block;
  margin: 30px auto 0;
}
.mv-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.mv-cta-text {
  text-align: center;
  margin-bottom: 20px;
}
/* ===== DESKTOP HEADER FIX ===== */
@media screen and (min-width: 990px) {

  .header {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  /* LEFT MENU */
  .header__inline-menu {
    justify-self: start;
  }

  /* CENTER LOGO */
  .header__heading {
    justify-self: center;
    text-align: center;
  }

  .header__heading-logo {
    margin: 0 auto;
  }

  /* RIGHT ICONS */
  .header__icons {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
.list-menu--inline {
  gap: 18px;
}

.list-menu__item--link {
  letter-spacing: 1px;
  font-size: 14px;
}
#lo-que-hacemos {
  scroll-margin-top: 100px;
}
/* 🔥 FIX MOBILE SUBMENUS */

.menu-drawer__submenu {
  display: none;
}

details[open] > .menu-drawer__submenu {
  display: block;
}

/* spacing + visibility */
.menu-drawer__submenu {
  padding-left: 15px;
  margin-top: 10px;
}

.menu-drawer__submenu a {
  display: block;
  color: #aaa;
  font-size: 16px;
  margin-bottom: 10px;
}
/* make parent menu clickable */
.menu-drawer summary {
  cursor: pointer;
}
.menu-drawer {
  z-index: 10000;
}

.menu-drawer__inner-container {
  position: relative;
  z-index: 10001;
}
.menu-drawer__submenu {
  display: block !important;
  background: red;
}
details > summary {
  list-style: none;
  cursor: pointer;
}

details > summary::-webkit-details-marker {
  display: none;
}
.menu-drawer__submenu {
  visibility: visible;
  opacity: 1;
}
/* 🔥 CINEMATIC TEXT BASE */
.cinematic-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cinematic-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* 🔥 LIGHT SWEEP (SCROLL CONTROLLED) */
.cinematic-text span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: white;
}

.cinematic-text span::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--sweep-pos, -120%);
  width: 70%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 255, 200, 0.8),
    rgba(140, 0, 255, 0.8),
    transparent
  );

  transform: skewX(-20deg);
  pointer-events: none;
}
.cinematic-text {
  opacity: 1 !important;
  transform: none !important;
}
.cinematic-text span {
  position: relative;
  display: inline-block;

  /* THIS is the key */
  background: linear-gradient(
    120deg,
    white 0%,
    white 40%,
    rgba(0,255,200,0.9) 50%,
    rgba(140,0,255,0.9) 60%,
    white 70%,
    white 100%
  );

  background-size: 200% 100%;
  background-position: var(--sweep-pos, -100%) 0;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* make sure summaries are clickable */
.menu-drawer summary {
  cursor: pointer;
  list-style: none;
}

/* remove default arrow (iOS fix) */
.menu-drawer summary::-webkit-details-marker {
  display: none;
}

/* hide submenu by default */
.menu-drawer details .menu-drawer__submenu {
  display: none;
}

/* show when opened */
.menu-drawer details[open] > .menu-drawer__submenu {
  display: block;
}
.menu-drawer__inner-container {
  position: relative;
  z-index: 10001;
}

.menu-drawer summary,
.menu-drawer a {
  pointer-events: auto;
}
.menu-drawer__submenu {
  display: none;
}

.menu-drawer details[open] > .menu-drawer__submenu {
  display: block;
}
/* hide submenu */
.menu-item-has-children .menu-drawer__submenu {
  display: none;
}

/* container spacing */
.menu-item-has-children .menu-drawer__submenu {
  padding: 20px 20px 10px;
}

/* vertical stack */
.menu-item-has-children .menu-drawer__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-item-has-children .menu-drawer__submenu {
  display: inline-block;          /* ⬅️ shrink to content */
  width: auto;

  padding: 20px;
  margin: 0 auto;                 /* ⬅️ center it */

  background: rgba(20, 20, 30, 0.6);
  border-radius: 16px;

  backdrop-filter: blur(10px);
}
  font-size: 14px;
  letter-spacing: 1.5px;

  background: rgba(255,255,255,0.05);

  text-align: center;
  transition: all 0.25s ease;
}

/* hover / tap feel */
.menu-item-has-children .menu-drawer__menu-item:hover {
  background: rgba(255,255,255,0.08);
  transform: scale(1.02);
}
.menu-drawer__inner {
  padding-bottom: 40px !important;
}
.menu-item-has-children > summary {
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: 3px;
  text-align: center;
}
.menu-item-has-children .menu-drawer__menu-item {
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(0,255,200,0.05),
              0 0 30px rgba(140,0,255,0.05);
}
.menu-item-has-children .menu-drawer__menu {
  gap: 8px; /* ⬅️ reduced from 10–12 */
}
.menu-item-has-children .menu-drawer__menu {
  gap: 8px; /* ⬅️ reduced from 10–12 */
}
.menu-item-has-children .menu-drawer__menu-item {
  background: none;
  border: 1px solid rgba(255,255,255,0.08);
}
.menu-item-has-children .menu-drawer__menu {
  display: flex;
  flex-direction: column;
  align-items: center;   /* ⬅️ centers buttons */
  gap: 10px;
}
.menu-item-has-children .menu-drawer__menu {
  align-items: center;
  width: auto;                    /* ⬅️ prevent stretching */
}
.menu-item-has-children .menu-drawer__submenu {
  box-shadow: 
    0 0 40px rgba(0,255,200,0.08),
    0 0 60px rgba(140,0,255,0.08);
}
.menu-drawer__inner {
  display: flex;
  justify-content: center;
}
/* CENTER THE PRODUCT GRID */
.grid {
  @media screen and (min-width: 480px) {
  .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* CENTER EACH PRODUCT CARD */
.grid__item {
  margin: 0 auto !important;
  max-width: 320px; /* ⬅️ controls width */
  width: 100%;
}
.card {
  text-align: center;
}

.card__media img {
  border-radius: 16px;
}
.grid {
  gap: 30px !important;
}
@media screen and (min-width: 480px) {
  .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.collection-hero {
  background: radial-gradient(circle at 30% 50%, rgba(0,255,200,0.15), transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(157,78,221,0.15), transparent 40%),
              #000;
}
header,
.header,
.section-header {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 999 !important;
  position: relative !important;
}
.mv-video-bg {
  display: none !important;
}
/* Hide floating Facebook icon */
a[href*="facebook"],
[class*="facebook"],
[id*="facebook"] {
  display: none !important;
}
/* SHOP DROPDOWN FIX */
.header__submenu,
.menu-drawer__submenu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* controls spacing between items */
}

/* Keep items grouped (not stretched) */
.header__submenu li,
.menu-drawer__submenu li {
  flex: 0 0 auto;
}
.header__submenu {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(10px);
}
/* SHOP DROPDOWN — VERTICAL STACK */
.header__submenu {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  width: auto;
}
/* MENU ITEMS */
.header__submenu li a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  letter-spacing: 0.5px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.3s ease;
}

/* HOVER GLOW */
.header__submenu li a:hover {
  background: linear-gradient(135deg, #00ffc8, #9d4edd);
  color: #000;

  box-shadow:
    0 0 15px rgba(0,255,200,0.4),
    0 0 25px rgba(157,78,221,0.4);

  transform: translateY(-2px) scale(1.03);
}
/* HIDDEN STATE */
.header__submenu {
  opacity: 0;
  transform: translateY(15px) scale(0.98);
  pointer-events: none;
  transition: all 0.35s ease;
}

/* SHOW ON HOVER */
.header__menu-item:hover .header__submenu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.header__submenu {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.header__submenu li {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.header__menu-item:hover .header__submenu li {
  opacity: 1;
  transform: translateY(0);
}

.header__menu-item:hover .header__submenu li:nth-child(1) { transition-delay: 0.05s; }
.header__menu-item:hover .header__submenu li:nth-child(2) { transition-delay: 0.1s; }
.header__menu-item:hover .header__submenu li:nth-child(3) { transition-delay: 0.15s; }
/* FORCE SHOP DROPDOWN TO STACK VERTICALLY */
.header__submenu .list-menu {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  gap: 12px;
}

/* EACH ITEM */
.header__submenu .list-menu__item {
  width: auto !important;
}

/* LINKS STYLE */
.header__submenu .list-menu__item a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  text-align: center;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.3s ease;
}

/* HOVER GLOW */
.header__submenu .list-menu__item a:hover {
  background: linear-gradient(135deg, #00ffc8, #9d4edd);
  color: #000;

  box-shadow:
    0 0 12px rgba(0,255,200,0.4),
    0 0 20px rgba(157,78,221,0.4);

  transform: translateY(-2px);
}
.header__submenu ul {
  display: flex !important;
  flex-direction: column !important;
}
.header__submenu {
  padding: 20px !important;
  border-radius: 16px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
}
/* FORCE DROPDOWN INTO SINGLE COLUMN */
.header__submenu .list-menu--disclosure {
  display: grid !important;
  grid-template-columns: 1fr !important; /* ONE COLUMN */
  justify-items: center;
  gap: 12px;
}

/* ALSO TARGET DEFAULT LIST JUST IN CASE */
.header__submenu .list-menu {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center;
}

/* CLEAN ITEM WIDTH */
.header__submenu li {
  width: auto !important;
}
.header__submenu a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.header__submenu a:hover {
  background: linear-gradient(135deg, #00ffc8, #9d4edd);
  color: #000;
  box-shadow: 0 0 15px rgba(0,255,200,0.4);
}
.header__submenu * {
  display: block !important;
}
/* FORCE ENTIRE SHOP DROPDOWN INTO ONE COLUMN */
.header__submenu,
.header__submenu .mega-menu,
.header__submenu .mega-menu__list,
.header__submenu ul {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px;
}

/* MAKE SURE EACH ITEM BEHAVES */
.header__submenu li {
  width: auto !important;
  text-align: center;
}

/* FIX LINKS */
.header__submenu a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.header__submenu a:hover {
  background: linear-gradient(135deg, #00ffc8, #9d4edd);
  color: #000;

  box-shadow:
    0 0 15px rgba(0,255,200,0.4),
    0 0 25px rgba(157,78,221,0.4);

  transform: translateY(-2px);
}
.header__submenu > * {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* STACK DROPDOWN */
.header__submenu .list-menu {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  gap: 12px;
}
.header__submenu a {
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.header__submenu a:hover {
  background: linear-gradient(135deg, #00ffc8, #9d4edd);
  color: #000;
  box-shadow: 0 0 15px rgba(0,255,200,0.4);
}
.header__submenu a {
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.header__submenu a:hover {
  background: linear-gradient(135deg, #00ffc8, #9d4edd);
  color: #000;
  box-shadow: 0 0 15px rgba(0,255,200,0.4);
}
.header__submenu.list-menu--disclosure {
  display: block !important;
}

.header__submenu.list-menu--disclosure li {
  display: block !important;
}
/* FORCE SHOP DROPDOWN TO STACK */
#HeaderMenu-MenuList-6,
#HeaderMenu-MenuList-6.list-menu,
#HeaderMenu-MenuList-6.list-menu--disclosure {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

/* FORCE EACH ITEM FULL CONTROL */
#HeaderMenu-MenuList-6 li {
  display: block !important;
  width: auto !important;
}

/* STYLE ITEMS */
#HeaderMenu-MenuList-6 a {
  display: inline-block !important;
  padding: 10px 22px;
  border-radius: 999px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  text-align: center;
  transition: all 0.3s ease;
}

/* HOVER */
#HeaderMenu-MenuList-6 a:hover {
  background: linear-gradient(135deg, #00ffc8, #9d4edd);
  color: #000;

  box-shadow:
    0 0 15px rgba(0,255,200,0.4),
    0 0 25px rgba(157,78,221,0.4);

  transform: translateY(-2px);
}
/* === HARD OVERRIDE: SHOP DROPDOWN FIX === */

/* target the open dropdown specifically */
details[open] > .header__submenu {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;

  position: absolute;
  left: 50% !important;
  transform: translateX(-50%) !important;

  width: auto !important;
  min-width: 180px;
}

/* kill ANY horizontal layout */
details[open] > .header__submenu * {
  flex-direction: column !important;
}

/* force items to stack */
details[open] > .header__submenu li {
  display: block !important;
  width: 100% !important;
  text-align: center;
}

/* button style */
details[open] > .header__submenu a {
  display: block !important;
  width: fit-content;
  margin: 0 auto;

  padding: 10px 22px;
  border-radius: 999px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.3s ease;
}

/* hover */
details[open] > .header__submenu a:hover {
  background: linear-gradient(135deg, #00ffc8, #9d4edd);
  color: #000;
  box-shadow: 0 0 15px rgba(0,255,200,0.4);
}
.header__submenu {
  background: rgba(10,10,10,0.85) !important;
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px;
}
/* REMOVE BUTTON STYLE FROM SHOP (MOBILE MENU) */
.menu-drawer__menu-item[href*="shop"] {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;

  font-size: inherit !important;
  letter-spacing: inherit !important;
  text-transform: uppercase;

  display: block;
  text-align: center;
}

/* OPTIONAL: MATCH SPACING WITH OTHER ITEMS */
.menu-drawer__menu li {
  margin: 18px 0;
}
.menu-drawer__menu-item {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
/* REMOVE BUTTON CONTAINER FROM SHOP IN MOBILE MENU */
.menu-drawer__menu li:last-child {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* REMOVE STYLING FROM LINK INSIDE */
.menu-drawer__menu li,
.menu-drawer__menu a {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

  font-size: inherit !important;
  letter-spacing: inherit !important;
  text-transform: uppercase;
}

/* MAKE IT MATCH OTHER LINKS */
.menu-drawer__menu-item {
  text-align: center;
}
.menu-drawer__menu-item {
  letter-spacing: 2px;
  font-weight: 500;
}
/* FORCE MAIN CONTENT TEXT TO WHITE */
.main-content,
.main-content * {
  color: #ffffff !important;
}
/* TARGET HEADINGS + TEXT UNDER TOGGLE */
h1, h2, h3, p, li {
  color: #ffffff !important;
}
/* APPLY YOUR MV BUTTON STYLE TO SHOPIFY BUTTON */
.button,
button.button {
  display: inline-block !important;
  margin-top: 30px;
  padding: 14px 34px !important;
  border-radius: 12px !important;

  background: linear-gradient(135deg, #6a5cff, #9d4edd) !important;
  background-size: 200% 200% !important;

  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  letter-spacing: 1px;

  transition: all 0.3s ease !important;
  box-shadow: 0 10px 30px rgba(106, 92, 255, 0.3) !important;
  border: none !important;
}

/* HOVER */
.button:hover,
button.button:hover {
  transform: translateY(-3px) scale(1.03);
  background-position: right center !important;
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.5) !important;
}

/* ACTIVE */
.button:active,
button.button:active {
  transform: scale(0.97);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.mv-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  border-radius: 12px;

  background: linear-gradient(135deg, #6a5cff, #9d4edd);
  background-size: 200% 200%;

  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600;
  letter-spacing: 1px;

  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(106, 92, 255, 0.3);
}

.mv-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background-position: right center;
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.5);
}

.mv-btn:active {
  transform: scale(0.97);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.mv-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  border-radius: 12px;

  background: linear-gradient(135deg, #6a5cff, #9d4edd);
  background-size: 200% 200%;

  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600;
  letter-spacing: 1px;

  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(106, 92, 255, 0.3);
}

.mv-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background-position: right center;
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.5);
}

.mv-btn:active {
  transform: scale(0.97);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.mv-btn {
  animation: mvGradientMove 6s ease infinite;
}

@keyframes mvGradientMove {
  0% { background-position: left; }
  50% { background-position: right; }
  100% { background-position: left; }
}
/* BACK LINK — LUXURY STYLE */
a[href*="collections"],
a[href*="all"] {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 500;
  letter-spacing: 1px;

  position: relative;
  display: inline-block;

  transition: all 0.3s ease;
}

/* subtle gradient underline */
a[href*="collections"]::after,
a[href*="all"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, #6a5cff, #9d4edd);
  transition: width 0.3s ease;
}

/* hover effect */
a[href*="collections"]:hover::after,
a[href*="all"]:hover::after {
  width: 100%;
}

/* arrow spacing */
a[href*="collections"]::before,
a[href*="all"]::before {
  content: "← ";
  opacity: 0.7;
}
.product-form__submit {
  pointer-events: auto !important;
}

button[type="submit"] {
  pointer-events: auto !important;
  cursor: pointer !important;
}
.product-form__submit {
  pointer-events: auto !important;
  z-index: 10;
}

.product-form {
  position: relative;
  z-index: 5;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(.19,1,.22,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.client-card {
  position: relative;
  overflow: hidden;
}

.client-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,255,200,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.client-card:hover::after {
  opacity: 1;
}
.portal-btn {
  transition: all 0.3s ease;
}

.portal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,255,200,0.3);
}
.client-status {
  text-align: center;
  margin-top: -40px;
  margin-bottom: 60px;
}

.client-status h2 {
  font-size: 28px;
  letter-spacing: 1px;
  background: linear-gradient(90deg,#00ffc8,#d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-status p {
  opacity: 0.6;
  margin-top: 6px;
}
header details {
  position: relative;
}

header details[open] > ul,
header .header__submenu {
  position: absolute !important;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;

  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);

  border-radius: 12px;
  padding: 10px 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  z-index: 9999;
}
@media (max-width: 989px) {

  /* RESET BROKEN POSITIONING */
  .menu-drawer__submenu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
  }

  /* MAKE IT STACK CLEAN */
  .menu-drawer details[open] > .menu-drawer__submenu {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    margin-top: 10px;
    padding: 12px;

    background: rgba(255,255,255,0.03);
    border-radius: 14px;
  }

  /* FIX SHOP BUTTON LOOK */
  .menu-drawer summary {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    font-size: 18px;
    letter-spacing: 2px;
  }

  /* STYLE SUB ITEMS */
  .menu-drawer__submenu a {
    display: block;
    width: 100%;

    padding: 14px;
    border-radius: 12px;

    background: rgba(255,255,255,0.05);
    text-align: center;

    transition: all 0.3s ease;
  }

  .menu-drawer__submenu a:hover {
    background: linear-gradient(135deg,#00ffc8,#9d4edd);
    color: #000;
  }

}