/* ========================================================================
   EMBERNETWORK — SELLAUTH NATIVE HERO
   Pega este archivo en Assets/custom.css.
   NO requiere tocar script.js.
   ======================================================================== */

:root {
  --ember-sa-orange: #ff5b24;
  --ember-sa-orange-hot: #ff321e;
  --ember-sa-orange-soft: #ff9857;
  --ember-sa-text: #f7f2ed;
  --ember-sa-muted: rgba(244,239,234,.78);
  --ember-sa-ease: cubic-bezier(.2,.8,.2,1);
}

.ember-sa-hero,
.ember-sa-hero * {
  box-sizing: border-box;
}

.ember-sa-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: clamp(790px, calc(100vh - 58px), 940px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #09090c;
  color: var(--ember-sa-text);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* ---------- FONDO ---------- */

.ember-sa-bg {
  position: absolute;
  inset: -25px;
  z-index: -6;
  background-image:
    linear-gradient(
      180deg,
      rgba(20,5,5,.24) 0%,
      rgba(12,4,5,.08) 34%,
      rgba(8,5,7,.22) 66%,
      rgba(7,7,10,.69) 100%
    ),
    var(--ember-sa-background);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(.96) contrast(1.03) brightness(.74);
  transform: scale(1.05);
  transition: transform .22s linear;
  will-change: transform;
}

.ember-sa-overlay {
  position: absolute;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(255,116,58,.04),
      transparent 52%
    ),
    linear-gradient(
      90deg,
      rgba(6,7,10,.36),
      rgba(6,7,10,.05) 32%,
      rgba(6,7,10,.03) 68%,
      rgba(6,7,10,.27)
    );
}

.ember-sa-vignette {
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  box-shadow:
    inset 0 90px 100px rgba(0,0,0,.14),
    inset 0 -170px 150px rgba(0,0,0,.39),
    inset 80px 0 100px rgba(0,0,0,.13),
    inset -80px 0 100px rgba(0,0,0,.10);
}

.ember-sa-water {
  position: absolute;
  left: 50%;
  bottom: 2%;
  z-index: -3;
  width: min(74vw,1080px);
  height: 250px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: .62;
  filter: blur(30px);
  background:
    radial-gradient(
      ellipse,
      rgba(255,93,34,.12),
      rgba(255,58,25,.05) 35%,
      transparent 72%
    );
  animation: emberSaWater 6.5s ease-in-out infinite alternate;
}

@keyframes emberSaWater {
  from {
    opacity: .48;
    transform: translateX(-50%) scale(.96,.90);
  }

  to {
    opacity: .73;
    transform: translateX(-50%) scale(1.05,1.05);
  }
}

/* ---------- PETALOS ---------- */

.ember-sa-petals {
  position: absolute;
  inset: 0;
  z-index: 7;
  overflow: hidden;
  pointer-events: none;
}

.ember-sa-petal {
  position: absolute;
  top: -12vh;
  width: var(--petal-size,10px);
  height: calc(var(--petal-size,10px) * .62);
  opacity: var(--petal-opacity,.6);
  border-radius: 80% 0 80% 0;
  background:
    linear-gradient(
      135deg,
      rgba(255,210,216,.95),
      rgba(219,62,78,.88)
    );
  filter: blur(var(--petal-blur,0px));
  box-shadow: 0 0 8px rgba(235,70,85,.14);
  animation:
    emberSaPetalFall var(--petal-duration,14s) linear infinite,
    emberSaPetalSway 5s ease-in-out infinite alternate;
  animation-delay: var(--petal-delay,0s);
}

@keyframes emberSaPetalFall {
  from {
    top: -12vh;
    transform: translate3d(0,0,0) rotate(0);
  }

  to {
    top: 112vh;
    transform:
      translate3d(var(--petal-drift,80px),0,0)
      rotate(460deg);
  }
}

@keyframes emberSaPetalSway {
  from { margin-left: -18px; }
  to { margin-left: 18px; }
}

/* ---------- CENTRO ---------- */

.ember-sa-copy {
  position: relative;
  z-index: 10;
  width: min(920px,57vw);
  padding: 92px 12px 250px;
  text-align: center;
  transition: transform .24s var(--ember-sa-ease);
}

.ember-sa-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 17px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,90,34,.26);
  border-radius: 13px;
  background:
    linear-gradient(
      rgba(25,12,12,.76),
      rgba(12,10,13,.72)
    );
  color: var(--ember-sa-orange-soft);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  backdrop-filter: blur(11px);
  box-shadow:
    0 10px 30px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.ember-sa-badge-icon {
  color: var(--ember-sa-orange);
  font-size: 1.02rem;
  text-shadow: 0 0 12px rgba(255,90,34,.3);
}

.ember-sa-title {
  margin: 0 !important;
  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    "Arial Black",
    sans-serif !important;
  font-size: clamp(3.7rem,4.7vw,5.25rem) !important;
  font-weight: 900 !important;
  line-height: .91 !important;
  letter-spacing: .008em !important;
  text-transform: uppercase;
  color: #f0efed !important;
  text-shadow:
    0 5px 0 rgba(50,50,54,.70),
    0 8px 18px rgba(0,0,0,.54);
}

