
/* ===== LUXURY NAVBAR ===== */
.luxury-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(240, 230, 224, 0.8);

  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem 50px 1rem 200px;
}

/* Logo */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 1001;
  flex-shrink: 0;
}

.logo-main {
  color: #3a3a3a;
}

.logo-accent {
  color: #7a6a5f;
}

/* Desktop Navigation */
.desktop-nav ul {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #3a3a3a;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #7a6a5f;
}

.nav-cta {
  font-family: 'Cormorant Garamond', serif;
  background: #7a6a5f;
  color: white;
  padding: 0.6rem clamp(1rem, 2vw, 1.4rem);
  border-radius: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #6a5a4f;
  transform: translateY(-1px);
}

.cart-count {
  background: #d4af37;
  color: white;
  border-radius: 50%;
  padding: 0.1rem 0.4rem;
  font-size: 0.7rem;
  margin-left: 0.2rem;
  vertical-align: middle;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: relative;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  transition: all 0.3s ease;
}

.bar {
  height: 2px;
  width: 100%;
  background: #3a3a3a;
  transition: all 0.3s ease;
  transform-origin: left center;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 25px rgba(0,0,0,0.08);
  transition: right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 1001;
  overflow-y: auto;
}

.mobile-nav-container {
  padding: 5rem 1.5rem 2rem;
  height: 100%;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}

.mobile-nav .nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.2rem;
  white-space: normal;
}

.mobile-nav .nav-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Active States */
.mobile-menu-btn.active .bar1 {
  transform: rotate(45deg) translate(4px, 0);
}

.mobile-menu-btn.active .bar2 {
  opacity: 0;
}

.mobile-menu-btn.active .bar3 {
  transform: rotate(-45deg) translate(4px, 0);
}

.mobile-nav.active {
  right: 0;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* No Scroll When Menu Open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .desktop-nav ul {
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .luxury-header {
    padding: 1rem 0.1rem;
  }
  
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.6rem;
  }
  
  .mobile-nav {
    width: 90%;
  }
  
  .mobile-nav-container {
    padding: 4.5rem 1.2rem 2rem;
  }
}




