/* General Styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

/* Sticky Header */
.sticky-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.sticky-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav ul li a {
  font-weight: 400;
}

.cart-icon {
  font-size: 18px;
}

/* Hero Section */
.hero {
  background-image: url('https://via.placeholder.com/1500');
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin: 0;
}

.hero-content p {
  font-size: 18px;
  margin: 10px 0 20px;
}

.cta-button {
  background-color: #b8860b;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Feature Highlights */
.feature-highlights {
  background-color: #fff;
  padding: 50px 0;
}

.feature-highlights .container {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.feature {
  flex: 1;
  padding: 20px;
}

.feature h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.feature p {
  font-size: 16px;
  color: #666;
}

/* Flash Sale Section */
.flash-sale {
  background-color: #f4f4f4;
  padding: 50px 0;
  text-align: center;
}

.flash-sale h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.countdown-timer {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.product-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.product-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h4 {
  font-size: 18px;
  margin: 10px 0;
}

.product-card p {
  font-size: 16px;
  color: #b8860b;
}

/* Product Categories */
.product-categories {
  display: flex;
  gap: 20px;
  padding: 50px 0;
}

.category {
  position: relative;
  flex: 1;
}

.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.overlay h3 {
  font-size: 24px;
  margin: 0 0 10px;
}

/* Testimonials */
.testimonials {
  background-color: #fff;
  padding: 50px 0;
}

.testimonials h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.testimonial {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
}

.testimonial p {
  font-size: 16px;
  margin: 0 0 10px;
}

.testimonial .author {
  font-weight: 700;
  color: #b8860b;
}

/* Newsletter */
.newsletter {
  background-color: #1a1a1a;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

.newsletter h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.newsletter p {
  font-size: 16px;
  margin-bottom: 30px;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 25px;
  width: 300px;
}

.newsletter button {
  background-color: #b8860b;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 50px 0 20px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  padding: 0 20px;
}

.footer-section h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  font-size: 20px;
  color: #fff;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid #444;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .feature-highlights .container {
    flex-direction: column;
  }

  .product-grid {
    flex-direction: column;
  }

  .product-categories {
    flex-direction: column;
  }

  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}