/* =========================================================
   VaporLiss — estilos generales
   Paleta BOLD & URGENT: magenta vibrante + negro + amarillo acento
   (estilo tienda dropship / producto viral de TikTok)
   ========================================================= */

:root {
  --pink: #FF2D6D;        /* magenta vibrante — antes rosa pálido */
  --pink-dark: #E4004E;   /* magenta fuerte para CTAs */
  --pink-light: #FFE3EC;
  --yellow: #FFD400;      /* acento para badges/urgencia */
  --charcoal: #14100F;
  --gray-900: #201d1c;
  --gray-700: #4a4644;
  --gray-500: #7a7573;
  --gray-200: #eee9e7;
  --gray-100: #f8f5f4;
  --white: #ffffff;
  --success: #2fae5e;
  --whatsapp: #25D366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(34, 32, 31, 0.14);
  --shadow-glow: 0 8px 26px rgba(228, 0, 78, 0.4);
  --font-head: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; margin: 0 0 .5em; line-height: 1.2; }

p { margin: 0 0 1em; color: var(--gray-700); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .3px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  text-align: center;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-glow);
  animation: pulse-btn 2.2s ease-in-out infinite;
}
.btn-primary:hover { animation-play-state: paused; filter: brightness(1.08); }

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 8px 20px rgba(228,0,78,0.4); }
  50% { box-shadow: 0 8px 30px rgba(228,0,78,0.65); }
}

.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { opacity: .9; }

.btn-link {
  background: none;
  color: var(--gray-500);
  text-decoration: underline;
  padding: 8px;
  font-weight: 500;
}

/* ---------- Marquee bar ---------- */
.marquee-bar {
  background: var(--charcoal);
  color: var(--yellow);
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 8px 0;
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-track span { padding-right: 0; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}
.logo span { color: var(--pink-dark); }

.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--gray-700);
}
.main-nav a:hover { color: var(--pink-dark); }
.nav-cta {
  background: var(--pink-dark);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .main-nav {
    display: flex;
    position: static;
    box-shadow: none;
    padding: 0;
    background: none;
  }
  .hamburger { display: none; }
}

.main-nav.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px;
  gap: 16px;
  box-shadow: var(--shadow);
}

/* ---------- Hero ---------- */
.hero { padding: 40px 0 60px; background: linear-gradient(180deg, var(--pink-light), var(--white)); }

.hero-inner {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  grid-template-areas:
    "badge"
    "title"
    "sub"
    "media"
    "price"
    "colors"
    "ctas";
}

.hero-area-badge { grid-area: badge; margin-bottom: 0; justify-self: start; }
.hero-area-title { grid-area: title; }
.hero-area-sub { grid-area: sub; }
.hero-area-media { grid-area: media; }
.hero-area-price { grid-area: price; }
.hero-area-colors { grid-area: colors; }
.hero-area-ctas { grid-area: ctas; }

/* En desktop volvemos al layout de 2 columnas: texto a la izquierda
   (apilado, como antes) y la foto a la derecha ocupando toda la altura. */
@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 36px;
    grid-template-areas:
      "badge  media"
      "title  media"
      "sub    media"
      "price  media"
      "colors media"
      "ctas   media";
  }
}

.badge {
  display: inline-block;
  background: var(--charcoal);
  color: var(--yellow);
  border: none;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

.hero-sub { font-size: 16px; max-width: 46ch; }

.price-box {
  background: var(--white);
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  padding: 18px 20px;
  max-width: 340px;
  box-shadow: var(--shadow);
}
.price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.price-regular { text-decoration: line-through; color: var(--gray-500); font-size: 16px; }
.discount-badge {
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
}
.price-offer { font-family: var(--font-head); font-size: 38px; font-weight: 800; color: var(--pink-dark); }
.price-note { font-size: 13px; color: var(--gray-500); margin: 4px 0 0; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-media { position: relative; }
.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--gray-100);
}

