
/* Cabezera  y mensajes */

@media only screen and (max-width: 800px) {
  html {
      font-size: 80%;
  }
}

#cabezera {
  background-color: #263238;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M81.28 88H68.413l19.298 19.298L81.28 88zm2.107 0h13.226L90 107.838 83.387 88zm15.334 0h12.866l-19.298 19.298L98.72 88zm-32.927-2.207L73.586 78h32.827l.5.5 7.294 7.293L115.414 87l-24.707 24.707-.707.707L64.586 87l1.207-1.207zm2.62.207L74 80.414 79.586 86H68.414zm16 0L90 80.414 95.586 86H84.414zm16 0L106 80.414 111.586 86h-11.172zm-8-6h11.173L98 85.586 92.414 80zM82 85.586L87.586 80H76.414L82 85.586zM17.414 0L.707 16.707 0 17.414V0h17.414zM4.28 0L0 12.838V0h4.28zm10.306 0L2.288 12.298 6.388 0h8.198zM180 17.414L162.586 0H180v17.414zM165.414 0l12.298 12.298L173.612 0h-8.198zM180 12.838L175.72 0H180v12.838zM0 163h16.413l.5.5 7.294 7.293L25.414 172l-8 8H0v-17zm0 10h6.613l-2.334 7H0v-7zm14.586 7l7-7H8.72l-2.333 7h8.2zM0 165.414L5.586 171H0v-5.586zM10.414 171L16 165.414 21.586 171H10.414zm-8-6h11.172L8 170.586 2.414 165zM180 163h-16.413l-7.794 7.793-1.207 1.207 8 8H180v-17zm-14.586 17l-7-7h12.865l2.333 7h-8.2zM180 173h-6.613l2.334 7H180v-7zm-21.586-2l5.586-5.586 5.586 5.586h-11.172zM180 165.414L174.414 171H180v-5.586zm-8 5.172l5.586-5.586h-11.172l5.586 5.586zM152.933 25.653l1.414 1.414-33.94 33.942-1.416-1.416 33.943-33.94zm1.414 127.28l-1.414 1.414-33.942-33.94 1.416-1.416 33.94 33.943zm-127.28 1.414l-1.414-1.414 33.94-33.942 1.416 1.416-33.943 33.94zm-1.414-127.28l1.414-1.414 33.942 33.94-1.416 1.416-33.94-33.943zM0 85c2.21 0 4 1.79 4 4s-1.79 4-4 4v-8zm180 0c-2.21 0-4 1.79-4 4s1.79 4 4 4v-8zM94 0c0 2.21-1.79 4-4 4s-4-1.79-4-4h8zm0 180c0-2.21-1.79-4-4-4s-4 1.79-4 4h8z' fill='%239C92AC' fill-opacity='0.06' fill-rule='evenodd'/%3E%3C/svg%3E");            }
  #mensaje-ofertas span {
      display: none;
      font-size: 0.9rem;

      
  }
#mensaje-ofertas span.mostrando {
display: block;
animation: fade-in 1s ease-in-out;
}
@keyframes fade-in {
0% { opacity: 0; }
100% { opacity: 1; }
}

/* Navbar styles */
.navbar {
  background-color: #f8f9fa;
  padding: 1rem 0;
}

.navbar-brand img {
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ff6347; /* Tomato color for hover effect */
}

.zen-link {
  color: #1a1a1a !important;  /* Un negro más oscuro que #333333 */
  font-weight: 400;  /* Hacerlo un poco más grueso */
}



.form-control {
  border-radius: 30px;
}

.btn-outline-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}

.btn-outline-dark .badge {
  font-size: 0.75rem;
  padding: 0.25em 0.5em;
}

/* Mega menu styles */
.mega-dropdown {
  position: static;
}

.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  padding: 1rem 0;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mega-menu .dropdown-header {
  font-size: 1.25rem;
  color: #333333;
  padding-bottom: 0.5rem;
}

.mega-menu .dropdown-item {
  padding: 0.25rem 0;
  color: #555555;
  transition: color 0.3s ease;
}

.mega-menu .dropdown-item:hover {
  color: #ff6347;
}

.zen-link {
  transition: color 0.3s ease;
}

