/* ===== Header Styles ===== */
.site-header {
  background: #000000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0 2rem !important;
  margin: 0 !important;
  height: 80px !important;
  display: flex !important;
  align-items: center !important;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 120px; /* Increased from 80px to match index page */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.9;
}

.logo i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
  color: #0891b2;
}

/* Main Navigation */
.main-nav .nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.main-nav .nav-links li {
  display: flex;
  align-items: center;
}

.main-nav .nav-links li:not(:last-child)::after {
  content: '•';
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
  font-size: 0.8rem;
  line-height: 1;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.main-nav a i {
  font-size: 1rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Cart Icon */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: #000000;
  border-radius: 8px;
  border: 2px solid #ffffff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cart-icon:hover {
  background: #333;
}

.cart-symbol {
  font-size: 1.4rem;
  color: #ffffff;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #0891b2;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid #000000;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: white;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  background: #1a1a1a;
  padding: 1rem 0;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li a {
  display: block;
  padding: 1rem 2rem;
  color: white;
  text-decoration: none;
  transition: background 0.2s ease;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links li a i {
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-container {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 0.5rem;
  }
  
  .header-container {
    height: 70px;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .logo i {
    font-size: 1.5rem;
  }
  
  .cart-icon {
    width: 36px;
    height: 36px;
  }
  
  .cart-symbol {
    font-size: 1.2rem;
  }
}

/* Ensure the header stays on top of other content */
.site-header {
  position: relative;
  z-index: 1000;
}

/* Add some space below the header for content */
body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}
