* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top left, #3b1f0d, #1a0a03);
  color: #fff;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(30, 15, 8, 0.9);
  backdrop-filter: blur(5px);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #ffb84d;
}

nav a {
  text-decoration: none;
  color: #fff;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #ffb84d;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  text-align: center;
  padding-top: 80px;
}

.main-title {
  font-size: 70px;
  font-family: 'Playfair Display', serif;
}

.subtitle {
  font-size: 20px;
  margin-top: 15px;
  opacity: 0.8;
}

.btn {
  background: #ffb84d;
  color: #2b1508;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin-top: 25px;
  transition: transform 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

.product-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 60px;
  margin-top: 40px;
}

.card,
.shop-item {
  background: #44260f;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover,
.shop-item:hover {
  transform: scale(1.05);
}

.card img,
.shop-item img {
  width: 180px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 350px;
  margin: 40px auto;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 10px;
  outline: none;
}

footer {
  background: #1a0a03;
  text-align: center;
  padding: 20px;
  margin-top: 80px;
  font-size: 14px;
  opacity: 0.8;
}
