
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
}

header {
  background: #000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

header .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #d4af37;
}

header ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

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

header ul li a:hover {
  color: #d4af37;
}

.hero {
  background: url('https://images.unsplash.com/photo-1542204165-19b1c0d3f87f?auto=format&fit=crop&w=1400&q=80') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #fff;
}

.hero-text p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.btn {
  background: #d4af37;
  color: #000;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

.content {
  padding: 4rem 2rem;
  text-align: center;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #d4af37;
}

.productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.producto {
  background: #111;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.producto:hover {
  transform: translateY(-5px);
}

.producto img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.precio {
  display: block;
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #fff;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
  gap: 1rem;
}

form input, form button {
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
}

form input {
  background: #222;
  color: #fff;
}

form button {
  background: #d4af37;
  color: #000;
  cursor: pointer;
}

form button:hover {
  background: #fff;
}

footer {
  background: #000;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}