.zen-link:hover {
  color: #ff6347;
}
.mega-menu .dropdown-item.zen-link {
  position: relative;
  padding-left: 1.5rem;  /* Espacio para la estrella */
  transition: color 0.3s ease;
}

.mega-menu .dropdown-item.zen-link::before {
  content: "✦";
  position: absolute;
  left: 0.5rem;  /* Ajusta según el padding */
  top: 50%;
  transform: translateY(-50%);
  color: #ff6347;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mega-menu .dropdown-item.zen-link:hover {
  color: #ff6347;
}

.mega-menu .dropdown-item.zen-link:hover::before {
  opacity: 1;
}
.zen-bg-light {
  background-color: #fff2ed;
}

.zen-font {
  font-family: 'Zen Antique', serif;
}

.text-primary {
  color: #ff6347;
}
.zen-link.active {
 font-weight: 500;
 color: #ff6347 !important;

}

.zen-link:focus,
.zen-link:active {
  color: #ff6347;
}

.dropdown-item.zen-link {
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
}

.dropdown-item.zen-link:hover,
.dropdown-item.zen-link:focus {
  background-color: rgba(255, 99, 71, 0.1);
}

/* CAROUSEL */


/*  NOSOTROS */

.nosotros-section {
  background-color: #f8f8f8;
  padding: 80px 0;
  text-align: center;
}
.nosotros-section h2 {
  color: #ff6347;
  font-family: 'Zen Antique', serif;
  font-size: 3rem;
  margin-bottom: 30px;
}
.nosotros-section p {
  color: #666;
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.nosotros-cards .card {
  border: none;
  background-color: transparent;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.nosotros-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.nosotros-cards .card img {
  border-radius: 10px;
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin: 20px auto;
}
.nosotros-cards .card-title {
  font-family: 'Zen Antique', serif;
  font-size: 1.5rem;
  color: #ff6347;
}
.nosotros-cards .card-text {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 20px;
}

/*  FIN NOSOTROS */


/* PREGUNTAS FRECUENTES  */

@keyframes zen-ripple {
  0% { transform: scale(0); opacity: 0.8; }
  50% { opacity: 0.5; }
  100% { transform: scale(4); opacity: 0; }
}



.zen-faq-container {
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 150px;
  position: relative;
}

.zen-faq-container::before {
  content: "";
  position: absolute;
  top: -50px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 100px;
  opacity: 0.7;
}

.zen-italic {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

#titlePreguntas::after {
  content: "✿";
  font-size: 1.5rem;
  color: #ff6347;
  position: absolute;
  top: 50%; right: -40px;
  transform: translateY(-50%);
}

.zen-faq .accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 1.5rem;
}

.zen-faq .accordion-button {
  background: #fff;
  color: #333;
  font-weight: 500;
  border: none;
  border-radius: 30px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.zen-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #ff6347 0%, #ff4500 100%);
  color: #fff;
  box-shadow: 0 6px 12px rgba(255, 99, 71, 0.3);
}

.zen-faq .accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(255, 99, 71, 0.2);
}

/* FIN PREGUNTAS FRECUENTES */

/* MARKETING SECCION INDEX  */


.cosmic-marketing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 99, 71, 0.4) 100%);
    z-index: 1;
}
.cosmic-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(255, 99, 71, 0.5);
    backdrop-filter: blur(10px);
    max-width: 800px;
    width: 100%;
}
.cosmic-message {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.4;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    margin: 0 0 20px;
    font-family: 'Playfair Display', serif;
}
.cosmic-subtext {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
}
/* Efecto de parallax y estrellas */
.cosmic-marketing {
    background-attachment: fixed;
}
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('img/stars.png') repeat top center;
    animation: starMove 200s linear infinite;
}
@keyframes starMove {
    from { background-position: 0 0; }
    to { background-position: 0 10000px; }
}
/* Media queries para responsividad */
@media (max-width: 992px) {
    .cosmic-message { font-size: 2.5rem; }
}
@media (max-width: 768px) {
    .cosmic-message { font-size: 2rem; }
    .cosmic-subtext { font-size: 1rem; }
    .cosmic-marketing { background-attachment: scroll; }
}
/* Fuentes personalizadas */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400&family=Open+Sans:wght@300;400&display=swap');
/* FIN MARKETING */


