/* General Styles */
body {
  font-family: 'Playfair Display', serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #1a1a1a;
  color: #fff;
  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: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #1a1a1a;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.cart-icon {
  font-size: 20px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  background-image: url('https://via.placeholder.com/1200x600');
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #d4af37;
  color: #fff;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

/* Feature Highlights */
.feature-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.feature-card img {
  width: 100px;
  height: 100px;
}

.feature-card h3 {
  font-size: 20px;
  margin: 10px 0;
}

/* Flash Sale */
.flash-sale {
  background-color: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
}

.countdown-timer {
  font-size: 24px;
  margin: 20px 0;
}

.sale-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card img {
  width: 100%;
  height: auto;
}

.price {
  color: #d4af37;
  font-weight: bold;
}

.original-price {
  text-decoration: line-through;
  color: #999;
}

/* Product Categories */
.product-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 50px 20px;
}

.category-card {
  position: relative;
}

.category-card img {
  width: 100%;
  height: auto;
}

.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;
}

.category-button {
  background-color: #d4af37;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* Testimonials */
.testimonials {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.testimonial-card {
  margin: 20px 0;
}

/* Newsletter */
.newsletter {
  background-color: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
}

.newsletter input {
  padding: 10px;
  width: 300px;
  border: 1px solid #ccc;
  margin-right: 10px;
}

.newsletter button {
  background-color: #d4af37;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.social-icons {
  margin: 20px 0;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
}