.ember-sa-title-white,
.ember-sa-title-fire {
  display: block;
  white-space: nowrap;
}

.ember-sa-title-fire {
  background:
    linear-gradient(
      #ff7641,
      #ed4326 43%,
      #bd2417
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  filter:
    drop-shadow(0 6px 0 rgba(82,14,10,.68))
    drop-shadow(0 0 9px rgba(255,80,30,.09));
  animation: emberSaTitle 3.4s ease-in-out infinite alternate;
}

@keyframes emberSaTitle {
  to {
    filter:
      drop-shadow(0 6px 0 rgba(82,14,10,.68))
      drop-shadow(0 0 18px rgba(255,80,30,.24));
  }
}

.ember-sa-subtitle {
  max-width: 710px;
  margin: 22px auto 0 !important;
  color: var(--ember-sa-muted) !important;
  font-size: clamp(1rem,1.16vw,1.1rem) !important;
  line-height: 1.56 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.46);
}

/* ---------- BOTONES LATERALES ---------- */

.ember-sa-cta {
  position: absolute;
  top: 46.5%;
  z-index: 12;
  width: clamp(215px,16.5vw,275px);
  min-height: 68px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,92,37,.46);
  border-radius: 14px;
  background:
    linear-gradient(
      rgba(18,13,15,.79),
      rgba(8,9,12,.86)
    );
  color: #fff !important;
  text-decoration: none !important;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .02em;
  backdrop-filter: blur(12px);
  box-shadow:
    0 16px 40px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.035);
  transform: translateY(-50%);
  transition:
    transform .24s var(--ember-sa-ease),
    border-color .24s,
    box-shadow .24s var(--ember-sa-ease);
}

.ember-sa-cta-reviews {
  left: clamp(28px,3.1vw,56px);
}

.ember-sa-cta-products {
  right: clamp(28px,3.1vw,56px);
}

.ember-sa-cta:hover {
  border-color: rgba(255,128,73,.88);
  box-shadow:
    0 0 19px rgba(255,86,32,.22),
    0 0 42px rgba(255,52,26,.10),
    0 18px 48px rgba(0,0,0,.31);
  transform: translateY(-50%) translateY(-3px);
}

.ember-sa-cta-icon,
.ember-sa-arrow {
  color: var(--ember-sa-orange);
  text-shadow: 0 0 13px rgba(255,90,34,.30);
}

.ember-sa-arrow {
  font-size: 1.35rem;
  transition: transform .2s var(--ember-sa-ease);
}

.ember-sa-cta:hover .ember-sa-arrow {
  transform: translateX(5px);
}

/* ---------- SERVER CARD ---------- */

.ember-sa-server {
  position: absolute;
  right: clamp(28px,3.2vw,56px);
  bottom: 178px;
  z-index: 13;
  width: clamp(230px,16.3vw,280px);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 15px;
  background:
    linear-gradient(
      rgba(24,13,14,.84),
      rgba(15,11,13,.88)
    );
  backdrop-filter: blur(13px);
  box-shadow:
    0 18px 48px rgba(0,0,0,.29),
    0 0 24px rgba(255,80,30,.05);
}

.ember-sa-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #65e683;
  font-size: .78rem;
  font-weight: 800;
}

.ember-sa-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #32d363;
  box-shadow: 0 0 10px rgba(50,211,99,.48);
  animation: emberSaOnline 1.9s ease-in-out infinite;
}

@keyframes emberSaOnline {
  50% {
    box-shadow:
      0 0 13px rgba(50,211,99,.75),
      0 0 23px rgba(50,211,99,.18);
  }
}

.ember-sa-ip {
  margin-bottom: 12px;
  overflow: hidden;
  color: #f8f3ef;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .94rem;
  font-weight: 700;
}

.ember-sa-copy-ip {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 43px;
  border: 1px solid rgba(255,116,62,.34);
  border-radius: 9px;
  background: linear-gradient(135deg,#a92716,#8e1f12);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    0 0 14px rgba(255,76,30,.12),
    inset 0 1px 0 rgba(255,255,255,.07);
  transition:
    transform .2s var(--ember-sa-ease),
    filter .2s,
    box-shadow .2s;
}

.ember-sa-copy-ip:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow:
    0 0 18px rgba(255,76,30,.24),
    0 0 34px rgba(255,50,25,.1);
}

/* ---------- BENEFICIOS ---------- */

.ember-sa-benefits {
  position: absolute;
  left: 50%;
  bottom: 56px;
  z-index: 11;
  width: min(930px,58vw);
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 13px;
  transform: translateX(-50%);
}

.ember-sa-benefit {
  position: relative;
  overflow: hidden;
  min-height: 128px;
  padding: 15px 12px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background:
    linear-gradient(
      rgba(18,14,17,.74),
      rgba(9,10,13,.79)
    );
  text-align: center;
  backdrop-filter: blur(11px);
  box-shadow:
    0 16px 38px rgba(0,0,0,.22);
  transform-style: preserve-3d;
  transition:
    transform .22s var(--ember-sa-ease),
    border-color .22s,
    box-shadow .22s;
}

.ember-sa-benefit::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--ember-sa-orange),
      transparent
    );
  box-shadow: 0 0 13px rgba(255,90,34,.22);
}