.starburst {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 5;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--pink-dark);
  border: 3px solid var(--yellow);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.1;
  box-shadow: 0 8px 20px rgba(228,0,78,0.45);
  transform: rotate(12deg);
  animation: starburst-wiggle 3s ease-in-out infinite;
}
@keyframes starburst-wiggle {
  0%, 100% { transform: rotate(12deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.06); }
}

/* ---------- Trust row ---------- */
.trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--gray-200);
}
@media (min-width: 640px) { .trust-row { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--charcoal);
}
.trust-item span { line-height: 1.2; }

/* ---------- Color picker ---------- */
.color-picker { margin: 4px 0 20px; }
.color-picker-label { font-size: 13px; color: var(--gray-700); display: block; margin-bottom: 8px; }
.color-picker-label strong { color: var(--charcoal); }

.swatch-row { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  flex-shrink: 0;
}
.swatch img { width: 100%; height: 100%; object-fit: cover; }
.swatch.active { border-color: var(--pink-dark); box-shadow: 0 0 0 2px rgba(217,127,145,0.25); }

/* ---------- Video demo ---------- */
.section-video { background: var(--charcoal); }
.section-video .section-title, .section-video .section-sub { color: var(--white); }
.section-video .section-sub { color: #cfc9c7; }
.video-wrap {
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.video-wrap video { width: 100%; display: block; aspect-ratio: 9/16; object-fit: contain; background: #000; }

/* ---------- Product gallery ---------- */
.gallery-disclaimer { text-align: center; font-size: 12px; color: var(--gray-500); max-width: 60ch; margin: -20px auto 32px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}
.gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.gallery-item figcaption { padding: 10px 12px; font-size: 12px; font-weight: 600; color: var(--gray-700); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 700px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
}
.review-stars { color: #E8B923; font-size: 16px; letter-spacing: 2px; margin-bottom: 8px; }
.review-text { font-size: 14px; font-style: italic; }
.review-name { font-size: 13px; font-weight: 700; color: var(--charcoal); margin: 0; }

.reviews-empty {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
}
.reviews-empty-stars { color: var(--gray-200); font-size: 22px; letter-spacing: 4px; margin-bottom: 10px; }
.reviews-empty p { margin: 0; font-size: 14px; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-alt { background: var(--gray-100); }

.section-title {
  font-size: clamp(24px, 4vw, 32px);
  text-align: center;
  color: var(--charcoal);
}
.section-sub {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 40px;
  font-size: 16px;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
}
.feature-icon { font-size: 28px; margin-bottom: 10px; }
.feature-card h3 { font-size: 17px; margin-bottom: 6px; }
.feature-card p { font-size: 14px; margin: 0; }

/* ---------- Antes y después ---------- */
.ba-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .ba-grid { grid-template-columns: repeat(3, 1fr); } }

.ba-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-images figure { margin: 0; position: relative; }
.ba-images img { width: 100%; height: 220px; object-fit: cover; }
.ba-images figcaption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(34,32,31,0.75);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ba-label { text-align: center; padding: 14px 12px; font-weight: 600; font-size: 14px; margin: 0; }

/* ---------- Cómo funciona ---------- */
.steps-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 760px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  background: var(--pink-light);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink-dark);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 16px; margin-bottom: 6px; }
.step-card p { font-size: 14px; margin: 0; }

.product-shot { max-width: 420px; margin: 0 auto 40px; }
.product-shot img { border-radius: var(--radius); box-shadow: var(--shadow); }

.specs-table {
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  font-size: 14px;
}
.spec-row:nth-child(odd) { background: var(--gray-100); }
.spec-row span:first-child { font-weight: 600; color: var(--charcoal); }
.spec-row span:last-child { color: var(--gray-700); text-align: right; }
.specs-disclaimer { text-align: center; font-size: 12px; color: var(--gray-500); margin: 16px auto 0; max-width: 640px; }

/* ---------- Precio CTA ---------- */
.section-price {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a0e1e 60%, var(--pink-dark) 130%);
  color: var(--white);
  text-align: center;
}
.section-price h2 { color: var(--white); font-size: clamp(24px,4.5vw,32px); font-weight: 800; }
.price-cta-inner p { color: #f0c9d4; }
.price-cta-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin: 18px 0;
  flex-wrap: wrap;
}
.price-regular-lg { text-decoration: line-through; color: #b98b98; font-size: 20px; }
.price-offer-lg { font-family: var(--font-head); font-size: 44px; font-weight: 800; color: var(--yellow); }

/* ---------- Sticky mobile buy bar ---------- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: var(--white);
  border-top: 2px solid var(--charcoal);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 20px rgba(0,0,0,0.12);
}
.sticky-bar-price { display: flex; flex-direction: column; line-height: 1.15; }
.sticky-bar-offer { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--pink-dark); }
.sticky-bar-off { font-size: 11px; font-weight: 800; color: var(--success); text-transform: uppercase; }
.sticky-bar .btn { padding: 12px 22px; font-size: 14px; animation: none; }
@media (min-width: 900px) { .sticky-bar { display: none !important; } }

/* ---------- Order form ---------- */
.section-order { background: var(--gray-100); }

.order-layout { max-width: 620px; margin: 0 auto; position: relative; }

.order-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.form-block { margin-bottom: 32px; }
.form-block:last-of-type { margin-bottom: 24px; }
.form-block h3 {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.num-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink-dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin: 14px 0 6px;
}
input[type=text], input[type=tel], input[type=email], input[type=number], textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--gray-100);
}
input:focus, textarea:focus { outline: 2px solid var(--pink); background: var(--white); }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 14px;
}
@media (min-width: 520px) { .form-row { grid-template-columns: 1fr 1fr; } }

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  overflow: hidden;
}
.qty-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--gray-100);
  font-size: 20px;
  cursor: pointer;
}
.qty-selector input {
  width: 56px;
  text-align: center;
  border: none;
  background: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 0;
}
.order-total { margin: 14px 0 0; font-size: 15px; }
.order-total strong { color: var(--pink-dark); font-size: 18px; }

