body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background: #fffaf0;
  color: #3a2c1b;
  overflow-x: hidden;
}

/* Loading Animation */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.logo-animation {
  width: 150px;
  animation: zoomIn 2s ease-in-out;
}
@keyframes zoomIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Header with Glass Blur */
header {
  background: rgba(214, 175, 55, 0.85);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
header:hover {
  background: rgba(214, 175, 55, 0.95);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
.header-logo {
  width: 50px;
  height: 50px;
}
header h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}
nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
nav a:hover {
  color: #f7e9a0;
}

/* Slideshow */
.slideshow-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.slides img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  border-bottom: 3px solid #d4af37;
}

/* Products */
#products {
  padding: 40px 5%;
  text-align: center;
}
#products h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #7a5c00;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.product-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.product-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Contact */
#contact {
  text-align: center;
  padding: 40px 5%;
}
#contact h2 {
  color: #7a5c00;
  font-size: 30px;
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  margin-top: 20px;
}

/* Footer with Gold Shimmer Animation */
footer {
  background: linear-gradient(90deg, #a67c00, #d4af37, #a67c00);
  background-size: 300% 300%;
  animation: shimmer 10s infinite linear;
  text-align: center;
  color: white;
  padding: 30px 10px;
  position: relative;
  overflow: hidden;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.social-links img {
  width: 35px;
  margin: 10px;
  transition: transform 0.3s;
}
.social-links img:hover {
  transform: scale(1.2);
}
.footer-logo {
  width: 80px;
  margin: 15px 0;
}
footer p {
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}
.whatsapp-float img {
  width: 60px;
  transition: transform 0.3s;
}
.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 22px;
  }
  nav a {
    margin: 0 5px;
    font-size: 14px;
  }
  .product-grid img {
    height: 250px;
  }
}
