/* General Styles */
body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #4CAF50;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

/* Sticky Header */
.sticky-header {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.sticky-header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #4CAF50;
}

.sticky-header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.sticky-header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.sticky-header .cart-icon {
  font-size: 24px;
}

/* Hero Section */
.hero {
  background-image: url('https://via.placeholder.com/1200x400');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero .cta-btn {
  background-color: #4CAF50;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
}

/* Feature Highlights */
.feature-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.feature-card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Flash Sale Section */
.flash-sale {
  padding: 50px 20px;
  text-align: center;
  background-color: #e8f5e9;
}

.flash-sale h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.countdown-timer {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.product-card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}

.product-card img {
  max-width: 100%;
  border-radius: 10px;
}

/* Product Categories */
.product-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 50px 20px;
  text-align: center;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.category-card img {
  max-width: 100%;
  border-radius: 10px;
}

.category-card h3 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

/* Testimonials */
.testimonials {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.testimonial-card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  margin-bottom: 20px;
}

/* Newsletter */
.newsletter {
  padding: 50px 20px;
  text-align: center;
  background-color: #e8f5e9;
}

.newsletter h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 50px;
  width: 300px;
}

.newsletter button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

footer .footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

footer .footer-links ul li a {
  text-decoration: none;
  color: white;
}

footer .social-icons {
  font-size: 24px;
  margin-top: 20px;
}

footer .social-icons a {
  color: white;
  margin: 0 10px;
}