/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Announcement Bar */
.announcement-bar {
  background: #8e7c68;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #2c2c2c;
}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 500;
}

.cart-icon {
  font-size: 20px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-button {
  background: #8e7c68;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
}

/* Feature Highlights */
.features {
  padding: 60px 40px;
  text-align: center;
  background: #f9f9f9;
}

.features h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Flash Sale */
.flash-sale {
  padding: 60px 40px;
  text-align: center;
  background: #fff;
}

.flash-sale h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 30px;
}

.countdown-timer {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}

.sale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  font-size: 20px;
  margin: 10px 0;
}

.product-card p {
  font-size: 18px;
  font-weight: 500;
  color: #8e7c68;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}

/* Product Categories */
.categories {
  padding: 60px 40px;
  text-align: center;
}

.categories h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 30px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category {
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.overlay h3 {
  font-size: 24px;
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  padding: 60px 40px;
  text-align: center;
  background: #f9f9f9;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 18px;
  margin-bottom: 10px;
}

.author {
  font-size: 14px;
  color: #8e7c68;
}

/* Newsletter */
.newsletter {
  padding: 60px 40px;
  text-align: center;
  background: #8e7c68;
  color: #fff;
}

.newsletter h2{
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 30px;
}
.newsletter p {
  font-size: 18px;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter-form input {
  padding: 15px;
  width: 300px;
  border: none;
  border-radius: 5px 0 0 5px;
}

.newsletter-form button {
  background: #2c2c2c;
  color: #fff;
  padding: 15px 20px;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* Footer */
.footer {
  background: #2c2c2c;
  color: #fff;
  padding: 40px;
  text-align: center;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
}

.social-icons a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-grid, .sale-grid, .category-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .header {
    padding: 10px 20px;
  }

  .logo {
    font-size: 20px;
  }

  .nav a {
    margin: 0 10px;
  }

  .hero {
    height: 60vh;
  }
}