.bank-box {
  background: var(--pink-light);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 14px;
}
.bank-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 6px 0; border-bottom: 1px dashed rgba(0,0,0,0.08); }
.bank-row:last-child { border-bottom: none; }
.bank-row span:first-child { color: var(--gray-500); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .4px; }
.bank-row span.value { font-weight: 700; color: var(--charcoal); }
.copy-btn {
  border: 1px solid var(--pink-dark);
  color: var(--pink-dark);
  background: none;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}
.copy-btn:hover { background: var(--pink-dark); color: var(--white); }
.bank-fallback { font-size: 14px; color: var(--gray-700); margin: 0; }

.upload-hint { font-size: 13px; margin-bottom: 10px; }
.file-drop {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-100);
  text-align: center;
}
.file-drop:hover { border-color: var(--pink); }
.file-drop input[type=file] { display: none; }
.file-preview {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
}
.file-preview img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; }

.form-disclaimer { font-size: 12px; color: var(--gray-500); text-align: center; margin-top: 12px; }
.form-error { font-size: 13px; color: var(--pink-dark); font-weight: 600; margin: 6px 0 0; }

.order-confirm {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 28px;
  text-align: center;
}
.confirm-icon { font-size: 40px; margin-bottom: 10px; }
.order-confirm .btn { margin-top: 16px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 6px 18px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  font-size: 15px;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 20px;
  color: var(--pink-dark);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding-bottom: 16px; font-size: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #cfc9c7; padding: 48px 0 20px; }
.footer-inner {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 760px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .logo { color: var(--white); }
.footer-brand p { font-size: 14px; color: #a8a3a1; margin-top: 8px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-bottom { text-align: center; font-size: 12px; color: #8a8582; margin: 20px auto 0; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37,211,102,0.45);
  z-index: 60;
}