.ember-sa-benefit:hover {
  border-color: rgba(255,93,38,.30);
  box-shadow:
    0 20px 48px rgba(0,0,0,.29),
    0 0 22px rgba(255,83,30,.08);
}

.ember-sa-benefit-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  color: var(--ember-sa-orange-soft);
  font-size: 1.2rem;
}

.ember-sa-benefit strong {
  display: block;
  margin-bottom: 5px;
  color: #fff4ec;
  font-size: .73rem;
  line-height: 1.16;
}

.ember-sa-benefit small {
  display: block;
  color: rgba(225,221,216,.67);
  font-size: .68rem;
  line-height: 1.34;
}

/* ---------- SCROLL ---------- */

.ember-sa-scroll {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 14;
  display: flex;
  align-items: center;
  gap: 11px;
  transform: translateX(-50%);
  color: rgba(225,222,216,.62);
  font-size: .65rem;
  letter-spacing: .10em;
  pointer-events: none;
}

.ember-sa-line {
  width: 26px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.48)
    );
}

.ember-sa-line-reverse {
  transform: scaleX(-1);
}

.ember-sa-mouse {
  position: relative;
  width: 19px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 10px;
}

.ember-sa-mouse::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 3px;
  background: var(--ember-sa-orange);
  transform: translateX(-50%);
  animation: emberSaMouse 1.5s ease-in-out infinite;
}

@keyframes emberSaMouse {
  from {
    opacity: 0;
    transform: translate(-50%,0);
  }

  35%,70% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate(-50%,9px);
  }
}

/* ---------- ENTRADA ---------- */

.ember-sa-enter {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity .8s var(--ember-sa-ease),
    transform .8s var(--ember-sa-ease),
    filter .8s;
}

.ember-sa-ready .ember-sa-enter {
  opacity: 1;
  transform: none;
  filter: none;
}

.ember-sa-ready .ember-sa-badge {
  transition-delay: .05s;
}

.ember-sa-ready .ember-sa-title {
  transition-delay: .12s;
}

.ember-sa-ready .ember-sa-subtitle {
  transition-delay: .2s;
}

/* ---------- CLICK FX ---------- */

.ember-sa-ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255,255,255,.48);
  box-shadow:
    0 0 13px rgba(255,115,65,.62),
    0 0 30px rgba(255,50,25,.32);
  transform: translate(-50%,-50%) scale(0);
  animation: emberSaRipple .58s ease-out forwards;
}

@keyframes emberSaRipple {
  to {
    opacity: 0;
    transform: translate(-50%,-50%) scale(15);
  }
}

.ember-sa-spark {
  position: fixed;
  z-index: 2147483645;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  pointer-events: none;
  background: #ff9b59;
  box-shadow:
    0 0 8px #ff5b27,
    0 0 18px rgba(255,48,24,.55);
  animation: emberSaSpark .58s ease-out forwards;
}

@keyframes emberSaSpark {
  from {
    opacity: 1;
    transform: translate(-50%,-50%);
  }

  to {
    opacity: 0;
    transform:
      translate(-50%,-50%)
      translate(var(--spark-x),var(--spark-y))
      scale(.15);
  }
}

/* ---------- RESPONSIVE ---------- */

@media (min-width: 1700px) {
  .ember-sa-copy {
    width: 980px;
  }

  .ember-sa-title {
    font-size: 5.15rem !important;
  }

  .ember-sa-benefits {
    width: 960px;
  }
}

@media (min-width: 1181px) and (max-width: 1450px) {
  .ember-sa-copy {
    width: min(820px,56vw);
  }

  .ember-sa-title {
    font-size: clamp(3.45rem,4.45vw,4.25rem) !important;
  }

  .ember-sa-cta {
    width: clamp(195px,15.8vw,235px);
  }

  .ember-sa-benefits {
    width: min(800px,59vw);
  }
}

@media (max-width: 1180px) {
  .ember-sa-hero {
    min-height: 980px;
  }

  .ember-sa-copy {
    width: min(820px,calc(100% - 60px));
    padding: 105px 16px 420px;
  }

  .ember-sa-title {
    font-size: clamp(3.3rem,7vw,4.7rem) !important;
  }

  .ember-sa-cta {
    top: auto;
    bottom: 310px;
    width: min(285px,38vw);
    transform: none;
  }

  .ember-sa-cta:hover {
    transform: translateY(-3px);
  }

  .ember-sa-cta-reviews {
    left: calc(50% - 300px);
  }

  .ember-sa-cta-products {
    right: calc(50% - 300px);
  }

  .ember-sa-server {
    right: 50%;
    bottom: 205px;
    width: min(390px,calc(100% - 40px));
    transform: translateX(50%);
  }

  .ember-sa-benefits {
    bottom: 50px;
    width: min(900px,calc(100% - 40px));
  }
}

