/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #333;
  color: #fff;
  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: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.cart-icon {
  font-size: 20px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  background-image: url('https://via.placeholder.com/1200');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #333;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 25px;
}

/* Feature Highlights */
.feature-highlights {
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
  background-color: #fff;
}

.feature {
  text-align: center;
  max-width: 300px;
}

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 10px;
}

/* Flash Sale Section */
.flash-sale {
  background-color: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
}

.countdown-timer {
  font-size: 32px;
  font-weight: 700;
  margin: 20px 0;
}

.sale-products {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.product-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-card img {
  max-width: 100%;
  border-radius: 10px;
}

.product-card h4 {
  margin: 10px 0;
}

.product-card .price {
  font-weight: 700;
  color: #333;
}

.product-card .old-price {
  text-decoration: line-through;
  color: #999;
}

.product-card button {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Product Categories */
.product-categories {
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
  background-color: #fff;
}

.category {
  background-size: cover;
  background-position: center;
  height: 300px;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

/* Testimonials */
.testimonials {
  background-color: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
}

.testimonial {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-style: italic;
}

.testimonial .author {
  font-weight: 700;
}

/* Newsletter */
.newsletter {
  background-color: #333;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.newsletter input {
  padding: 10px;
  width: 300px;
  border: none;
  border-radius: 5px;
}

.newsletter button {
  background-color: #fff;
  color: #333;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

.social-icons a {
  font-size: 20px;
  margin: 0 10px;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-highlights, .sale-products, .product-categories {
    flex-direction: column;
    align-items: center;
  }

  .feature, .product-card, .category {
    width: 90%;
    margin-bottom: 20px;
  }

  .hero-section {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }
}