/* QUE SON LOS CUENCOS TIBETANOS */

/* Estilo para el contenedor del apartado de descripción */
.description-section {
  padding-top: 80px;
  background-color: #f4f4f4;
  position: relative;
  overflow: hidden;
}
/* Estilo para el contenedor del texto */
.description-text {
  text-align: left;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
/* Estilo para la imagen */
.description-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}
.description-img:hover {
  transform: scale(1.05);
}
/* Estilos personalizados */
.custom-title {
  font-size: 2.8rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.custom-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #ff6347;
  border-radius: 2px;
}
.custom-description {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}
/* Efecto de fondo */
.description-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/mandala-bg.png') no-repeat center center / cover;
  opacity: 0.1;
  z-index: -1;
}
/* Estilos responsivos */
@media (max-width: 992px) {
  .description-img {
      margin-top: 40px;
  }
}
/* FIN QUE SON LOS CUENCOS */

/* PRODUCTOS  */


.zen-font {
  font-family: 'Zen Antique', serif;
}

.zen-font-sm {
  font-family: 'Zen Antique', serif;
  font-size: 0.9rem;
}

.text-primary {
  color: #ff6347 !important;
}

.zen-link {
  color: #333;
  transition: color 0.3s ease;
  text-decoration: none;
}

.zen-link:hover {
  color: #ff6347;
}

.zen-product-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.25rem;
  box-shadow: none;
  transition: all 0.3s ease;
}