@media (max-width: 820px) {
  .ember-sa-hero {
    display: block;
    min-height: auto;
    padding-bottom: 22px;
  }

  .ember-sa-bg {
    background-position: 54% center;
  }

  .ember-sa-copy {
    width: 100%;
    padding: 92px 18px 28px;
  }

  .ember-sa-title {
    font-size: clamp(2.8rem,13vw,4.3rem) !important;
    line-height: .94 !important;
  }

  .ember-sa-title-white,
  .ember-sa-title-fire {
    white-space: normal;
  }

  .ember-sa-subtitle {
    font-size: .96rem !important;
  }

  .ember-sa-cta,
  .ember-sa-server,
  .ember-sa-benefits,
  .ember-sa-scroll {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .ember-sa-cta {
    width: min(92%,430px);
    min-height: 61px;
    margin: 11px auto 0;
  }

  .ember-sa-cta:hover {
    transform: translateY(-2px);
  }

  .ember-sa-server {
    width: min(92%,430px);
    margin: 16px auto 0;
  }

  .ember-sa-benefits {
    width: min(92%,680px);
    margin: 22px auto 0;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .ember-sa-benefit:last-child {
    grid-column: 1 / -1;
  }

  .ember-sa-scroll {
    width: fit-content;
    margin: 23px auto 0;
  }
}

@media (max-width: 520px) {
  .ember-sa-badge {
    padding: 0 13px;
    font-size: .68rem;
  }

  .ember-sa-title {
    font-size: clamp(2.55rem,14vw,3.7rem) !important;
  }

  .ember-sa-benefits {
    grid-template-columns: 1fr;
  }

  .ember-sa-benefit:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ember-sa-petal {
    display: none !important;
  }

  .ember-sa-water,
  .ember-sa-title-fire,
  .ember-sa-status-dot,
  .ember-sa-mouse::before {
    animation: none !important;
  }

  .ember-sa-enter {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}


/* ========================================================================
   SELLAUTH V2 FIX — asset directo
   ======================================================================== */

.ember-sa-bg {
  background-image:
    linear-gradient(
      180deg,
      rgba(20,5,5,.24) 0%,
      rgba(12,4,5,.08) 34%,
      rgba(8,5,7,.22) 66%,
      rgba(7,7,10,.69) 100%
    ),
    url("ember-japan-bg.webp") !important;
}


/* ==========================================================================
   EMBERNETWORK — GLASS + NEON DESIGN SYSTEM V10
   Diseñado como PATCH real para SellAuth.
   No reemplaza los datos ni el carrito/productos de SellAuth.
   ========================================================================== */

:root {
  --eg10-bg: #07080c;
  --eg10-bg-2: #0a0b10;
  --eg10-panel: rgba(13, 14, 20, .66);
  --eg10-panel-strong: rgba(12, 12, 18, .82);
  --eg10-panel-soft: rgba(18, 18, 25, .50);
  --eg10-border: rgba(255,255,255,.11);
  --eg10-border-hot: rgba(255,91,35,.58);
  --eg10-orange: #ff5c28;
  --eg10-orange-2: #ff8a4d;
  --eg10-red: #ff3724;
  --eg10-purple: #a05cff;
  --eg10-blue: #4fa7ff;
  --eg10-green: #50e37d;
  --eg10-text: #fff8f3;
  --eg10-muted: rgba(235,231,230,.68);
  --eg10-ease: cubic-bezier(.16,.84,.28,1);
  --eg10-shadow:
    0 20px 55px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.045);
}

/* ---------- GLOBAL PAGE ---------- */

html {
  background: var(--eg10-bg) !important;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(900px 520px at 15% 18%, rgba(255,68,27,.055), transparent 62%),
    radial-gradient(850px 520px at 84% 58%, rgba(128,64,255,.038), transparent 68%),
    linear-gradient(180deg,#07080c,#08090d 44%,#06070a) !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .43;
  background-image:
    linear-gradient(rgba(255,255,255,.011) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.009) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom,rgba(0,0,0,.15),#000 30%,#000 80%,transparent);
}

#app {
  isolation: isolate;
}

/* ---------- GLASS UTILITIES ADDED BY V10 JS ---------- */

.ember-v10-glass {
  border: 1px solid var(--eg10-border) !important;
  background:
    linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.006)),
    rgba(11,12,17,.66) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: var(--eg10-shadow) !important;
}

.ember-v10-glass-hot {
  border-color: rgba(255,96,43,.34) !important;
  box-shadow:
    0 20px 55px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,80,30,.025),
    0 0 28px rgba(255,61,25,.055),
    inset 0 1px 0 rgba(255,255,255,.055) !important;
}

.ember-v10-card {
  --eg10-x: 50%;
  --eg10-y: 50%;
  --eg10-rx: 0deg;
  --eg10-ry: 0deg;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,.105) !important;
  background:
    radial-gradient(circle at var(--eg10-x) var(--eg10-y),
      rgba(255,123,70,.085),
      transparent 42%),
    linear-gradient(145deg,rgba(255,255,255,.034),rgba(255,255,255,.008)),
    rgba(11,12,17,.77) !important;
  -webkit-backdrop-filter: blur(17px) saturate(1.15);
  backdrop-filter: blur(17px) saturate(1.15);
  box-shadow:
    0 20px 48px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.045) !important;
  transform-style: preserve-3d;
  transition:
    transform .26s var(--eg10-ease),
    border-color .26s ease,
    box-shadow .26s ease,
    filter .26s ease !important;
}

.ember-v10-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background:
    linear-gradient(115deg,
      transparent 0%,
      transparent 38%,
      rgba(255,255,255,.11) 47%,
      rgba(255,126,72,.12) 51%,
      transparent 60%,
      transparent 100%);
  background-size: 230% 100%;
  background-position: 180% 0;
  transition: opacity .22s ease;
}

