/* 🔹 Grid de categorías */
.gift-ideas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.gift_button_landing{
    padding: 13px 20px;
    width: 25%;
    margin: 0 auto;
    font-weight: bold;
    background: #c63933;
    border-radius: 30px;
    margin-top: 30px;
    font-size: 18px;
    color: white;
    text-align: center;
    cursor: pointer;
}
/* 🔹 Contenedor principal */
.gift-ideas-landing {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  margin-bottom: 20px;
}

/* 🔹 Título y subtítulo */
.gift-ideas-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  text-align:center
}

.gift-ideas-title span {
    display: block; /* fuerza salto de línea */
}

.gift-ideas-subtitle {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 50px;
   text-align:center
}

/* 🔹 Grid de categorías */
.gift-ideas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* 🔹 Cada categoría */
.gift-idea-item {
  text-align: center;
  flex: 0 0 calc((100% / 4) - 20px); /* PC: 6 en línea */
  max-width: calc((100% / 4) - 20px);
  box-sizing: border-box;
}

/* 🔹 Cuadro de la imagen */
.gift-idea-img-wrapper {
  width: 100%;
  aspect-ratio: 2 / 1; /* cuadrado perfecto */
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}

/* 🔹 Imagen de categoría */
.gift-idea-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}

/* 🔹 Nombre de la categoría (fuera del cuadrado) */
.gift-idea-name {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

/* 🔹 Responsive: 2 por fila */
@media (max-width: 1200px) {
  .gift-idea-item {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin-bottom: 20px;
  }

  .gift-ideas-overlay {
    padding: 20px 10px;
  }

  .gift-idea-img-wrapper {
    aspect-ratio: 2 / 1; /* sigue cuadrado perfecto */
  }

  .gift-idea-img {
    max-width: 90%;
    max-height: 90%;
  }
}

/* 🔹 Móviles muy pequeños */
@media (max-width: 576px) {
  .gift-idea-item {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    margin-bottom: 15px;
  }

  .gift-ideas-overlay {
    padding: 10px 5px;
  }

  .gift-idea-img-wrapper {
    aspect-ratio: 2 / 1;
  }

  .gift-idea-img {
    max-width: 90%;
    max-height: 90%;
  }
}

/* 🔹 Cada categoría */
.gift-idea-item {
  text-align: center;
  flex: 0 0 calc((100% / 4) - 20px); /* PC: 6 en línea */
  max-width: calc((100% / 4) - 20px);
  box-sizing: border-box;
}

/* 🔹 Cuadro de la imagen */
.gift-idea-img-wrapper {
  width: 100%;
  aspect-ratio: 2 / 1; /* cuadrado perfecto */
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}

/* 🔹 Imagen de categoría */
.gift-idea-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}

/* 🔹 Nombre de la categoría (fuera del cuadrado) */
.gift-idea-name {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

/* 🔹 Responsive: 2 por fila */
@media (max-width: 1200px) {
  .gift-idea-item {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin-bottom: 20px;
  }

  .gift-ideas-overlay {
    padding: 20px 10px;
  }

  .gift-idea-img-wrapper {
    aspect-ratio: 2 / 1; /* sigue cuadrado perfecto */
  }

  .gift-idea-img {
    max-width: 90%;
    max-height: 90%;
  }

  .gift_button_landing{
	width:100%;
        margin-top: 5px;
  }
  .gift-ideas-title {
    font-size: 1.8rem;
  }

  .gift-ideas-landing{
	padding: 5px;
   }
}

/* 🔹 Móviles muy pequeños */
@media (max-width: 576px) {
  .gift-idea-item {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    margin-bottom: 15px;
  }

  .gift-ideas-overlay {
    padding: 10px 5px;
  }

  .gift-idea-img-wrapper {
    aspect-ratio: 2 / 1;
  }

  .gift-idea-img {
    max-width: 90%;
    max-height: 90%;
  }
}.card{

 border:none!important

}