/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
}

/* Theme Support */
[data-theme="dark"] {
  background-color: #121212;
  color: #e4e4e4;
}

[data-theme="dark"] .navbar,
[data-theme="dark"] .card,
[data-theme="dark"] .bg-light {
  background-color: #1e1e1e !important;
  color: #f0f0f0;
}

[data-theme="dark"] .btn-outline-dark {
  border-color: #e4e4e4;
  color: #e4e4e4;
}

/* Loader */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-banner.webp') center center/cover no-repeat;
  color: #fff;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  animation: slideInDown 1.5s ease-out;
}

.hero p {
  font-size: 1.2rem;
  animation: slideInUp 2s ease-out;
}

/* Card Hover Effect */
.hover-zoom {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-zoom:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 14px;
  font-size: 20px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: background 0.3s ease;
}

.whatsapp-float:hover {
  background: #1ebc5a;
}

/* Footer */
footer i {
  font-size: 1.2rem;
  transition: transform 0.3s;
}
footer i:hover {
  transform: scale(1.2);
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  font-size: 16px;
  display: none;
  z-index: 999;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #007bff;
}

/* WhatsApp Icon Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

/* Global Dark Theme Styles */
html[data-theme='dark'] {
  background-color: #121212;
  color: #eee;
}

html[data-theme='dark'] .navbar,
html[data-theme='dark'] .dropdown-menu {
  background-color: #1f1f1f;
}

html[data-theme='dark'] .navbar .nav-link {
  color: #f0f0f0 !important;
}

html[data-theme='dark'] .navbar .nav-link:hover {
  color: #00bfff !important;
}

html[data-theme='dark'] footer {
  background-color: #1f1f1f;
  color: #fff;
}

html[data-theme='dark'] .btn-outline-dark {
  color: #fff;
  border-color: #fff;
}

html[data-theme='dark'] .btn-outline-dark:hover {
  background-color: #00bfff;
  border-color: #00bfff;
}

/* Toggle Icon Styling */
#toggle-theme i {
  color: #333;
}
html[data-theme='dark'] #toggle-theme i {
  color: #fff;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  font-size: 16px;
  display: none;
  z-index: 999;
  transition: all 0.3s ease;
}
.back-to-top:hover {
  background: #007bff;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
#cart-count {
    font-size: 12px;
    z-index: 100;
}

.nav-link.active {
  font-weight: bold;
  color: #0d6efd !important; /* Bootstrap primary or your brand color */
  border-bottom: 2px solid #0d6efd;
}


/* =================== new ============================= */
/* Remove underline & keep consistent white links */
.neu-footer a,
.footer-links a,
.footer-social {
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Hover: brighten slightly instead of changing color */
.footer-links a:hover,
.footer-social:hover {
  color: #ffffff !important;
  opacity: 1;
}

/* Social icon micro animation (clean and subtle) */
.footer-social {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  opacity: 1;
}

/* Ensure nav item in Quick Links does not inherit nav-link default styling */
.footer-links .nav-link {
  padding: 0;
  display: inline;
  color: inherit;
}