.zen-product-card:hover {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.zen-product-thumbnail {
  overflow: hidden;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.zen-product-thumbnail img {
  transition: transform 0.3s ease;
}

.zen-product-card:hover .zen-product-thumbnail img {
  transform: scale(1.05);
}

.zen-price {
  color: #ff6347;
  font-weight: 600;
  font-size: 1.1rem;
}

.zen-btn {
  background-color: #ff6347;
  border-color: #ff6347;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(255, 99, 71, 0.2);
}

.zen-btn:hover {
  background-color: #ff5233;
  border-color: #ff5233;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(255, 99, 71, 0.3);
}

.zen-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
}


/* FIN PRODUCTOS */



/* CATEGORIAS DESTACADOS INXDEX */
.zen-echo-title {
  font-size: 2.5rem;
  color: #333;
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  background: linear-gradient(to right, rgba(255, 99, 71, 0.1), rgba(255, 99, 71, 0));
  border-left: 5px solid #ff6347;
}
.zen-soul {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #ff6347;
  display: inline-block;
  transform: rotate(-5deg);
  margin: 0 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.zen-echo-title::before,
.zen-echo-title::after {
  content: '✧';
  font-size: 1.5rem;
  color: #ff6347;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}
.zen-echo-title::before { left: 10px; }
.zen-echo-title::after { right: 10px; }
/* Importar fuentes */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Dancing+Script&display=swap');
.custom-zen-btn {
  font-size: 16px;
  color: #ff6347;
  font-weight: 500;
  font-family: 'Zen Kurenaido', sans-serif, cursive;
  text-decoration: none;
  padding: 8px 20px;
  border: 2px solid #ff6347;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-zen-btn:hover {
  background-color: #ff6347;
  color: #fff;
  text-decoration: none;
}
.custom-zen-img {
  height: 200px; /* Puedes ajustar esta altura según tus necesidades */
  object-fit: cover;
}
.custom-zen-title{
  font-size: 27px;
}
.custom-zen-btn {
  font-size: 18px;
  color: #ff6347;
  font-weight: 500;
  font-family: 'Zen Kurenaido', sans-serif, cursive;
}


/* FIN CATEGORIAS DESTACADOS  */





/* PRODUCTOS DESTACADOS */


 /* Estilos para la sección de productos destacados */
        .featured-products {
          padding: 100px 0;
          background-color: #fff5f3;
      }
      .section-title {
          font-size: 2.5rem;
          color: #333;
          text-align: center;
          margin-bottom: 50px;
          position: relative;
      }
      .section-title::after {
          content: '';
          position: absolute;
          bottom: -15px;
          left: 50%;
          transform: translateX(-50%);
          width: 100px;
          height: 4px;
          background-color: #ff6347;
          border-radius: 2px;
      }
      .product-card {
          background-color: #ffffff;
          border-radius: 20px;
          box-shadow: 0 15px 30px rgba(255, 99, 71, 0.15);
          overflow: hidden;
          margin-bottom: 30px;
          transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
      }
      .product-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 20px 40px rgba(255, 99, 71, 0.25);
      }
      .product-img {
          width: 100%;
          height: 250px;
          object-fit: cover;
          border-top-left-radius: 20px;
          border-top-right-radius: 20px;
      }
      .product-body {
          padding: 25px;
      }
      .product-title {
          font-size: 1.5rem;
          font-weight: bold;
          color: #ff6347;
          margin-bottom: 15px;
      }
      .product-description {
          font-size: 1rem;
          color: #666;
          line-height: 1.6;
          margin-bottom: 20px;
      }
      .product-price {
          font-size: 1.8rem;
          font-weight: bold;
          color: #ff7f50;
      }
      .btn-view {
          display: block;
          width: 100%;
          padding: 12px;
          background-color: #ff6347;
          color: #ffffff;
          text-align: center;
          text-decoration: none;
          font-size: 1.1rem;
          font-weight: bold;
          border-radius: 10px;
          margin-top: 20px;
          transition: background-color 0.3s ease;
      }
      .btn-view:hover {
          background-color: #e74c3c;
          color: white;
      }


/* FIN PRODUCTOS ZEN */


/* EMOJI MODAL */

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.shopping-guide {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 15px;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.shopping-guide:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.shopping-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  animation: float 3s ease-in-out infinite;
}

.shopping-text {
  color: #333;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  transform: translateX(-10px);
  margin-left: 10px;
  transition: all 0.3s ease;
}

.shopping-guide:hover .shopping-text {
  opacity: 1;
  transform: translateX(0);
}

.pulse {
  animation: pulse 0.5s ease-in-out;
}

/* Estilos específicos para dispositivos móviles */

     /* buscar  */
     @media (max-width: 767.98px) {
      .custom-mobile-search {
          width: 100% !important; /* Cambia el ancho al 100% en dispositivos móviles */
          margin-top: 20px ; /* Ajusta el espacio entre los íconos y el campo de búsqueda */
          margin-bottom: 30px ; 

      }
  }


/* Ocultar Cabezera  */
  @media (max-width: 767.98px) {
    #cabezera {
        display: none !important;
    }
}

  
@media (max-width: 768px) {
  .carousel-caption {
    padding: 1.5rem 2rem; /* Espaciado interno reducido en dispositivos móviles */
    border-radius: 15px; /* Bordes ligeramente menos redondeados */
    max-width: 90%; /* Ancho máximo ajustado */
    backdrop-filter: blur(5px); /* Efecto de desenfoque menos pronunciado */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Sombra más suave */
  }
}

/* Modal como comprar  */
    #comoComprarModal .modal-header {
        background-color: #ff6347;
        color: white;
        border-bottom: none;
    }

    #comoComprarModal .modal-title {
        font-family: 'Zen Antique', serif;
        font-size: 1.3rem;
    }

    #comoComprarModal .zen-step {
        display: flex;
        align-items: start;
        padding: 15px;
        background-color: #f8f9fa;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    #comoComprarModal .zen-step:hover {
        background-color: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transform: translateY(-3px);
    }

    #comoComprarModal .zen-icon {
        font-size: 1.8rem;
        color: #ff6347;
        margin-right: 15px;
        flex-shrink: 0;
    }

    #comoComprarModal h6 {
        color: #333333;
        font-weight: 600;
    }

    #comoComprarModal p {
        color: #666666;
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    #comoComprarModal .btn-primary {
        background-color: #ff6347;
        border-color: #ff6347;
    }

    #comoComprarModal .btn-primary:hover {
        background-color: #e55a40;
        border-color: #e55a40;
    }

    #comoComprarModal .btn-outline-secondary {
        color: #ff6347;
        border-color: #ff6347;
    }

    #comoComprarModal .btn-outline-secondary:hover {
        background-color: #ff6347;
        color: white;
    }
