/* General Styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
}

a {
  text-decoration: none;
  color: #00ffcc;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #00ffcc;
  color: #0a0a0a;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

/* Sticky Header */
.sticky-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sticky-header .logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.sticky-header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.sticky-header nav ul li a {
  color: #ffffff;
  font-weight: 700;
}

.cart-icon {
  font-size: 24px;
  cursor: pointer;
}

.cart-count {
  background-color: #00ffcc;
  color: #0a0a0a;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 12px;
  position: relative;
  top: -10px;
}

/* Hero Section */
.hero {
  background-image: url('https://via.placeholder.com/1500');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #00ffcc;
  color: #0a0a0a;
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

/* Feature Highlights */
.feature-highlights {
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
  background-color: #1a1a1a;
  text-align: center;
}

.feature {
  width: 30%;
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 16px;
}

/* Flash Sale Section */
.flash-sale {
  padding: 50px 20px;
  text-align: center;
}

.countdown-timer {
  font-size: 36px;
  font-family: 'Orbitron', sans-serif;
  margin: 30px 0;
  color: #00ffcc;
}

.product-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.product-card {
  background-color: #1a1a1a;
  padding: 20px;
  text-align: center;
  width: 200px;
  border-radius: 10px;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h4 {
  font-size: 18px;
  margin: 10px 0;
}

.product-card p {
  font-size: 14px;
  margin: 10px 0;
}

.product-card button {
  background-color: #00ffcc;
  color: #0a0a0a;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

/* Product Categories */
.product-categories {
  padding: 50px 20px;
  text-align: center;
}

.category-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.category-card {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
}

.category-card 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;
  justify-content: center;
  align-items: center;
}

.overlay h3 {
  font-size: 24px;
  color: #00ffcc;
}

/* Testimonials */
.testimonials {
  padding: 50px 20px;
  text-align: center;
  background-color: #1a1a1a;
}

.testimonial-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-card {
  background-color: #0a0a0a;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
}

.testimonial-card p {
  font-size: 16px;
}

/* Newsletter Signup */
.newsletter {
  padding: 50px 20px;
  text-align: center;
}

.newsletter input {
  padding: 10px;
  width: 300px;
  border: none;
  margin-right: 10px;
}

.newsletter button {
  background-color: #00ffcc;
  color: #0a0a0a;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  padding: 20px;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.footer-links ul li a {
  color: #ffffff;
}

.social-icons {
  margin: 20px 0;
}

.social-icons a {
  font-size: 24px;
  margin: 0 10px;
}