body {
  background-color: #1a1a1a;
  color: #fff;
  font-family: 'Varela Round', sans-serif;
}

.logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
  color: #00aaff;
}

.navbar-dark .navbar-nav .nav-link {
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: color 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #00aaff !important;
}

.search-icon {
  font-size: 1.5rem;
  transition: color 0.3s;
}

.search-icon:hover {
  color: #00aaff !important;
}

.hero {
  height: 500px;
}

.slide.active {
  opacity: 1 !important;
}

.hero-content h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 4rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.cta-btn {
  font-size: 1.2rem;
  padding: 12px 25px;
}

.cta-btn:hover {
  background-color: #0099cc !important;
}

.featured-products {
  padding: 50px 0;
}

.featured-products h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
}

.product-card {
  background: #333;
  border: 2px solid #444;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 170, 255, 0.3);
}

.product-card img {
  height: 250px;
  object-fit: cover;
}

.product-card h4 {
  font-size: 1.3rem;
  margin: 15px;
}

.product-card p {
  font-size: 1.2rem;
  margin: 0 15px 15px;
}

.product-card .btn {
  margin: 15px;
}

.product-card .btn:hover {
  background-color: #0099cc !important;
}

.footer-links a {
  font-size: 1.1rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00aaff !important;
}

.social-icons a {
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00aaff !important;
}

/* 🔧 Carousel image styling */
.carousel-item img {
  height: 500px;
  object-fit: cover;
  object-position: center;
}

/* 🔧 Responsive fixes */
@media (max-width: 768px) {
  .logo {
    font-size: 2rem;
  }
  .navbar-nav .nav-link {
    font-size: 1rem;
  }
  .hero-content h2 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .featured-products h3 {
    font-size: 2rem;
  }
}
