/* General Styles */
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  color: #333;
  background-color: #f5f5f5;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #4CAF50;
  color: white;
  text-align: center;
  padding: 10px 0;
}

/* Sticky Header */
.sticky-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.sticky-header .logo h1 {
  font-size: 24px;
  color: #4CAF50;
}

.sticky-header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.sticky-header .cart-icon {
  font-size: 20px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-image: url('https://via.placeholder.com/1200x400');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h2 {
  font-size: 48px;
  margin: 0;
}

.hero-content p {
  font-size: 18px;
  margin: 10px 0;
}

.cta-button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

/* Feature Highlights */
.feature-highlights {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  background-color: white;
}

.feature {
  text-align: center;
}

/* Flash Sale Section */
.flash-sale {
  text-align: center;
  padding: 40px 20px;
}

.countdown-timer {
  font-size: 24px;
  margin: 20px 0;
}

.sale-products {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.product-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-card button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

/* Product Categories */
.product-categories {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
}

.category {
  position: relative;
}

.category img {
  width: 100%;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

/* Testimonials */
.testimonials {
  text-align: center;
  padding: 40px 20px;
  background-color: white;
}

.testimonial {
  margin: 20px 0;
}

.author {
  font-weight: bold;
}

/* Newsletter */
.newsletter {
  text-align: center;
  padding: 40px 20px;
  background-color: #4CAF50;
  color: white;
}

.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 25px;
  margin-right: 10px;
}

.newsletter button {
  background-color: white;
  color: #4CAF50;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 10px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 20px;
}