/* General Styles */
body {
  font-family: 'Playfair Display', serif;
  margin: 0;
  padding: 0;
  color: #2c2c2c;
  background-color: #f9f6f1;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #3a3a3a;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #3a3a3a;
  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: #f9f6f1;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #3a3a3a;
}

.navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navigation a {
  text-decoration: none;
  color: #3a3a3a;
  font-weight: 500;
}

.cart-icon a {
  text-decoration: none;
  color: #3a3a3a;
  font-size: 20px;
}

.cart-count {
  background-color: #e74c3c;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  margin-left: 4px;
}

/* Hero Section */
.hero {
  background-image: url('https://via.placeholder.com/1200x600');
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 48px;
  margin: 0;
}

.hero p {
  font-size: 20px;
  margin: 10px 0 20px;
}

.cta-button {
  background-color: #e74c3c;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #c0392b;
}

/* Feature Highlights */
.feature-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
}

.feature-card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 22px;
  margin: 0;
}

/* Flash Sale */
.flash-sale {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f6f1;
}

.countdown-timer {
  font-size: 24px;
  margin: 20px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-card img {
  border-radius: 10px;
}

.product-card h4 {
  font-size: 18px;
  margin: 10px 0;
}

.product-card p {
  font-size: 16px;
}

.discount {
  text-decoration: line-through;
  color: #999;
}

/* Product Categories */
.product-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 20px;
}

.category-card {
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: white;
  text-align: center;
}

.category-card h3 {
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 10px;
}

/* Testimonials */
.testimonials {
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background-color: #f9f6f1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Newsletter */
.newsletter {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f6f1;
}

.newsletter form {
  display: flex;
  justify-content: center;qaswjuhuh
  gap: 10px;
}

.newsletter input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 25px;
  width: 300px;
}

.newsletter button {
  background-color: #e74c3c;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter button:hover {
  background-color: #c0392b;
}

/* Footer */
.footer {
  background-color: #3a3a3a;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.social-icons {
  margin: 20px 0;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-highlights, .product-grid, .testimonial-grid, .product-categories {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
}