    /* ---------------------------------------
    ##### - PLACE YOUR CUSTOM CSS HERE - #####
    --------------------------------------- */
/* ------------------- ##### - Swal Buttons - ##### -------------------------- */

.swal2-confirm {
  border-radius: 25px !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  font-weight: bold !important;
}
.swal2-cancel {
  border-radius: 25px !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  font-weight: bold !important;
}
  /* Animación suave para el popup  swal classes */
.swal2-icon.swal2-success {
  background: transparent !important;
  border: none !important;
  color: #48b774 !important;
  margin: 1rem auto !important;
}

/* Eliminar los efectos de animación circulares */
.swal2-icon.swal2-success::before,
.swal2-icon.swal2-success::after,
.swal2-success-ring {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}



  /* Entrada */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Salida */
  @keyframes fadeOutDown {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(20px);
    }
  }

  /* Aplicar animaciones según el estado */
  .swal2-show {
    animation: fadeInUp 0.4s ease-out !important;
  }
  .swal2-hide {
    animation: fadeOutDown 0.4s ease-in !important;
  }



  .swal2-show-custom {
    background: linear-gradient(to top, #f0f0f0, #f8f8f8);
    border-radius: 20px;
  }
  /*  Info (Estilo Azul claro) */
  .swal-popup-info {
    background: linear-gradient(to bottom, #dceefb, #f7faff);
    border-radius: 20px;
  }
  /* 🍑 Success (Estilo Melocotón suave) */
  .swal-popup-success {
    background: linear-gradient(to bottom, #ffe0c7, #fff6e9);
    border-radius: 20px;
  }
  /* 🌿 Health (Estilo Verde menta) */
  .swal-popup-health {
    background: linear-gradient(to bottom, #d4f5e6, #f3fdf7);
    border-radius: 20px;
  }



.mi-swal-title {
  color: 00060c;
  font-family: 'Roboto', sans-serif;
}

.mi-swal-boton-confirm {
  background-color: #00060c;
  color: white;
}

.mi-swal-boton-cancel {
  background-color: #00060c;
  color: white;
}

/* ------------------- ##### - Emoji Gift animado - ##### -------------------------- */
.animated-gift {
  display: inline-block;
  animation: bounceGiftY  1s infinite ease-in-out;
}

@keyframes bounceGiftY  {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animated-gift-2 {
  display: inline-block;
  animation: bounceGiftX 1s infinite ease-in-out;
}

@keyframes bounceGiftX {
  0% {
    transform: rotate(0deg) scale(1.2);
  }
  30% {
    transform: rotate(-5deg) scale(1.4);
  }
  60% {
    transform: rotate(5deg) scale(1.4);
  }
  100% {
    transform: rotate(0deg) scale(1.2);
  }
}

/* ------------------- ##### - icono home - ##### -------------------------- */
/* General Styling */
.brand-logo-container-new {
  width: 100px; /* Ancho del logo */
  margin: 0 auto; /* Centra horizontalmente */
  text-align: center; /* Centra el texto (por si es necesario) */
  display: flex; /* Configura como flexbox */
  justify-content: center; /* Centra el contenido horizontalmente */
  align-items: center; /* Centra el contenido verticalmente */
}

.brand-logo-new {
  width: 100%; /* Asegura que ocupe todo el ancho del contenedor */
  height: auto; /* Mantiene la proporción de la imagen */
  object-fit: contain; /* Evita recortes o deformaciones */
  display: block; /* Evita el espacio extra debajo de la imagen */
}

/* Ajustes específicos para móviles */
@media (max-width: 768px) {
  .brand-logo-container-new {
    width: 100px; /* Ajusta el tamaño del logo si es necesario */
    margin: 0 auto; /* Asegura centrado horizontal */
  }

  .brand-logo-new {
    width: 100%; /* Asegura que el logo no exceda el contenedor */
  }
}

/* ------------------- ##### - Chat form - ##### -------------------------- */
#floating-chatbot {
  position: fixed;
  bottom: 85px;
  right: 25px;
  z-index: 1000;
}

.chat-icon {
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.chat-window {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 300px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

/* Header en naranja */
.chat-header {
  background-color: #ff9900;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.chat-header h5 {
  margin: 0;
  font-size: 16px;
}

.floating-chat-dropdown {
  position: relative;
}

.floating-chat-dropdown-btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  outline: none;
}
.floating-chat-dropdown-btn:hover{
  background: none;
  border: none;
  color: black;
  font-size: 18px;
  cursor: pointer;
  outline: none;
}

.floating-chat-dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  transform: translateX(-50%); /* Centra el menú horizontalmente */
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.floating-chat-dropdown-item {
  display: flex;
  align-items: center;
  margin-right: 25px;
  padding: 10px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}

.floating-chat-dropdown-item:hover {
  background-color: #f4f4f4;
  color: #000;
}



/* Botón de cerrar "X" */
.close-chat-btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  outline: none;
}
.close-chat-btn:hover{
  background: none;
  border: none;
  color: black;
  font-size: 18px;
  cursor: pointer;
  outline: none;
}

#chat-form {
  display: flex; /* Asegura que los elementos estén en la misma fila */
  align-items: center; /* Alineación vertical */
  gap: 3px; /* Espacio entre el input y el botón */
  padding-left: 5px;
  padding-bottom: 10px;
}
#chat-form textarea {
  width: 100%; /* Ajusta el ancho al contenedor */
  min-height: 40px; /* Mantiene una altura mínima */
  height: 40px; /* altura inicial */
  line-height: normal; /* Ajusta la separación entre líneas */
  padding-right: 35px ; /* Espaciado interno */
  border-radius: 15px; /* Un borde más suave */
  word-wrap: break-word; /* Permite que el texto salte de línea */
  overflow-wrap: break-word; /* Evita el desbordamiento */
  white-space: pre-wrap; /* Mantiene los saltos de línea */
  resize: none; /* Evita que el usuario redimensione el textarea manualmente */
  outline-color: #f84e0d; /* Color de borde al enfocar */
  flex: 1;
  border: 1px solid #ccc; /* Agrega un borde sutil */
  transition: height 0.2s ease-in-out; /* Suaviza la expansión si cambia de tamaño */
  scrollbar-width: none; /* Para Firefox */
  -ms-overflow-style: none; /* Para Internet Explorer y Edge */
  }
  #chat-form textarea::-webkit-scrollbar {
  display: none; /* Para Chrome, Safari y Opera */
  }

#chat-form .send-icon {
  font-size: 1.6rem;
  color: #555;
  cursor: pointer;
  margin-left: 3px;
  padding: 5px;
  border-radius: 50%;
  transition: box-shadow 0.3s ease, border 0.3s ease, transform 0.3s ease;
  }

  #chat-form .send-icon:hover {
    transform: scale(1.1);
  }

  #chat-form .send-icon:active {
    color: #f84e0d; 
  }
  #chat-form .upload-icon {
    font-size: 1.2rem;
    margin-left: -45px;
    margin-top: 10px;
    cursor: pointer;
    color: #555;
    transition: color 0.3s;
  }

  #chat-form .upload-icon:hover {
    transform: scale(1.1);
    color: #f84e0d; 
  }
  #chat-form .upload-icon:active {
    color: #f84e0d; 
  }