.ember-v10-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 19;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255,108,56,.55),
    inset 0 0 20px rgba(255,77,30,.05),
    0 0 18px rgba(255,68,25,.08);
  transition: opacity .24s ease;
}

.ember-v10-card:hover {
  border-color: rgba(255,105,52,.42) !important;
  box-shadow:
    0 26px 64px rgba(0,0,0,.34),
    0 0 26px rgba(255,74,26,.08),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
  filter: brightness(1.025);
}

.ember-v10-card:hover::before {
  opacity: 1;
  animation: emberV10CardSheen .9s var(--eg10-ease) forwards;
}

.ember-v10-card:hover::after {
  opacity: 1;
}

@keyframes emberV10CardSheen {
  from { background-position: 180% 0; }
  to   { background-position: -90% 0; }
}

/* ---------- NAVBAR: GLASS + NEON ---------- */

.sa-header {
  position: relative;
  z-index: 50 !important;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(5,7,11,.70) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
  backdrop-filter: blur(22px) saturate(1.28);
  box-shadow:
    0 10px 34px rgba(0,0,0,.20),
    inset 0 -1px 0 rgba(255,89,34,.035);
}

.e4-navbar,
.sa-header nav {
  background:
    linear-gradient(90deg,rgba(12,13,18,.86),rgba(8,9,13,.72)) !important;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.e4-navitem,
.e4-discord,
.e4-account,
.e4-cart,
.e4-menu,
.sa-header a,
.sa-header button {
  transition:
    translate .18s var(--eg10-ease),
    scale .18s var(--eg10-ease),
    color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    filter .18s ease !important;
}

.e4-discord,
.e4-account,
.e4-cart,
.e4-menu {
  background:
    linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.006)),
    rgba(15,15,21,.66) !important;
  border-color: rgba(255,255,255,.11) !important;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.e4-discord:hover {
  border-color: rgba(160,92,255,.55) !important;
  box-shadow:
    0 0 16px rgba(142,75,255,.13),
    inset 0 0 20px rgba(146,75,255,.035) !important;
}

.e4-account:hover,
.e4-cart:hover,
.e4-menu:hover {
  border-color: rgba(255,90,35,.55) !important;
  box-shadow:
    0 0 18px rgba(255,70,25,.12),
    inset 0 0 18px rgba(255,70,25,.035) !important;
}

.e4-navitem:hover,
.e4-navitem.e4-active {
  color: #fff !important;
  filter: drop-shadow(0 0 7px rgba(255,89,34,.18));
}

/* ---------- HERO: same structure, glass/neon treatment ---------- */

.ember-sa-hero {
  min-height: clamp(800px,calc(100vh - 60px),940px);
  border-bottom: 1px solid rgba(255,87,31,.15) !important;
}

.ember-sa-bg {
  filter: saturate(1.07) contrast(1.055) brightness(.69) !important;
}

.ember-sa-overlay {
  background:
    radial-gradient(circle at 50% 38%,rgba(255,119,60,.075),transparent 46%),
    radial-gradient(circle at 82% 40%,rgba(130,60,255,.025),transparent 34%),
    linear-gradient(180deg,rgba(5,5,9,.12),rgba(8,5,7,.04) 36%,rgba(7,7,11,.34) 75%,rgba(5,6,9,.84)) !important;
}

.ember-sa-badge {
  border-color: rgba(255,107,55,.40) !important;
  background:
    linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.008)),
    rgba(18,11,14,.62) !important;
  -webkit-backdrop-filter: blur(19px) saturate(1.2);
  backdrop-filter: blur(19px) saturate(1.2);
  box-shadow:
    0 12px 34px rgba(0,0,0,.25),
    0 0 22px rgba(255,70,25,.055),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
}

.ember-sa-title {
  text-shadow:
    0 5px 0 rgba(32,32,36,.76),
    0 11px 28px rgba(0,0,0,.55) !important;
}

.ember-sa-title-fire {
  background:
    linear-gradient(
      180deg,
      #ffae72 0%,
      #ff6740 22%,
      #f04225 57%,
      #b82016 100%
    ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  filter:
    drop-shadow(0 5px 0 rgba(79,13,9,.68))
    drop-shadow(0 0 12px rgba(255,71,27,.16)) !important;
}

.ember-sa-cta {
  border-color: rgba(255,99,45,.52) !important;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,112,58,.085),transparent 55%),
    linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.004)),
    rgba(11,11,16,.66) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.22);
  backdrop-filter: blur(20px) saturate(1.22);
  box-shadow:
    0 17px 45px rgba(0,0,0,.29),
    0 0 0 1px rgba(255,76,29,.025),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
}

