/* === RESET BÁSICO === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fbe9f0;
  color: #333;
}

/* === NAVBAR === */
.navbar {
  background-color: #ff6ea2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.navlist {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.navlist li a img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.navlist li a img:hover {
  transform: scale(1.15);
  filter: none;
}

/* === SECCIÓN DE PRODUCTOS === */
.products-section {
  padding: 2rem;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

/* === TARJETA DE PRODUCTO === */
.product-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

/* === IMÁGENES DE PRODUCTO === */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.8rem 0.8rem 0 0;
  display: block;
}

/* === CONTENIDO DE TEXTO === */
.product-card h3 {
  color: #ff6ea2;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1rem;
}

.product-card p {
  font-weight: bold;
  margin: 0.3rem 0;
}

/* === BOTONES DE COMPRA === */
.buy-button {
  background-color: #ff6ea2;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 1.5rem;
  font-weight: 600;
  text-align: center;
  display: block;
  margin: 0.5rem auto 1rem;
  width: 85%;
  transition: background-color 0.2s ease;
}

.buy-button:hover {
  background-color: #e35691;
}

/* === CLASE ESPECIAL PARA IMAGEN ONLYFANS === */
.only {
  height: 220px;
  object-fit: cover;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 0.5rem;
  }

  .navlist {
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-card img {
    height: 200px;
  }

  .buy-button {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 1rem;
  }

  .product-card {
    border-radius: 0.8rem;
  }

  .product-card h3 {
    font-size: 1.1rem;
  }

  .product-card p {
    font-size: 0.9rem;
  }
}

  