/* image-popup  */
.mfp-img {
  width: 700px  !important; /* Ancho fijo de la imagen */
  height: 700px  !important; /* Alto fijo de la imagen */
  object-fit: cover  !important; /* Esto asegura que la imagen se ajuste al contenedor */
}

/* Palabra here en login donde restableces la contrasena */
.here-area a{
    transition: all 500ms ease 0s;
    text-decoration: none;
    outline: 0 solid transparent;
    color: #ff0000;
    font-weight: 600;
    font-size: 12px;
    }
.here-area a:hover {
    text-decoration: none;
    outline: 0 solid transparent;
    color: #ff0000; 
    font-weight: 600;
    font-size: 14px;
    }
.acc-area a{
    transition: all 500ms ease 0s;
    text-decoration: none;
    outline: 0 solid transparent;
    color: #ff0000;
    font-weight: 600;
    font-size: 12px;
    }
.acc-area a:hover {
    text-decoration: none;
    outline: 0 solid transparent;
    color: #ff0000; 
    font-weight: 600;
    font-size: 14px;
    }
/* Learn categories */
.images-single-product {
  width: 100%;  /* Ajustar al 100% del contenedor */
  max-width: 650px;  /* Máximo ancho para las imágenes */
  height: auto;
  max-height: 750px; 
  display: block;
  margin: 0 auto;  /* Centrar las imágenes */
}



