/* =========================
   RESET BÁSICO
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: serif;
  line-height: 1.6;
  background-color: #000;
  color: #fff;
}

/* =========================
   HEADER / MENU
========================= */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: flex-end;
  padding: 1.1rem;
  min-height: 54px;
}

.site-title {
  position: fixed;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);

  font-family: Georgia, Cambria, "Palatino Linotype", "Book Antiqua", serif;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.05em;

  color: #ffffff;

  z-index: 1100;
  pointer-events: none;
}

/* Hamburger */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background-color: white;
  display: block;
}

/* Overlay menu */
.site-nav {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);

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

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.site-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.site-nav ul {
  list-style: none;
  text-align: center;
}

.site-nav li {
  margin: 1.2rem 0;
}

.site-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 300;
}

/* =========================
   SECCIONES FULLSCREEN
========================= */
.section {
  position: relative;
  width: 100%;
  min-height: 100vh;

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

  background-color: #111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay general */
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* Sección clara (Services) */
.section-reading::after {
  background: none;
}

/* =========================
   CONTENIDO DE SECCIÓN
========================= */
.section-content {
  position: relative;
  z-index: 1;

  padding: 2.5rem;
  max-width: 1440px;
}

.section-content h1,
.section-content h2 {
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-content p {
  margin-bottom: 1.2rem;
  opacity: 0.95;
}

/* =========================
   BOTONES
========================= */
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.75rem;

  text-decoration: none;
  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;

  transition: all 0.3s ease;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* =========================
   FONDOS POR SECCIÓN
========================= */
.section-hero {
  background-image: url("/assets/images/hero.jpg");
}

.section-reading {
  background-image: url("/assets/images/reading.jpeg");
}

.section-energy {
  background-image: url("/assets/images/energy.jpg");
}

.section-about {
  background-image: url("/assets/images/about.jpg");
}

.section-book {
  background-image: url("/assets/images/book.jpg");
}
.section-thankyou {
  background-image: url("/assets/images/thankyou.jpg"); /* la foto que quieras */
}
.section-healing {
  background-image: url("/assets/images/healing.jpg");
}
.section-evileye {
  background-image: url("/assets/images/evileye.jpg");
}
.section-legal {
  background-image: url("/assets/images/neutral.jpeg");
}
.section-cookies {
  background-image: url("/assets/images/neutral.jpeg");
}
.section-privacy {
  background-image: url("/assets/images/neutral.jpeg");
}
.section-womb {
  background-image: url("/assets/images/wombin.jpeg");
}
/* =========================
   HERO
========================= */
.hero-content {
  width: 100%;
  text-align: center;
}

.hero-eyebrow {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-title {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.08em;

  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.05;

  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.6);
}

.hero-text {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.7);
}

/* =========================
   SERVICES SECTION
========================= */
.services-content {
  width: 100%;
  text-align: center;
}

.services-title {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.12em;

  font-size: clamp(2.8rem, 6vw, 3.8rem);
  margin-bottom: 4.5rem;
  margin-top: -6vh;

  color: #fff;
}

.services-title-black {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-style: italic;

  letter-spacing: 0.08em;
  font-size: clamp(2.8rem, 6vw, 3.8rem);

  color: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

/* Cards */
.service-card {
  position: relative;
  min-height: 260px;

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

  text-decoration: none;
  background-size: cover;
  background-position: center;

  border-radius: 4px;
  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  perspective: 1200px;
}
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(.4,0,.2,1);
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}
.card-face {
  position: absolute;
  inset: 0;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

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

  padding: 1.6rem;
  text-align: center;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s ease;
}

/* FRONT */
.card-front {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.service-card:hover .card-front {
  opacity: 0;
  pointer-events: none;
}
.service-card:hover .card-back {
  opacity: 1;
  pointer-events: auto;
}
.card-front > * {
  position: relative;
  z-index: 1;
}
.card-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* 👈 oscuridad suave */
  z-index: 0;
}
/* BACK */
.card-back {
  transform: rotateY(180deg);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
}
.service-clearing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15); /* ajusta: 0.25–0.5 */
  z-index: 0;
}
.service-clearing .card-back {
  transform: rotateY(180deg);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
}
.card-description {
  font-size: 1.1rem;   /* 🔑 pequeño pero legible */
  line-height: 1.3;
  opacity: 0.95;
  margin-bottom: 1.3rem;
  max-width: 95%;
  font-style: italic;
}

