body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Roboto', sans-serif;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

nav {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

nav a {
  font-weight: 500;
  transition: color 0.3s ease;
}

section#home {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

section#products .bg-white:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

input, textarea {
  transition: all 0.3s ease;
}

footer {
  background: linear-gradient(135deg, #1e3a8a, #4f46e5);
}