.ember-sa-cta:hover {
  border-color: rgba(255,139,80,.88) !important;
  box-shadow:
    0 0 20px rgba(255,83,30,.18),
    0 0 46px rgba(255,55,25,.09),
    0 20px 52px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.ember-sa-server {
  border: 1px solid rgba(255,110,58,.32) !important;
  background:
    radial-gradient(circle at 50% -15%,rgba(255,92,39,.09),transparent 55%),
    linear-gradient(145deg,rgba(255,255,255,.048),rgba(255,255,255,.008)),
    rgba(11,11,17,.70) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow:
    0 22px 54px rgba(0,0,0,.34),
    0 0 24px rgba(255,72,27,.055),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
}

.ember-sa-copy-ip {
  border-color: rgba(255,114,58,.68) !important;
  background:
    linear-gradient(135deg,rgba(190,43,24,.91),rgba(139,25,16,.91)) !important;
  box-shadow:
    0 0 17px rgba(255,77,29,.15),
    inset 0 1px 0 rgba(255,255,255,.09) !important;
}

.ember-sa-benefit {
  border-color: rgba(255,255,255,.115) !important;
  background:
    radial-gradient(circle at 50% -25%,rgba(255,106,50,.055),transparent 52%),
    linear-gradient(145deg,rgba(255,255,255,.036),rgba(255,255,255,.005)),
    rgba(10,11,16,.64) !important;
  -webkit-backdrop-filter: blur(19px) saturate(1.18);
  backdrop-filter: blur(19px) saturate(1.18);
  box-shadow:
    0 18px 43px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.045) !important;
}

.ember-sa-benefit::after {
  left: 7% !important;
  right: 7% !important;
  height: 1px !important;
  opacity: .72;
}

.ember-sa-benefit:hover {
  border-color: rgba(255,106,53,.46) !important;
  box-shadow:
    0 24px 52px rgba(0,0,0,.32),
    0 0 22px rgba(255,76,28,.075),
    inset 0 1px 0 rgba(255,255,255,.055) !important;
}

/* ---------- BELOW HERO: typography ---------- */

.ember-v10-section {
  position: relative;
  isolation: isolate;
}

.ember-v10-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  z-index: -1;
  width: min(760px,90%);
  height: 210px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: .35;
  filter: blur(40px);
  background: radial-gradient(ellipse,rgba(255,68,27,.05),transparent 68%);
}

.ember-v10-section h1,
.ember-v10-section h2,
.ember-v10-section h3 {
  color: var(--eg10-text) !important;
  letter-spacing: -.025em;
}

.ember-v10-section > h2,
.ember-v10-section-heading {
  text-align: center;
  text-shadow: 0 8px 25px rgba(0,0,0,.35);
}

.ember-v10-accent-word {
  color: var(--eg10-orange) !important;
  text-shadow: 0 0 17px rgba(255,77,29,.12);
}

/* ---------- CATEGORY SECTION ---------- */

.ember-v10-category-section {
  padding-top: clamp(48px,7vw,82px) !important;
  padding-bottom: clamp(44px,6vw,72px) !important;
}

.ember-v10-category-grid {
  width: min(1120px,calc(100% - 34px));
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
}

.ember-v10-category-card {
  min-height: 245px;
  display: grid !important;
  grid-template-columns: minmax(280px,1.08fr) minmax(260px,.92fr) !important;
  align-items: stretch !important;
  padding: 0 !important;
  border-color: rgba(255,91,36,.36) !important;
}

.ember-v10-category-card img {
  width: 100% !important;
  height: 100% !important;
  min-height: 245px;
  object-fit: cover !important;
  border-radius: 15px 0 0 15px !important;
  transition:
    transform .75s var(--eg10-ease),
    filter .5s ease !important;
}

.ember-v10-category-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.ember-v10-category-copy {
  min-width: 0;
  padding: clamp(25px,4vw,48px) !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background:
    linear-gradient(90deg,rgba(16,16,23,.42),rgba(8,9,14,.80));
}

.ember-v10-category-copy::after {
  content: "→";
  position: absolute;
  right: 28px;
  top: 50%;
  color: var(--eg10-orange);
  font-size: 1.7rem;
  transform: translateY(-50%);
  text-shadow: 0 0 15px rgba(255,78,28,.22);
  transition: translate .24s var(--eg10-ease);
}

.ember-v10-category-card:hover .ember-v10-category-copy::after {
  translate: 6px 0;
}

/* ---------- PRODUCTS ---------- */

.ember-v10-products-section {
  padding-top: clamp(28px,4vw,54px) !important;
  padding-bottom: clamp(70px,8vw,104px) !important;
}

.ember-v10-products-grid {
  width: min(1160px,calc(100% - 30px));
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 18px !important;
}

.ember-v10-product-card {
  min-width: 0;
  border-color: rgba(255,103,49,.28) !important;
}

.ember-v10-product-card img {
  transition:
    transform .7s var(--eg10-ease),
    filter .45s ease !important;
}

.ember-v10-product-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) brightness(1.035);
}

/* Product titles/prices when SellAuth's markup provides them */
.ember-v10-product-card h3,
.ember-v10-product-card h4,
.ember-v10-product-card [class*="title"] {
  color: #fff !important;
  font-weight: 800 !important;
}

.ember-v10-product-card [class*="price"],
.ember-v10-product-card [data-price] {
  color: #ff8c50 !important;
  font-weight: 800 !important;
  text-shadow: 0 0 12px rgba(255,84,32,.10);
}

/* ---------- GENERIC SELLAUTH CARDS / REVIEWS / PAGE CONTENT ---------- */

.ember-v10-auto-card {
  border-radius: 16px !important;
}

