
  .zubuz-hero-section {
    background-color: #F9F7FF!important; /* Example: light gray background */
  }

  /* Get started buton for Tujuane of mobile view*/
  #get-started-mobile-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #5C4B99;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    display: none; /* Hidden by default */
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-align: center;
    text-decoration: none;
}

@media (min-width: 768px) {
    #get-started-mobile-btn {
        display: none !important; /* Hide on tablet/desktop */
    }
}
/* Bounce animation for Get started button*/
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

#get-started-mobile-btn.show-bounce {
    animation: bounce 7s infinite;
}
/* End of Bounce animation for Get Started button */

/* Header button improvements***************************************************change */
.header-btn a {
    transition: all 0.3s ease;
}

.header-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* Login Button styling **********************************************************/
.btn.btn-outline-primary.btn-sm.rounded-pill {
    border-color: #5C4B99;
    color: #009992;
    font-weight: 500;
}

.btn.btn-outline-primary.btn-sm.rounded-pill:hover {
    background-color: #5C4B99;
    color: #ffffff;
    border-color: #5C4B99;
}

/* Get Started button styling */
.zubuz-header-btn {
    background-color: #5C4B99;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.zubuz-header-btn:hover {
    background-color: #009992;
    transform: translateY(-2px);
}



<!--font new font for tujuane-->



body {
    font-family: 'Inter', sans-serif;
    color: #000000;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}

a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #000000; /* your Tujuane brand purple */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.zubuz-copywright p {
    color: #000000; /* ensures white text on dark footer */
    font-weight: 400;
    font-size: 14px;
    opacity: 1; /* ensures full visibility */
}


/* Default closed state: black text */
.zubuz-accordion-wrap .zubuz-accordion-header h3 {
    color: #111111; /* black */
    transition: color 0.3s ease; /* smooth transition */
}

/* Open state: teal text */
.zubuz-accordion-wrap .zubuz-accordion-item.open .zubuz-accordion-header h3 {
    color: #009992; /* your teal */
}

/* Default closed state: black text for body */
.zubuz-accordion-wrap .zubuz-accordion-body p {
    color: #111111;
    transition: color 0.3s ease;
}

/* Open state: teal text for body */
.zubuz-accordion-wrap .zubuz-accordion-item.open .zubuz-accordion-body p {
    color: #f5fafa;
}

  /*Add Cart structure css*/

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.15);
  padding: 30px;
  z-index: 9999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow-y: auto;
  backdrop-filter: blur(10px); /* subtle glass effect */
}



.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.cart-header h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.cart-header button {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.cart-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.cart-body h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827; /* deep neutral black */
  margin-bottom: 8px;
  line-height: 1.3;
}

.cart-body .cart-subtitle {
  font-size: 15px;
  color: #6B7280; /* subtle gray */
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.5;
}


.cart-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f5ff; /* softer background */
  border-radius: 12px; /* more rounded */
  padding: 14px 18px; /* more spacious */
  color: #5C4B99;
  font-weight: 500;
  font-size: 16px; /* consistent sizing */
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.cart-links a:hover {
    background: #efe9ff; /* subtle purple-tint hover */
    border-left: 4px solid #009992; /* teal accent border */
    padding-left: 14px; /* adjust for border */
    transform: translateY(-2px); /* lift effect on hover */
}



.cart-links span {
    font-size: 18px;
    transition: color 0.3s ease;
}

.cart-links a:hover span {
    color: #009992; /* teal on hover */
}



/* Cart icon styling */
.cart-icon-btn {
    color: #5C4B99; /* Tujuane purple */
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.cart-icon-btn:hover {
    color: #009992; /* Tujuane green on hover */
}

#cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    opacity: 0;
    pointer-events: none; /* prevents clicks when hidden */
    transition: opacity 0.3s ease;
}

#cart-overlay.show {
    opacity: 1;
    pointer-events: auto; /* enables clicks when visible */
}

/***************************************************FOR ALL SECTIONS**/
@media (max-width: 767px) {
  .zubuz-footer-menu {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 0 1px #e5e7eb;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s;
  }
  .zubuz-footer-menu.active {
    box-shadow: 0 0 0 2px #009992;
  }
  .zubuz-footer-title {
    cursor: pointer;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: #f9f7ff;
  }
  .zubuz-footer-title::after {
    content: "\25BC"; /* ▼ down arrow */
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #5c4b99;
  }
  .zubuz-footer-menu.active .zubuz-footer-title::after {
    transform: rotate(180deg);
  }
  .zubuz-footer-menu ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    list-style: none;
    padding-left: 20px;
    background: #ffffff;
  }
  .zubuz-footer-menu.active ul {
    max-height: 500px; /* enough to show all items */
    padding: 10px 0 10px 20px;
  }
  .zubuz-footer-menu ul li {
    border-top: 1px solid #e5e7eb;
    padding: 10px 0;
  }
  .zubuz-footer-menu ul li:first-child {
    border-top: none;
  }
  .zubuz-footer-menu ul li a {
    color: #5c4b99;
    font-weight: 500;
    text-decoration: none;
    display: block;
  }
  .zubuz-footer-menu ul li a:hover {
    color: #009992;
  }
}

/***************************************************FOR ALL SECTIONS Mobile Header wrapper**/
@media (max-width: 767px) {
    .site-navbar {
        display: block;
    }
}

/* Show the mobile menu when active *****************************************************************/
.menu-block-wrapper.active {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 9999;
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;

}


@media (max-width: 767px) {
    .brand-logo {
        display: none;
    }
}

/* Hide mobile Get Started button when menu or cart is open on mobile */
body.hide-mobile-btn #get-started-mobile-btn {
    display: none !important;
}

/* Clean -style mobile bottom bar */
.mobile-menu-bottom {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 12px 16px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 9999;
}

.mobile-menu-bottom a.login-btn {
    background-color: #5C4B99;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-menu-bottom a.login-btn:hover {
    background-color: #009992;
}

.mobile-menu-bottom a.social-icon {
    color: #5C4B99;
    font-size: 18px;
    transition: color 0.3s;
}

.mobile-menu-bottom a.social-icon:hover {
    color: #009992;
}

@media (min-width: 768px) {
    .mobile-menu-bottom {
        display: none;
    }
}



/* Show the mobile menu when active *****************************************************************/



