body {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: white;
}
.container-allMain {
  width: 100%;
  display: flex;
  justify-content: center;
}

.moverlo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding: 1rem;
  max-width: 95vw;
  justify-content: center;
  list-style-type: none;
}

.card {
  width: 100%;
  max-width: 12rem;
  padding: 0.4rem;
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
}

.card-title {
  font-size: 13px;
  margin-bottom: 0.4rem;
  color: white;
}

.card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.card-img-top {
  width: 100%;
  height: 140px;
  object-fit: contain;
  border-radius: 6px;
}

.boton {
  width: 100%;
  display: flex;
  justify-content: center;
}

.tipo-envio,
.tipo-entrega,
.precio-ahora {
  color: white;
  font-size: 13px;
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .moverlo {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .moverlo {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    max-width: 12rem;
  }
}

@media screen and (max-width: 480px) {
  .moverlo {
    grid-template-columns: 1fr;
  }
}


/* Buscador desplegable */
.search-wrapper {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
}

.search-box {
  position: relative;
  height: 40px;
  transition: width 0.4s ease;
  width: 40px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 0;
  padding: 0;
  transition: width 0.4s ease, padding 0.4s ease;
  height: 100%;
  font-size: 1rem;
  color: #333;
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #333;
  cursor: pointer;
  font-size: 1.2rem;
}