.ember-v10-auto-card:hover {
  border-color: rgba(255,103,50,.32) !important;
}

.ember-v10-content-page main,
.ember-v10-content-page [role="main"] {
  position: relative;
}

/* ---------- FORMS / INPUTS ---------- */

input,
textarea,
select {
  border-color: rgba(255,255,255,.105) !important;
  background: rgba(12,13,19,.65) !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255,96,43,.48) !important;
  box-shadow:
    0 0 0 3px rgba(255,82,31,.055),
    0 0 20px rgba(255,67,25,.05) !important;
}

/* ---------- MODALS / CART / SEARCH / LOGIN ---------- */

[role="dialog"],
[class*="modal"],
[class*="drawer"],
[class*="cart-panel"],
[class*="search-modal"] {
  -webkit-backdrop-filter: blur(22px) saturate(1.16);
  backdrop-filter: blur(22px) saturate(1.16);
}

[role="dialog"] > div,
[class*="modal"] > div,
[class*="drawer"] > div {
  border-color: rgba(255,255,255,.11) !important;
}

/* ---------- FOOTER ---------- */

footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,101,48,.12) !important;
  background:
    radial-gradient(600px 180px at 50% 0%,rgba(255,66,25,.045),transparent 70%),
    rgba(7,8,12,.76) !important;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

/* ---------- SCROLL REVEAL ---------- */

.ember-v10-reveal {
  opacity: 0;
  translate: 0 25px;
  scale: .985;
  filter: blur(7px);
  transition:
    opacity .8s var(--eg10-ease),
    translate .8s var(--eg10-ease),
    scale .8s var(--eg10-ease),
    filter .8s ease;
  transition-delay: var(--eg10-delay,0ms);
}

.ember-v10-reveal.ember-v10-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: blur(0);
}

/* ---------- PAGE SCROLL BAR ---------- */

#ember-v10-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483600;
  width: var(--eg10-scroll,0%);
  height: 2px;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(255,57,24,.2),
      #ff5c28 42%,
      #ffb06f 76%,
      #9b5cff);
  box-shadow:
    0 0 8px rgba(255,74,27,.8),
    0 0 18px rgba(255,58,24,.34);
}

/* ---------- MOUSE FX ---------- */

#ember-v10-cursor-halo,
#ember-v10-cursor-ring,
#ember-v10-cursor-core {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483500;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%,-50%);
}

#ember-v10-cursor-halo {
  width: 240px;
  height: 240px;
  background:
    radial-gradient(circle,
      rgba(255,126,71,.105),
      rgba(255,73,29,.045) 34%,
      rgba(140,72,255,.018) 50%,
      transparent 70%);
  filter: blur(8px);
  mix-blend-mode: screen;
}

#ember-v10-cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,128,74,.37);
  background: rgba(255,78,30,.012);
  box-shadow:
    inset 0 0 15px rgba(255,77,29,.04),
    0 0 18px rgba(255,68,25,.06);
  transition:
    width .2s var(--eg10-ease),
    height .2s var(--eg10-ease),
    border-color .2s ease,
    opacity .18s ease;
}

#ember-v10-cursor-core {
  width: 5px;
  height: 5px;
  background: #ffc098;
  box-shadow:
    0 0 8px rgba(255,136,81,.95),
    0 0 19px rgba(255,68,28,.56);
}

body.ember-v10-pointer #ember-v10-cursor-halo { opacity: .92; }
body.ember-v10-pointer #ember-v10-cursor-ring { opacity: .92; }
body.ember-v10-pointer #ember-v10-cursor-core { opacity: .96; }

body.ember-v10-over-action #ember-v10-cursor-ring {
  width: 48px;
  height: 48px;
  border-color: rgba(255,127,72,.62);
}

/* ---------- AMBIENT EMBERS ---------- */

#ember-v10-ambient {
  position: fixed;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.ember-v10-float-ember {
  position: absolute;
  left: var(--eg10-left);
  bottom: -30px;
  width: var(--eg10-size);
  height: var(--eg10-size);
  border-radius: 50%;
  opacity: 0;
  background: #ff7d3d;
  box-shadow:
    0 0 8px rgba(255,79,28,.72),
    0 0 18px rgba(255,58,22,.25);
  animation:
    emberV10Float var(--eg10-duration) linear infinite;
  animation-delay: var(--eg10-delay);
}

.ember-v10-float-ember:nth-child(5n) {
  background: #a45fff;
  box-shadow:
    0 0 8px rgba(164,95,255,.58),
    0 0 18px rgba(139,72,255,.20);
}

@keyframes emberV10Float {
  0% {
    opacity: 0;
    translate: 0 0;
  }
  12% { opacity: var(--eg10-opacity); }
  82% { opacity: calc(var(--eg10-opacity) * .7); }
  100% {
    opacity: 0;
    translate: var(--eg10-drift) -108vh;
  }
}

/* ---------- CLICK BURST ---------- */

.ember-v10-click-ring {
  position: fixed;
  z-index: 2147483644;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(255,135,78,.72);
  box-shadow: 0 0 14px rgba(255,76,27,.22);
  transform: translate(-50%,-50%) scale(.25);
  animation: emberV10ClickRing .7s var(--eg10-ease) forwards;
}

