@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,700&family=Fredoka+One&display=swap');

.titulo {
  font-family: 'Fredoka One', cursive;
}

.texto {
  font-family: 'DM Sans', sans-serif;
}

  /* Dentro de tu archivo CSS global */
.swiper-pagination {
  position: relative !important;
  margin-top: 3rem; /* o 4rem si quieres más espacio */
}

.store-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.product-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  gap: 30px;
}

.product-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: none;
}

.product-info {
  text-align: center;
  color: #4b4b4b;
}



.store-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.store-description {
  font-size: 16px;
  margin-bottom: 20px;
}

.product-benefits {
  list-style: none;
  padding: 0;
  font-size: 15px;
  margin-bottom: 20px;
}

.product-benefits li {
  margin: 5px 0;
}

.product-price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.buy-button {
  background-color: #bfa674;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.buy-button:hover {
  background-color: #a78d5c;
}

/* Responsive para móviles */
@media (min-width: 768px) {
  .product-container {
    flex-direction: row;
    align-items: center;
  }
  
  .product-info {
    text-align: left;
    padding-left: 40px;
  }
}


#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fffaf3;
  color: #333;
  padding: 16px 24px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 9999;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

#cookie-banner .cookie-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 640px) {
  #cookie-banner .cookie-inner {
    flex-direction: row;
    justify-content: space-between;
    /*gap: 120px;  más amplio solo en desktop */
  }
}

#cookie-banner p {
  margin: 0;
  text-align: center;
}

@media (min-width: 640px) {
  #cookie-banner p {
    text-align: left;
  }
}

#cookie-banner a {
  color: #f45f5b;
  font-weight: bold;
  text-decoration: underline;
}

#cookie-banner button {
  background-color: #f45f5b;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#cookie-banner button:hover {
  background-color: #e0423f;
}


[x-cloak] { display: none !important; }


/* Loader global (pantalla completa) */
#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.164); /* blanco semi-transparente */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

/* Imagen del loader */
.loader-img {
  width: 80px;
  animation: pulse 1.2s infinite ease-in-out;
}

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