 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
  

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  border-radius: 0px;
  background: rgba(248, 249, 251, 0.92);
  backdrop-filter: blur(25px) saturate(180%);
  border-bottom: 1px solid rgba(74, 95, 127, 0.08);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  height: 75px;
  background: rgba(248, 249, 251, 0.97);
  box-shadow: 0 4px 30px rgba(26, 35, 50, 0.12);
  border-bottom-color: rgba(74, 95, 127, 0.12);
}

.nav-container {
  height: 100%;
  padding: 0% 10%;
  margin: 0 auto; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ============================================
   LOGO
============================================ */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #1a2332;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
}

.nav-logo:hover {
  transform: translateY(-3px);
}

.logo-icon {
  width: 50px;
  height: 50px;
  color: #7d6ba8;
  filter: drop-shadow(0 2px 8px rgba(125, 107, 168, 0.2));
  animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.02);
  }
}
 
 .logo-text img{
    height: 50px;
    }

.logo-main { 
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #1a2332;
  line-height: 1;
}

.logo-tagline { 
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4a5f7f;
  opacity: 0.8;
}

/* ============================================
   DESKTOP MENU
============================================ */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 45px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
  padding-top: 12px;
}
.nav-item a{
  text-decoration: none;
}
.nav-link {
  position: relative; 
  font-size: 17px;
  font-weight: 500;
  color: #2d3e54;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 10px 0;
}

.link-underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7d6ba8, #b8a9d4);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-link:hover {
  color: #7d6ba8;
}

.nav-link:hover .link-underline {
  width: 100%;
}

/* ============================================
   ACTION BUTTONS
============================================ */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  color: #2d3e54;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.icon-btn:hover {
  background: rgba(125, 107, 168, 0.08);
  color: #7d6ba8;
  transform: translateY(-2px);
}

.icon-btn:hover svg {
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 19px;
  height: 19px;
  background: var(--themeColor);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(125, 107, 168, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.nav-actions a{
  color: white;
  text-decoration: none;
}
.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--backgroundImageRight);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--fontFamilyMulish);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(125, 107, 168, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(125, 107, 168, 0.4);
}

.cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cta-btn:hover svg {
  transform: translateX(3px);
}

.cta-btn:active {
  transform: translateY(-1px);
}

/* ============================================
   HAMBURGER
============================================ */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #1a2332;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
  background: #7d6ba8;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-30px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
  background: #7d6ba8;
}

/* ============================================
   MOBILE OVERLAY
============================================ */

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 35, 50, 0.7);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   MOBILE SIDEBAR
============================================ */

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  font-family: var(--fontFamilyMulish);
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  box-shadow: 4px 0 50px rgba(26, 35, 50, 0.2);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99999999999;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.active {
  transform: translateX(0);
}

.mobile-sidebar::-webkit-scrollbar {
  width: 6px;
}

.mobile-sidebar::-webkit-scrollbar-track {
  background: rgba(125, 107, 168, 0.05);
}

.mobile-sidebar::-webkit-scrollbar-thumb {
  background: #b8a9d4;
  border-radius: 10px;
}

/* ============================================
   MOBILE HEADER
============================================ */

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  border-bottom: 1px solid rgba(125, 107, 168, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 251, 0.6));
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #1a2332;
}

.mobile-logo .logo-icon {
  width: 45px;
  height: 45px;
}

.close-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--themeColor);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-btn svg {
  width: 22px;
  height: 22px;
}

.close-btn:hover {
  background:var(--themeColor);
  color: white;
  transform: rotate(90deg);
}

/* ============================================
   MOBILE NAV
============================================ */

.mobile-nav {
  flex: 1;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-sidebar a{
  text-decoration: none;
}
.mobile-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 28px;
  text-decoration: none;
  color: #2d3e54;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mobile-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background:var(--themeColor);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-link:hover::before {
  transform: scaleY(1);
}

.mobile-link:hover {
  background: rgba(125, 107, 168, 0.05);
  color: #7d6ba8;
}

.mobile-icon {
  font-size: 28px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-link-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.mobile-link-desc {
  font-size: 13px;
  font-weight: 400;
  color: #4a5f7f;
  letter-spacing: 0.2px;
  opacity: 0.8;
}

.mobile-arrow {
  width: 20px;
  height: 20px;
  color: #4a5f7f;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
}

.mobile-link:hover .mobile-arrow {
  transform: translateX(5px);
  opacity: 1;
  color: #7d6ba8;
}

/* ============================================
   MOBILE FOOTER
============================================ */

.mobile-footer {
  padding: 28px;
  border-top: 1px solid rgba(125, 107, 168, 0.1);
  background: linear-gradient(180deg, rgba(248, 249, 251, 0.6), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px);
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #7d6ba8, #b8a9d4);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(125, 107, 168, 0.3);
  margin-bottom: 24px;
}

.mobile-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(125, 107, 168, 0.4);
}

.mobile-cta:hover svg {
  transform: translateX(4px);
}

.mobile-contact {
  padding: 20px 0;
  border-top: 1px solid rgba(125, 107, 168, 0.08);
  border-bottom: 1px solid rgba(125, 107, 168, 0.08);
  margin-bottom: 20px;
}

.contact-title {
  font-size: 13px;
  font-weight: 600;
  color: #4a5f7f;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #2d3e54;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #7d6ba8;
}

.mobile-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--themeColor);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: #7d6ba8;
  color: white;
  transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1024px) {
  .nav-container {
    padding: 0 40px;
    gap: 40px;
  }
  
  .nav-menu {
    gap: 35px;
  }
}

@media (max-width: 968px) {
  .navbar {
    height: 70px;
  }
  
  .navbar.scrolled {
    height: 65px;
  }
  
  .nav-container {
    padding: 0 30px;
  }
  
  .nav-menu,
  .nav-actions .icon-btn,
  .nav-actions .cta-btn {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .logo-icon {
    width: 42px;
    height: 42px;
  }
  
  .logo-main {
    font-size: 22px;
  }
  
  .logo-tagline {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .mobile-sidebar {
    width: 90%;
    max-width: 100%;
  }
  
  .nav-container {
    padding: 0 20px;
  }
  
  .logo-tagline {
    display: none;
  }
}

/* ============================================
   SCROLLBAR
============================================ */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f8f9fb;
}

::-webkit-scrollbar-thumb {
  background: #b8a9d4;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7d6ba8;
}

/* ============================================
   ACCESSIBILITY
============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #7d6ba8;
  outline-offset: 3px;
}  


              .PrivacySection{
  padding-top: 1%;
  font-family: var(--fontFamilyMulish);
}
.PrivacySection h3{
  font-size: 1.1em;
  text-align: center;
  line-height: 1.8;
}
.PrivacySection h4{
  font-size: 1.1em; 
  font-weight: bold;
  line-height: 1.8;
}
.PrivacySection h5{
  font-size: 1.1em;  
  line-height: 1.8;
}