/* General Styles */
body {
  font-family: 'Lora', serif;
  color: #504846;
  margin: 0;
  padding: 0;
  background-color: #f4f1ee;
}

h1, h2, h3 {
  font-family: 'Merriweather', serif;
  color: #786452;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #c7a17a;
  color: #fff;
  text-align: center;
  padding: 10px;
}

/* Sticky Header */
.sticky-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.sticky-header .logo {
  font-size: 24px;
  font-weight: bold;
}

.sticky-header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.sticky-header .cart-icon {
  font-size: 20px;
}

.sticky-header .cart-count {
  background-color: #c7a17a;
  color: #fff;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 14px;
}

/* Hero Section */
.hero {
  background-image: url('https://via.placeholder.com/1200x600');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #c7a17a;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

/* Feature Highlights */
.feature-highlights {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  background-color: #fff;
}

.feature-card {
  text-align: center;
  max-width: 300px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Flash Sale Section */
.flash-sale-section {
  padding: 50px;
  background-color: #f4f1ee;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  font-size: 24px;
  margin-top: 10px;
}

.product-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.product-card {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

.product-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-card .price {
  font-size: 18px;
  color: #c7a17a;
  margin-bottom: 10px;
}

.add-to-cart {
  background-color: #c7a17a;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Product Categories */
.product-categories {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  background-color: #fff;
}

.category-card {
  position: relative;
  width: 30%;
}

.category-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 10px;
}

.overlay h3 {
  font-size: 24px;
}

/* Testimonials */
.testmonials {
  padding: 50px;
  background-color: #f4f1ee;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.testimonial-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  margin: 10px;
}

.testimonial-card p {
  font-style: italic;
}

.testimonial-card .author {
  font-weight: bold;
}

/* Newsletter */
.newsletter {
  padding: 50px;
  background-color: #fff;
  text-align: center;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  width: 250px;
}

.newsletter-form button {
  background-color: #c7a17a;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: #786452;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}