/* Carrito base */
.cart-by {
  position: relative;
  z-index: 1; 
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  overflow: hidden;
}
.cart-by img {
  width: 100%; 
  max-width: 150px;
  height: 200px;
  display: block;
  margin: 0 auto;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms; 
}
.imagesSingleCart {
  width: 100%;  /* Ajustar al 100% del contenedor */
  max-width: 240px;  /* Máximo ancho para las imágenes */
  height: auto;
  max-height: 280px; 
  display: block;
  margin: 0 auto;  /* Centrar las imágenes */
}

    /* ______________________ google button ________________________________*/
  .google-btn {
      align-items: center;
      border: none;
      background-color: transparent;
    }
    
    .google-btn a {
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      border: 1px solid black;
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      padding: 10px 20px;
      color: rgb(0, 0, 0);
      background-color: #ffffff;
      border-radius: 25px;
      font-size: 16px;
      font-weight: bold;
    }
    
    .google-btn a:hover {
      background-color: #e3eeff;
    }
    
    .google-icon {
      width: 20px;
      height: 20px;
      margin-right: 10px;
    }

/* tarjeta de direcciones y de planes*/
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 5px;
    width: 100%;
    background-color: #fbf7f5;
    margin-bottom: 30px;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
    color: #555;
}


/* Cart items card */
.cart-items-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.cart-items-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.delete-item :hover{
  color: #000000; 
  transition: color 0.3s ease;
}



/* Estilos generales del perfil */
.profile-section {
  background-color: #f9f9f9;
  padding: 40px 0;
}

.profile-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.profile-photo {
  text-align: center;
}

.profile-photo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #48840e; /* Borde por defecto */
}

/* Estilos para el saludo */
h2 {
  font-size: 22px;
  color: #00060c;
  margin: 0;
}

/* Botón de logout alineado a la derecha */
.text-right {
  text-align: right;
}

.btn-logout {
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
}
.btn-logout p{
  color: gray;
  cursor: pointer;
}


.btn-logout p:hover {
  color: #00060c; /* Efecto hover */
}

.profile-header h2 {
  font-size: 24px;
  font-weight: bold;
  color: #00060c; /* Rich Black */
  margin-bottom: 20px;
}

.profile-header p {
  font-size: 16px;
  color: #666;
}

.profile-header p strong {
  color: #00060c; /* Rich Black */
}

.profile-actions {
  display: flex;
  flex-direction: column;
}

.invite-section {
  text-align: center;
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
}

.invite-section p {
  font-size: 16px;
  margin-bottom: 15px;
}

