/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f7;
  color: #3a3a3a;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #5a7c69;
  color: #ffffff;
  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: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #5a7c69;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #3a3a3a;
}

.cart-icon {
  font-size: 20px;
}

/* Hero Section */
.hero-section {
  background-image: url('https://via.placeholder.com/1500');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
}

.cta-button {
  background-color: #5a7c69;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

/* Feature Highlights */
.feature-highlights {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  background-color: #ffffff;
}

.feature-item {
  text-align: center;
}

/* Flash Sale Section */
.flash-sale {
  padding: 50px;
  text-align: center;
  background-color: #f8f8f7;
}

.countdown-timer {
  font-size: 24px;
  font-weight: bold;
  color: #5a7c69;
  margin-bottom: 20px;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Product Categories */
.product-categories {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  flex-wrap: wrap;
}

.category-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(90, 124, 105, 0.7);
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s;
}

.category-item:hover .category-overlay {
  opacity: 1;
}

/* Testimonials */
.testimonials {
  padding: 50px;
  text-align: center;
  background-color: #ffffff;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-item {
  background-color: #f8f8f7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Newsletter Signup */
.newsletter-signup {
  padding: 50px;
  text-align: center;
  background-color: #f8f8f7;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #5a7c69;
}

.newsletter-form button {
  background-color: #5a7c69;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background-color: #5a7c69;
  color: #ffffff;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.social-icons a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
}