/* General Styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #d4af37;
  color: #000;
  text-align: center;
  padding: 10px;
}

.announcement-bar p {
  margin: 0;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #000;
  color: #fff;
}

.header.sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
}

.cart-icon {
  font-size: 20px;
}

/* Hero Section */
.hero {
  background-image: url('https://via.placeholder.com/1500');
  background-size: cover;
  background-position: center;
  height: 500px;
  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: #d4af37;
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* Feature Highlights */
.feature-highlights {
  padding: 50px 20px;
  text-align: center;
}

.grid {
  display: flex;
  justify-content: space-between;
}

.grid-item {
  flex: 1;
  margin: 0 10px;
}

/* Flash Sale */
.flash-sale {
  padding: 50px 20px;
  text-align: center;
}

.countdown-timer {
  font-size: 24px;
  margin: 20px 0;
}

.product-cards {
  display: flex;
  justify-content: space-between;
}

.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  border-radius: 5px;
}

.card button {
  background-color: #d4af37;
  color: #000;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Product Categories */
.product-categories {
  padding: 50px 20px;
}

.categories-grid {
  display: flex;
  justify-content: space-between;
}

.category-item {
  position: relative;
  width: 30%;
}

.category-item img {
  width: 100%;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 100%;
  padding: 20px;
  text-align: center;
}

/* Testimonials */
.testimonials {
  padding: 50px 20px;
  text-align: center;
}

.testimonials-grid {
  display: flex;
  justify-content: space-between;
}

.testimonial {
  flex: 1;
  margin: 0 10px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Newsletter */
.newsletter {
  padding: 50px 20px;
  text-align: center;
  background-color: #000;
  color: #fff;
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-form input {
  padding: 10px;
  width: 300px;
  border: none;
  border-radius: 5px;
}

.newsletter-form button {
  background-color: #d4af37;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background-color: #000;
  color: #fff;
}

.footer-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}