/* General Styles */
body {
  font-family: 'Merriweather', serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #4a4a4a;
}

h1, h2, h3 {
  font-family: 'Dancing Script', cursive;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #bf6f4a;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
}

/* Sticky Header */
.sticky-header {
  background-color: #f5f5f5;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: #bf6f4a;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  font-size: 1.1rem;
}

.cart-icon {
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-image: url("https://via.placeholder.com/1200x800");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 4rem;
  margin: 0;
}

.hero-content p {
  font-size: 1.5rem;
  margin: 20px 0;
}

.cta-button {
  background-color: #9a8c63;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}

/* Feature Highlights */
.feature-highlights {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}

.feature-highlights h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}

.feature p {
  font-size: 1rem;
}

/* Flash Sale */
.flash-sale {
  padding: 50px 20px;
  background-color: #bf6f4a;
  color: #fff;
  text-align: center;
}

.flash-sale h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

#countdown {
  font-size: 2rem;
  font-weight: bold;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #4a4a4a;
}

.product-card img {
  width: 100%;
  height: auto;
}

.original-price {
  text-decoration: line-through;
  color: #888;
}

/* Product Categories */
.product-categories {
  padding: 50px 20px;
  text-align: center;
}

.product-categories h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.category {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.category img {
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(191, 111, 74, 0.8);
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 1.5rem;
}

/* Testimonials */
.testimonials {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 1rem;
}

.author {
  font-weight: bold;
  margin-top: 10px;
}

/* Newsletter */
.newsletter {
  padding: 50px 20px;
  background-color: #9a8c63;
  color: #fff;
  text-align: center;
}

.newsletter h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.newsletter form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 25px;
  width: 300px;
}

.newsletter button {
  background-color: #bf6f4a;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: #4a4a4a;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.social-icons a {
  margin: 0 10px;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .grid-container, .product-grid, .category-grid, .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}