body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #FFD700;
}

a {
  color: #FFD700;
  text-decoration: none;
}

header.hero {
  background: #000;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

nav ul {
  display: flex;
  gap: 1rem;
  padding: 0;
  margin-top: 1rem;
  list-style: none;
}

nav ul li a {
  font-weight: bold;
}

.logo {
  max-width: 200px;
  margin-top: 1rem;
}

.section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.section-image {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.section-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-card {
  background: #111;
  border: 1px solid #FFD700;
  padding: 20px;
  text-align: center;
  width: 220px;
  border-radius: 8px;
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.buy-button {
  display: inline-block;
  background: #FFD700;
  color: black;
  padding: 10px 20px;
  margin-top: 10px;
  font-weight: bold;
  border-radius: 5px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 10px;
}

.whatsapp-button img {
  margin-right: 8px;
  height: 24px;
}

.review p {
  margin-bottom: 10px;
}

footer {
  background: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #FFD700;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
}
/* Fade-in and blur scroll effect */
.hero,
.about-blur-wrapper {
  position: relative;
  overflow: hidden;
}

.hero::after,
.about-blur-wrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: black;
  opacity: 0;
  transition: opacity 0.5s ease, filter 0.5s ease;
  z-index: 2;
}

.hero.blur-active::after,
.about-blur-wrapper.blur-active::after {
  opacity: 0.5;
  filter: blur(4px);
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  z-index: 3;
  position: relative;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}
