/* General Styles */
body {
  font-family: 'Lora', serif;
  color: #333333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

a {
  color: #D4AF37;
  text-decoration: none;
}

.btn {
  background-color: #D4AF37;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #C0A036;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #000000;
  color: #D4AF37;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

/* Sticky Header */
.sticky-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #000000;
  color: #F5F5DC;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.cart-icon {
  font-size: 20px;
}

/* Hero Section */
.hero {
  background-image: url('https://via.placeholder.com/1200x600');
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5F5DC;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 24px;
  margin-bottom: 30px;
}

/* Feature Highlights */
.feature-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 60px 20px;
  background-color: #F5F5DC;
  text-align: center;
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Flash Sale Section */
.flash-sale {
  padding: 60px 20px;
  text-align: center;
  background-color: #333333;
  color: #F5F5DC;
}

.countdown-timer {
  font-size: 36px;
  margin: 20px 0;
}

.sale-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background-color: #F5F5DC;
  padding: 20px;
  text-align: center;
  color: #333333;
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product-card .price {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

/* Product Categories */
.product-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 60px 20px;
}

.category {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #F5F5DC;
}

.overlay h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  text-align: center;
  background-color: #F5F5DC;
}

.testimonial {
  margin: 20px 0;
}

.testimonial p {
  font-size: 18px;
}

.testimonial .author {
  font-weight: bold;
}

/* Newsletter */
.newsletter {
  padding: 60px 20px;
  text-align: center;
  background-color: #333333;
  color: #F5F5DC;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 300px;
}

/* Footer */
footer {
  background-color: #000000;
  color: #F5F5DC;
  padding: 40px 20px;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-highlights, .sale-products, .product-categories {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .countdown-timer {
    font-size: 24px;
  }

  .product-card .price {
    font-size: 16px;
  }

  .overlay h3 {
    font-size: 20px;
  }

  .testimonials p {
    font-size: 16px;
  }
}