/* Global */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #222;
}

h1, h3 {
  font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  z-index: 1000;
}
.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #d4af37;
}
.navbar nav a {
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar nav a:hover {
  color: #d4af37;
}

/* Products Section */
.products {
  text-align: center;
  padding: 3rem 8%;
}
.products h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.products p {
  margin-bottom: 2rem;
  color: #555;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Product Cards */
.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.product-card img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.5s ease;
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-card h3 {
  margin: 1rem 0 0.3rem;
}
.product-card .price {
  color: #d4af37;
  font-weight: bold;
}

/* Quotes */
.quote {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 1rem;
  border-radius: 0 0 18px 18px;
  font-style: italic;
  font-size: 0.9rem;
  transition: bottom 0.5s ease-in-out;
}
.quote.visible {
  bottom: 0;
}



/* ====== Footer ====== */
footer {
  background: #111;
  color: #eee;
  padding: 2rem 8%;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-links a {
  display: block;
  margin: 0.3rem 0;
  color: #eee;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #d4af37;
  text-shadow: 0 0 8px #d4af37;
}
.socials a {
  margin-right: 10px;
  font-size: 1.2rem;
  transition: 0.3s;
}
.socials a:hover {
  color: #d4af37;
}

