
body {
  font-family: sans-serif;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 4%;
  background: white;
  position: fixed;
  top: 0;
  left: 5%;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

nav {
  padding-right: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #999;
}

.section {
  padding: 50px 5% 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

h1, h2 {
  font-size: 17px;
  font-weight: 600;
}

.grid-lookbook {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-auto-rows: 350px;
  gap: 0;
}

.grid-lookbook img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grid-coleccion {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.grid-coleccion img {
  width: 100%;
  height: auto;
  object-fit: cover;
  --border-size: 1px;
  border: var(--border-size) solid rgb(231, 231, 231);
}

.grid-tienda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.producto {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.producto img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0;
}

.suave-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.suave-info img {
  width: 30%;
  height: auto;
  object-fit: cover;
}

.texto-suave {
  width: 60%;
  font-size: 14px;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  background: #f8f8f8;
}

a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

/* MEDIA QUERIES PARA MÓVILES */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 4%;
    position: static;
    width: 100%;
    left: 0;
  }

  nav {
    padding-right: 0;
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 10px 0 0;
  }

  .suave-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .texto-suave {
    width: 100%;
  }

  .grid-coleccion {
    grid-template-columns: 1fr;
  }

  .grid-lookbook {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .grid-tienda {
    grid-template-columns: 1fr;
  }

  .producto img {
    height: auto;
  }
}