.card-meta {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  opacity: 0.9;

  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.service-name {
  position: relative;
  z-index: 1;

  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.12em;

  font-size: 1.9rem;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
}
/* =========================
   MOBILE TAP BEHAVIOR
========================= */
.service-card.is-active .card-inner {
  transform: rotateY(180deg);
}

.service-card.is-active .card-front {
  opacity: 0;
  pointer-events: none;
}

.service-card.is-active .card-back {
  opacity: 1;
  pointer-events: auto;
}


/* Card backgrounds */
.service-reading {
  background-image: url("/assets/images/readingback.jpg");
}
.service-energy {
  background-image: url("/assets/images/energyback.jpg");
}
.service-clearing {
  background-image: url("/assets/images/clearingback.jpg");
}
.service-womb {
  background-image: url("/assets/images/womb.jpeg");
}
/* =========================
   BOOKING FORM
========================= */
.booking-form {
  margin-top: 1.5rem;
}

.booking-form label {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.6rem 0.7rem;

  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: inherit;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.booking-form textarea {
  resize: vertical;
}

.booking-form small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  opacity: 0.75;
}

.booking-form button.btn {
  background: transparent;
  cursor: pointer;
}

/* =========================
   BOOK – OPTIONS & LAYOUT
========================= */
.reading-options {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.reading-option {
  cursor: pointer;
}

.reading-option input {
  margin-right: 0.5rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-row label {
  flex: 1;
}

.question {
  margin-top: 0.8rem;

  opacity: 1;
  transform: translateX(0);
  filter: blur(0);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    filter 0.6s ease,
    height 0.6s ease,
    margin 0.6s ease;

  height: auto;
  overflow: hidden;

  pointer-events: auto;
}

/* DESAPARECEN Y COLAPSAN */
.question.is-hidden {
  opacity: 0;
  transform: translateX(-6px);
  filter: blur(8px);

  height: 0;
  margin-top: 0;

  pointer-events: none;
}

/* APARECEN */
.question.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);

  height: auto;
}
/* =========================
   BOOK – ANIMACIÓN FORMULARIO
========================= */

.questions-wrapper {
  position: relative;
}

.questions {
  position: relative;
}

/* Preguntas animadas (sin empujar layout) */
.question {
  margin-top: 1.2rem;

  opacity: 1;
  transform: translateX(0);
  filter: blur(0);

  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(.4,0,.2,1),
    filter 0.55s ease;

  pointer-events: auto;
}

.question.is-hidden {
  opacity: 0;
  transform: translateX(-28px);
  filter: blur(4px);
  pointer-events: none;
}

.question.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Botón independiente del layout */
.submit-wrapper {
  margin-top: 2.2rem;

  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* Cuando hay solo 1 pregunta */
.submit-wrapper.compact {
  transform: translateY(-14px);
}
/* =========================
   BOOK – LAYOUT ESTABLE
   (solo esta página)
========================= */

.section-book {
  min-height: 100vh;        /* ya lo hereda, pero lo reforzamos */
  background-size: cover;
  background-position: center center;
  align-items: flex-start;
}

.section-book .section-content {
  margin-top: clamp(1rem, 3vh, 2rem);
}
/* =========================
   BOOK – DATE INPUT
========================= */
.booking-form input[type="date"] {
  color-scheme: dark;
}
/* =========================
   ABOUT
========================= */
.section-about a {
  color: #fff;
  text-decoration: underline;
  opacity: 0.9;
}

.section-about a:hover {
  opacity: 1;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
/* =========================
   SOCIAL BUTTONS (ABOUT)
========================= */
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;

  color: #fff; /* 🔑 blanco */
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;

  background: transparent;
  text-decoration: none;

  min-width: auto;   /* 🔑 evita barras largas */
}

.btn-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.9;
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 768px) {
  .section-content {
    padding: 4rem;
  }

  .contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.4rem;

    align-items: center; /* 🔑 centra los botones */
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }
    .card-description {
    font-size: 1.45rem;
  }
}
/* =========================
   BOOK – MÁS ANCHO EN DESKTOP
========================= */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
  }
    .card-description {
    font-size: 1.35rem;
  }
}
/* =========================
   THANK -YOU
========================= */
.thankyou-content {
  text-align: center;
}
/* =========================
   THANK YOU CARD
========================= */
.thankyou-content {
  width: 100%;
  display: flex;
  justify-content: center;
}

.thankyou-card {
  max-width: 520px;
  padding: 2rem 2.2rem;

  background: rgba(0, 0, 0, 0.25); /* transparencia clave */
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);

  text-align: center;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.thankyou-card h1 {
  margin-bottom: 1rem;
}

.thankyou-card p {
  margin-bottom: 0.8rem;
  opacity: 0.95;
}
/* =========================
   SERVICE PAGES (HEALING / EVIL EYE)
========================= */

.service-page {
  max-width: 640px;
  text-align: center;
  color: #fff;
}

.service-title {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

.service-text p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  opacity: 0.95;
}

.service-lead {
  font-style: italic;
  font-size: 1.15rem;
  opacity: 1;
}

.service-info {
  margin: 2rem 0 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  font-family: "Playfair Display", Georgia, serif;
}

.service-info .price {
  font-size: 1.4rem;
  font-weight: 600;
}

