body,html{
    height: 100%;
    width: 100%;
}
.main-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-container >.login,
.main-container >.hero-body{
    height: auto;
    width: 100%;
    max-width: 400px;
    min-width: 300px;
}
.form-inline{
    display: inline-flex;
}
.search-container {
  display: flex;
  justify-content: center; /* centra horizontalmente */
  align-items: center;     /* centra verticalmente si le das altura */
  margin: 20px auto;
}

.search-container input {
  width: 200px;
  height: 35px;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 0 15px;
  font-size: 18px;
}

.search-container .save-btn {
  background-color: #ff69b4;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  margin-left: 10px;
  cursor: pointer;
}
.contact-info {
  padding: 40px 20px;
  background-color: #f9f9f9; /* Fondo gris claro */
  text-align: center;
}

.contact-info h2 {
  color: #ff69b4; /* Rosa para títulos */
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.social-media a {
  margin: 0 10px;
  color: #ff69b4;
  font-weight: bold;
  text-decoration: none;
}

.social-media a:hover {
  text-decoration: underline;
}

.has-text-pink {
  color: #ff69b4 !important; /* Rosa */
}

.has-text-pink:hover {
  color: #e75480 !important; /* Rosa más oscuro al pasar el mouse */
}
.table td {
    white-space: normal; /* Permite que el texto se divida en varias líneas */
    word-wrap: break-word; /* Rompe palabras largas si es necesario */
}

.is-pink {
  background-color: #ff69b4; /* Rosa */
  color: white;
  border: none;
}

.is-pink:hover {
  background-color: #e75480; /* Rosa más oscuro al pasar el mouse */
  color: white;
}
.slider {
  position: relative;
  width: 100%;
  height: 100vh; /* o el alto que quieras */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 15s infinite;
}

/* Imagen 1 */
.slide1 {
  background-image: url('../img/banner_1.jpg');
  animation-delay: 0s;
}

/* Imagen 2 */
.slide2 {
  background-image: url('../img/banner_2.jpg');
  animation-delay: 5s;
}

/* Imagen 3 */
.slide3 {
  background-image: url('../img/banner_3.jpg');
  animation-delay: 10s;
}

@keyframes fade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

/* Texto centrado */
.patrick-hand-regular {
  font-family: "Patrick Hand", cursive;
  font-weight: 400;
  font-style: normal;
}

.slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-family: "Patrick Hand", cursive;
  z-index: 10; /* se asegura de estar arriba de las imágenes */
}

.slider-text h1 {
  font-size: 4rem;
  margin: 0;
}

.slider-text p {
  font-size: 1.5rem;
}

.product-image {
    width: 566px;
    height: 755px;
    object-fit: cover; /* o "contain" si no quieres que recorte */
    display: block;
    margin: auto;
}