.invite-section button {
  border: none;
  background-color: #f84e0d; /* Tangelo Orange */
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.invite-section button:hover {
  background-color: #c63e0b; /* Slightly darker Tangelo Orange for hover effect */
}

.messages .alert {
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #48840e; /* Avocado Green for success messages */
  color: white;
}

/* tarjetas de membresias  */
.nav-pills .nav-link {
  background-color: #f8f9fa;
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active {
  background-color: #343a40;
  color: white;
}

  .card {
    border-radius: 0.75rem;
    padding: 1.5rem;
  }

  .card-body {
    font-size: 1rem;
  }

  h3 {
    margin-bottom: 1rem;
  }

  .btn {
    margin-top: 1rem;
    border-radius: 25px;
  }

  .shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  ul.list-unstyled {
    margin-top: 1rem;
    text-align: left;
  }

  ul.list-unstyled li {
    padding-bottom: 0.5rem;
  }

/* Planes  */
.plan {
      font-family: Arial, sans-serif;
      margin: 20px;
  }
.plan h1 {
    color: #48840e; /* Avocado Green */
    font-size: 24px;
}
.plan h3 {
    color: #48840e; /* Avocado Green */
    font-size: 16px;
}
.plan h5 {
    color: black;
    font-size: 28px;
    text-align: center;
}
.plan h2 {
    color: #f84e0d; /* Tangelo Orange */
    font-size: 18px;
}
.plan p {
    font-size: 14px;
}
.plan ul {
    margin-bottom: 5px;
}
.footer-plan {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: gray;
}


/* Estilos de los planes */
.accordion {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 25px;
}
.accordion h3 {
  color: black;
  font-size: 28px;
}
.accordion-title {
  cursor: pointer;
  padding: 15px;
  font-size: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-title .icon {
  font-size: 28px;
}

.accordion-content {
  padding: 15px;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .icon {
  content: "-";
}


/* Estilo general para la tarjeta de los planes */
.card-plans {
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
margin: 15px;
padding: 15px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
cursor: pointer;
overflow: hidden;
border: 2px solid transparent;
max-width: 300px; 
}


.card-plans:hover {
transform: translateY(-10px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.card-plans h1 {
font-size: 16px; 
font-weight: 400;
color: black;
margin-bottom: 8px;
}


.card-plans-text {
font-size: 14px; 
color: gray;
margin-bottom: 12px;
}

.card-plans-text  span{
  font-size: 16px; 
  color: rgb(7, 7, 7);
  margin-bottom: 12px;
  }


.card-plans:hover {
transform: translateY(-10px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}


.card-plans p {
line-height: 1.4;
}


@media (max-width: 768px) {
.card-plans {
  padding: 10px;
  margin: 8px;
  max-width: 100%; 
}
}



/* Estilo general del acordeón-product */
.accordion-product {
  border-radius: 8px;
  margin-bottom: 20px;
}

.accordion-product-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #e0e0e0; /* Solo el borde inferior */
}

.accordion-product-title {
  font-size: 24px;
  font-weight: bold;
  padding: 15px;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between; /* Para separar el texto del icono */
  align-items: center;
}

.accordion-product-title:hover {
  background-color: #ddd;
}

/* Estilo del icono */
.accordion-icon {
  font-size: 24px;
  float: right; /* Para que el icono flote a la derecha */
  transition: transform 0.3s ease;
}

.accordion-product-content {
  padding: 15px;
  background-color: #fff;
  display: none; /* Ocultar el contenido inicialmente */
}

.accordion-product-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Efecto de desvanecimiento */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Cuando el acordeón está abierto, gira el icono */
.accordion-product-title.open .accordion-icon {
  transform: rotate(45deg); /* Cambiar el símbolo de "+" a "x" cuando se abre */
}



/* ----- Estilos adicionales para mejorar la interfaz de chat (advisor detail) -----*/

.user-message {
    background-color: #e0ffe0;
    color: #000;
    padding: 8px 12px;
    border-radius: 15px;
    margin-bottom: 10px;
    max-width: 100%;
    align-self: flex-end;
}
.bot-message {
    background-color: #f0f0f0;
    color: #000;
    padding: 8px 12px;
    border-radius: 15px;
    margin-bottom: 10px;
    max-width: 100%;
    align-self: flex-start;
}
#chat-box p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/*------- Estilos tarjeta de los Advisors -------*/
.card-advisor {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card-advisor:hover {
  transform: translateY(-25px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-advisor .card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-advisor .card-body {
  padding: 15px;
}

.card-advisor .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}

.card-advisor .card-text {
  font-size: 0.9rem;
  color: #777;
}

.card-advisor .btn.chat-link-btn {
  background-color: #f84e0d;
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.card-advisor .btn.chat-link-btn:hover {
  background-color: #b63400;
}


/* Estilos para el enlace de regreso */
.back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 200;
}

.back-link i {
    margin-right: 5px;
}

.back-link:hover {
    color: #366a0d;
}



/* Progress bar */
.progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
    height: 3px;
}

.progress {
    height: 100%;
    background-color: #f84e0d; 
    border-radius: 10px;
    transition: width 0.3s ease;
}



/* ------------------------- Estilos items en el CHECKOUT --------------------- */
.items-checkout .order-details-form {
  list-style: none;
  padding: 0;
  margin: 0;
}

.items-checkout .cart-header {
  display: flex;
  justify-content: space-between;
}

.items-checkout .cart-item {
  display: flex;
}

.items-checkout .product-info {
  display: flex;
  align-items: center;
  width: 100%;
}

.items-checkout .product-info img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.items-checkout .product-details {
  flex: 1;
}

.items-checkout .product-name-price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.items-checkout .product-name {
  font-size: 12px;
  flex-grow: 1;
  margin-right: 10px;
}

.items-checkout .total-price {
  font-size: 14px;
  align-self: flex-start;
  margin-left: auto;
}

.items-checkout .quantity-price-each {
  display: flex;
  justify-content: space-between;
  color: gray;
  font-size: 10px;
}

.items-checkout .unit-price {
  margin-left: auto;
}


/* Subscription Success */
.success-container {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  text-align: center;
  margin: 2rem auto;
}
  .success-container .success-icon {
    color: #48840e;
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  .success-container .success-title {
    font-size: 2rem;
    color: #333;
    margin: 0;
  }
  .success-container .success-message {
    font-size: 1rem;
    color: #555;
    margin-top: 1rem;
    line-height: 1.5;
  }
  .success-container .success-button {
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background-color: #f84e0d;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1rem;
    transition: background 0.3s;
  }
  .success-container .success-button2 {
    margin-top: 2rem;
    margin-right: 1rem;
    padding: 0.75rem 2rem;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1rem;
  }
  .success-container .success-button:hover {
    background-color: #d9440b;
  }


/* ------------------- ##### - Membership banner - ##### -------------------------- */
.membership-banner {
    background: linear-gradient(90deg, black, white); /* Avocado Green to Tangelo Orange */
    color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
  }

  .membership-banner .membership-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: white;
  }

  .membership-banner .membership-type {
    color: #00060c; /* Rich Black */
    background: #f8f9fa; /* Light Gray */
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
  }

  .membership-banner .membership-message {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 10px;
  }

  .membership-banner .btn-primary {
    background-color: #f84e0d; /* Tangelo Orange */
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .membership-banner .btn-primary:hover {
    background-color: #00060c; /* Rich Black */
  }

.no-membership {
    background: #f8f9fa; /* Light Gray */
    color: #00060c; /* Rich Black */
    border: 2px dashed #48840e;
    border-radius: 5px;
    padding: 20px;
  }

  .no-membership h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  items-checkout
  .no-membership .btn-success {
    background-color: #48840e; /* Avocado Green */
    font-weight: bold;
    padding: 10px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .no-membership .btn-success:hover {
    background-color: #3e6f0c; /* Darker green */
  }


/* Settings Toggle Styles */
.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .form-check-input {
    -webkit-appearance: none;
    appearance: none;
    width: 50px;
    height: 25px;
    background-color: #ccc;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
  }

  .form-check-input:checked {
    background-color: #48840e; /* Cambiar al color activo */
  }

  .form-check-input::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 19px;
    height: 19px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
  }

  .form-check-input:checked::before {
    transform: translateX(25px);
  }


      /* --------------------- General clock styling ------------------------ */
/* Contenedor del reloj */
.flip-clock-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Espacio entre grupos */
  flex-wrap: nowrap; /* Mantener los dígitos en una sola línea */
  max-width: 100%; /* Ajustar al ancho del contenedor */
  overflow: hidden; /* Evitar que se desborde */
}

/* Estilo de los dígitos */
.flip-clock-wrapper .digit {
  font-size: 3rem; /* Tamaño predeterminado */
  color: #f84e0d;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1; 
}

/* Pantallas medianas */
@media (max-width: 768px) {
  .flip-clock-wrapper {
      gap: 0px; 
  }

  .flip-clock-wrapper .digit {
      font-size: 2rem; 
      padding: 8px 10px;
  }
}

/* Pantallas pequeñas */
@media (max-width: 480px) {
  .flip-clock-wrapper {
      gap: 0px;
  }

  .flip-clock-wrapper .digit {
      font-size: 1.5rem; 
      padding: 8px 10px;
  }
}


 /*Estilos para - Create Plan -  Swal  */
.swal2-title-custom {
    color: #48840e; /* Verde aguacate */
}

.swal2-popup-custom {
    border: 2px solid #f84e0d; /* Naranja tangelo */
}

.swal2-html-container {
    color: #00060c; /* Negro rich black */
}


/* Estilos para las etiquetas principales */
.forms-plan .main-label {
    display: block; /* Etiqueta principal como bloque */
    margin-bottom: 3px; /* Espacio entre etiqueta principal y el campo */
    color: #48840e; /* Verde aguacate */
    font-weight: bold; /* Resalta las etiquetas principales */
    font-size: 1.2em; /* Tamaño más grande para etiquetas principales */
    width: 100%; /* Ocupan todo el ancho */
}

/* Estilos para inputs radio y checkbox */
.forms-plan input[type="radio"],
.forms-plan input[type="checkbox"] {
    display: inline-block;
    margin-right: 10px; /* Espacio entre el input y el texto */
    vertical-align: middle; /* Alinea el input con el texto */
}

/* Estilos para etiquetas asociadas a opciones */
.forms-plan input[type="radio"] + label,
.forms-plan input[type="checkbox"] + label {
    color: #00060c; /* Negro para las opciones */
    font-weight: normal; /* No tan resaltado como las etiquetas principales */
    font-size: 1em; /* Tamaño estándar para las opciones */
    margin-left: 5px; /* Espacio adicional entre el input y el texto */
    display: inline-block; /* Asegura que estén alineados horizontalmente */
    vertical-align: middle; /* Alinea el texto con el input */
}


/* Estilos de las tarjetas de las lecciones -> Lessons cards styles */
.recommended-lessons {
  text-align: center;
  padding: 60px 0;
  background-color: #f8f9fa;
}
.recommended-lessons .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}
.recommended-lessons .lesson-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.recommended-lessons .lesson-card {
  width: 100%;
  max-width: 300px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}
.recommended-lessons .lesson-card:hover {
  transform: scale(1.05);
}
.recommended-lessons .lesson-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.recommended-lessons .lesson-card h6 {
  font-size: 18px;
  margin: 15px 0;
  font-weight: 600;
  color: #222;
}
.recommended-lessons .lesson-card p {
  font-size: 14px;
  color: #666;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .recommended-lessons .lesson-grid {
      flex-direction: column;
      align-items: center;
  }

  .recommended-lessons .lesson-card {
      width: 90%;
      margin-bottom: 10px;
  }
}


/* 🔥 Efecto Hover en la Promoción */
.cta-area:hover .cta-content {
    transform: scale(1.02); /* Pequeño zoom */
    transition: transform 0.3s ease-in-out;
  }

      /* 🎨 Oscurecimiento Suave de la Imagen en Hover */
  .cta-area .cta-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Inicialmente transparente */
    transition: background 0.2s ease-in-out;
  }

  .cta-area:hover .cta-content::before {
    background: rgba(0, 0, 0, 0.1); /* Oscurece un poco en hover */
  }

  /* 🏆 Efecto en el Texto */
  .cta-area:hover .cta--text {
    transform: translateY(-3px); /* Eleva ligeramente el texto */
    transition: transform 0.2s ease-out;
  }

  /* 🚀 Efecto en el Botón */
  .cta-area:hover .btn {
    transform: scale(1.1);
    transition: all 0.2s ease;
  }


     .scan-line {
      position: absolute;
      top: 0;
      left: 0;
      height: 4px;
      width: 100%;
      background: rgba(61, 224, 162, 0.7); /* verde semitransparente */
      animation: scanAnimation 2s infinite ease-in-out;
      border-radius: 4px;
    }
  
    @keyframes scanAnimation {
      0% { top: 0; }
      50% { top: calc(100% - 4px); }
      100% { top: 0; }
    }

    .action-buttons-wrapper {
        display: inline-block;
    }

    .action-buttons-popover {
        top: -10rem;
        right: 0;
        min-width: 130px;
    }


    .macro-wrapper {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto 0.5rem;
            margin: 0 10px; /* 🔹 Espaciado horizontal entre los anillos */
        }

        .ring-bg {
            stroke: #eee;
            stroke-width: 2;
            fill: none;
        }

        .ring-progress {
            stroke-width: 2;
            stroke-linecap: round;
            fill: none;
            transform: rotate(-90deg);
            transform-origin: center;
            stroke-dasharray: 0 100;         /* ✅ Empieza vacío */
            stroke-dashoffset: 0;            /* ✅ No desplaza el trazo */
            transition: stroke-dasharray 0.6s ease;
        }




        .ring-calories { stroke: #3b82f6; }
        .ring-protein { stroke: #20bf6b; }
        .ring-fat     { stroke: #f84e0d; }
        .ring-carbs   { stroke: #facc15; }

        .ring-label {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: bold;
            font-size: 1rem;
        }

        .modal-ring-carbs { stroke: #facc15; }
        .modal-ring-protein { stroke: #20bf6b; }
        .modal-ring-fat { stroke: #f84e0d; }



        .modal-distribution-content {
            border-radius: 15px;
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
            background-color: #fff;
        }
        .modal-distribution-content .btn-close{
            border: none;
            background-color: transparent;
            outline: none;
        }
        .modal-distribution-content .btn-close:hover {
            opacity: 0.6; /* 🔁 efecto visual de hover más sutil */
        }

/* ##############    Scan Meals          #######################   */
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: rgba(61, 224, 162, 0.7); /* verde semitransparente */
  animation: scanAnimation 2s infinite ease-in-out;
  border-radius: 4px;
}

@keyframes scanAnimation {
  0% { top: 0; }
  50% { top: calc(100% - 4px); }
  100% { top: 0; }
}

.action-buttons-wrapper {
    display: inline-block;
}

.action-buttons-popover {
    top: -10rem;
    right: 0;
    min-width: 130px;
}
.macro-wrapper {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 0.5rem;
        margin: 0 10px; /* 🔹 Espaciado horizontal entre los anillos */
    }

    .ring-bg {
        stroke: #eee;
        stroke-width: 2;
        fill: none;
    }

    .ring-progress {
        stroke-width: 2;
        stroke-linecap: round;
        fill: none;
        transform: rotate(-90deg);
        transform-origin: center;
        stroke-dasharray: 0 100;         /* ✅ Empieza vacío */
        stroke-dashoffset: 0;            /* ✅ No desplaza el trazo */
        transition: stroke-dasharray 0.6s ease;
    }

    .ring-calories { stroke: #3b82f6; }
    .ring-protein { stroke: #20bf6b; }
    .ring-fat     { stroke: #f84e0d; }
    .ring-carbs   { stroke: #facc15; }

    .ring-label {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: bold;
        font-size: 1rem;
    }

    .modal-ring-carbs { stroke: #facc15; }
    .modal-ring-protein { stroke: #20bf6b; }
    .modal-ring-fat { stroke: #f84e0d; }



    .modal-distribution-content {
        border-radius: 15px;
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
        background-color: #fff;
    }
    .modal-distribution-content .btn-close{
        border: none;
        background-color: transparent;
        outline: none;
    }
    .modal-distribution-content .btn-close:hover {
        opacity: 0.6; /* 🔁 efecto visual de hover más sutil */
    }
    /*  ############## Food card with micronutrientes   #####################*/
    .food-card {
      background: #fdfdfd;
      transition: box-shadow 0.3s ease;
    }
    .food-card:hover {
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    
    /* Micronutriente resumen */
    details summary {
      cursor: pointer;
      outline: none;
    }
    details[open] summary {
      font-weight: 600;
    }
    .micros-summary {
      background: #fafbfd;
      border-radius: 0.5rem;
    }
    
    .micronutrient-item {
      background: #fff;
      border: 1px solid #e3e7ec;
      font-size: 0.9rem;
      transition: background 0.2s ease;
    }
    .micronutrient-item:hover {
      background: #f4f7fb;
    }
    
  /* No thanks link */
.no-thanks-link {
    font-size: 0.8rem;
    color: #888;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.no-thanks-link:hover {
    color: #555;
    text-decoration-color: #555;
}


  /* Share (redes) menu */
.share-container {
  position: relative;
  display: inline-block;
}

.share-container .share-button {
  position: relative;
  display: inline-block;
  color: #00060c;
  font-size: 1.3rem;
}
.share-container .share-button:hover {
  position: relative;
  display: inline-block;
  color: #555;
}

.share-container .share-menu {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ddd;
  padding: 8px;
  border-radius: 8px;
  top: 70%;
  left: 0;
  width: 50px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.share-container .share-menu a {
  margin: 0 6px;
  font-size: 20px;
  color: #444;
  text-decoration: none;
}