.service-info .duration {
  font-size: 0.95rem;
  opacity: 0.85;
  align-self: flex-end;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  padding: 0.7rem 1.6rem;
  border-radius: 999px;

  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.35);

  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;

  backdrop-filter: blur(4px);
  transition: all 0.35s ease;
}

.whatsapp-button img {
  width: 18px;
  height: 18px;
}

.whatsapp-button:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.whatsapp-button i {
  font-size: 1.2rem;
  line-height: 1;
}

.whatsapp-button {
  gap: 0.6rem;
}
.whatsapp-button:hover i {
  color: #25D366; /* verde WhatsApp */
}
.btn-stripe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;

  padding: 0.9rem 2.2rem;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;

  background: rgba(255, 255, 255, 0.08);
  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;

  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-stripe i {
  font-size: 1.1rem;
  opacity: 0.9;
}

.btn-stripe:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.btn-stripe:active {
  transform: translateY(0);
}

/* =========================
   FEEDBACK SECTION – RECOMMENDED
   Card carousel with soft edges
========================= */

.section-feedback {
  background-image: url("/assets/images/feedback.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 5rem 0;
}
.section-feedback::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0; 
}
.section-feedback .feedback-wrapper {
  position: relative;
  z-index: 1;
}

/* Wrapper centrado */
.feedback-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
  text-align: center;
}
.feedback-wrapper::after {
  content: "© crescentmoonfairy.com";
  position: absolute;
  bottom: 18px;
  right: 22px;
  margin-right: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);

  z-index: 20;
  pointer-events: none;
}

/* Título */
.feedback-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.08em;
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  margin-bottom: 3.5rem;
  color: #fff;
  position: relative;
  z-index: 2;
}

/* =========================
   CAROUSEL CARD
========================= */

.carousel {
  position: relative;
  width: 100%;
  height: 70vh;
  background: rgba(0, 0, 0, 0.45); /* 🔑 negro con opacidad */
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4);
  touch-action: pan-y;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  background: transparent; /* 🔑 importante */
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

/* Imagen contenida */
.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =========================
   DESKTOP NAV BUTTONS
========================= */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  background: rgba(0, 0, 0, 0.01);
  color: #ffffff;
  border: none;

  font-size: 3rem;
  padding: 0 0.7rem;

  cursor: pointer;
  user-select: none;

  transition: opacity 0.3s ease;
}

.carousel-btn:hover {
  opacity: 0.85;
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

/* =========================
   FADE HINT (CARRUSEL FEEL)
========================= */

.carousel::before {
  left: 0;
}

.carousel::after {
  right: 0;
}
.section-feedback img {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  pointer-events: none;
}
/* =========================
   RESPONSIVE
========================= */

@media (min-width: 768px) {
  .carousel {
    height: 60vh;
  }
}

/* =========================
   HERO ANIMATIONS (SIMULTANEOUS)
========================= */

/* Estado inicial */
.hero-title,
.hero-text {
  opacity: 0;
}

/* Ambos arrancan a la vez */
.hero-title {
  animation: heroTitleIn 1.8s cubic-bezier(.4,0,.2,1) forwards;
}

.hero-text {
  animation: heroTextIn 1.8s cubic-bezier(.4,0,.2,1) forwards;
}

/* Keyframes con recorrido mayor */
@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(-200px); /* 🔑 más recorrido */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(200px); /* 🔑 más recorrido */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-text {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/* HERO IMAGE FADE-IN */
.section-hero {
  position: relative;
  background-color: #000; /* base */
}

/* =========================
   LEGAL LINKS
========================= */

.legal-links {
  position: fixed;
  bottom: 14px;
  right: 18px;

  display: flex;
  gap: 10px;

  font-size: 0.75rem;
  opacity: 0.7;

  z-index: 1500;
}

.legal-links a {
  color: white;
  text-decoration: none;
}

.legal-links a:hover {
  opacity: 1;
}
.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  animation: heroBgFade 1.2s ease forwards;
}
@keyframes heroBgFade {
  to {
    opacity: 1;
  }
}
/* =========================
   PRIVACY LINK COLOR
========================= */

.section-book a,
.section-healing a,
.section-evileye a,
.section-womb a {
  color: #ffffff;
  text-decoration: underline;
}

.section-book a:visited,
.section-healing a:visited,
.section-evileye a:visited,
.section-womb a:visited{
  color: #ffffff;
}

.section-book a:hover,
.section-healing a:hover,
.section-evileye a:hover,
.section-womb a:hover {
  opacity: 0.8;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.hidden {
  display: none;
}

.btn-whatsapp {
  background: #25D366;
  border: 1px solid #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
}

.privacy-check {
  display: block;
  font-size: 0.8rem;
}

.whatsapp-container {
  margin-top: 1rem;
}
.service-benefits {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
}

.service-benefits li {
  margin-bottom: 0.6rem;
}
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
}