@keyframes emberV10ClickRing {
  to {
    opacity: 0;
    transform: translate(-50%,-50%) scale(4.8);
  }
}

.ember-v10-click-spark {
  position: fixed;
  z-index: 2147483645;
  width: var(--eg10-s,5px);
  height: var(--eg10-s,5px);
  border-radius: 50%;
  pointer-events: none;
  background: var(--eg10-sc,#ffa66c);
  box-shadow: 0 0 9px rgba(255,82,31,.86);
  animation: emberV10ClickSpark .64s var(--eg10-ease) forwards;
}

@keyframes emberV10ClickSpark {
  from {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
  }
  to {
    opacity: 0;
    transform:
      translate(-50%,-50%)
      translate(var(--eg10-sx),var(--eg10-sy))
      scale(.08);
  }
}

/* ---------- RESPONSIVE: reference-like mobile ---------- */

@media (max-width: 1180px) {
  .ember-sa-hero {
    min-height: 980px;
  }
}

@media (max-width: 900px) {
  .ember-sa-hero {
    display: block !important;
    min-height: auto !important;
    padding-bottom: 24px !important;
  }

  .ember-sa-copy {
    width: 100% !important;
    padding: 88px 22px 22px !important;
  }

  .ember-sa-title {
    font-size: clamp(2.7rem,8.5vw,4.35rem) !important;
    line-height: .94 !important;
  }

  .ember-sa-subtitle {
    max-width: 660px;
    margin-top: 20px !important;
  }

  /* Buttons side-by-side like the concept image. */
  .ember-sa-cta {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    display: inline-flex !important;
    vertical-align: top;
    width: min(42vw,340px) !important;
    min-height: 64px !important;
    margin: 15px 6px 0 !important;
    transform: none !important;
  }

  .ember-sa-cta:hover {
    transform: translateY(-2px) !important;
  }

  .ember-sa-cta-reviews {
    margin-left: calc((100% - min(86vw,692px))/2) !important;
  }

  .ember-sa-server {
    position: relative !important;
    inset: auto !important;
    width: min(520px,86%) !important;
    margin: 18px auto 0 !important;
    transform: none !important;
  }

  .ember-sa-benefits {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: min(94%,830px) !important;
    margin: 24px auto 0 !important;
    grid-template-columns: repeat(5,minmax(0,1fr)) !important;
    gap: 10px !important;
    transform: none !important;
  }

  .ember-sa-benefit {
    min-height: 124px !important;
    padding: 13px 8px 12px !important;
  }

  .ember-sa-benefit:last-child {
    grid-column: auto !important;
  }

  .ember-sa-scroll {
    position: relative !important;
    inset: auto !important;
    width: fit-content !important;
    margin: 20px auto 0 !important;
    transform: none !important;
  }

  .ember-v10-category-card {
    min-height: 250px;
    grid-template-columns: minmax(265px,1.02fr) minmax(245px,.98fr) !important;
  }

  .ember-v10-products-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
}

@media (max-width: 670px) {
  .ember-sa-copy {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .ember-sa-title {
    font-size: clamp(2.45rem,12vw,3.75rem) !important;
  }

  .ember-sa-cta {
    display: flex !important;
    width: min(92%,430px) !important;
    margin: 10px auto 0 !important;
  }

  .ember-sa-cta-reviews {
    margin-left: auto !important;
  }

  .ember-sa-benefits {
    overflow-x: auto;
    overflow-y: visible;
    justify-content: start;
    grid-template-columns: repeat(5,minmax(135px,1fr)) !important;
    scroll-snap-type: x proximity;
    padding: 4px 2px 10px;
    scrollbar-width: none;
  }

  .ember-sa-benefits::-webkit-scrollbar {
    display: none;
  }

  .ember-sa-benefit {
    scroll-snap-align: start;
  }

  .ember-v10-category-card {
    grid-template-columns: 1fr !important;
  }

  .ember-v10-category-card img {
    min-height: 210px;
    max-height: 260px;
    border-radius: 15px 15px 0 0 !important;
  }

  .ember-v10-category-copy {
    padding: 24px 24px 28px !important;
  }

  .ember-v10-products-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 470px) {
  .ember-sa-title {
    font-size: clamp(2.2rem,12.8vw,3.2rem) !important;
  }

  .ember-sa-subtitle {
    font-size: .89rem !important;
  }

  .ember-sa-server {
    width: min(94%,430px) !important;
  }

  .ember-v10-category-grid,
  .ember-v10-products-grid {
    width: calc(100% - 24px);
  }
}

/* ---------- ACCESSIBILITY / LOW MOTION ---------- */

@media (pointer: coarse), (max-width: 820px) {
  #ember-v10-cursor-halo,
  #ember-v10-cursor-ring,
  #ember-v10-cursor-core {
    display: none !important;
  }

  .ember-v10-card:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #ember-v10-cursor-halo,
  #ember-v10-cursor-ring,
  #ember-v10-cursor-core,
  #ember-v10-ambient,
  .ember-v10-click-ring,
  .ember-v10-click-spark,
  #ember-v10-scroll-progress {
    display: none !important;
  }

  .ember-v10-reveal {
    opacity: 1 !important;
    translate: 0 0 !important;
    scale: 1 !important;
    filter: none !important;
    transition: none !important;
  }
}