  @media (min-width:1024px){
      section#HamburgerMenu-hamburger-menu {
        display: none;
    }
  }
  
  /* Background Overlay */
  .aangan-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999999998 !important;
  }

  .aangan-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  /* Main Slide-out Drawer */
  .aangan-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: min(100%, 420px);
    height: 100vh;
    background: #fff;
    z-index: 999999999 !important;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    box-shadow: 10px 0 24px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  }

  .aangan-menu.is-open {
    transform: translateX(0);
  }

  body.hamburger-menu-open {
    overflow: hidden;
  }

  .aangan-menu__inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* Drawer Header */
  .aangan-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
    position: relative;
  }

  .aangan-menu__logo-link {
    display: flex;
    align-items: center;
  }

  .aangan-menu__logo {
    max-width: 140px;
    height: auto;
    display: block;
  }

  .aangan-menu__header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-left: auto;
  }

  .aangan-menu__header-icon,
  .aangan-menu__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0;
    color: #5b2c6f; /* Purple brand tone */
  }

  .aangan-menu__header-icon svg,
  .aangan-menu__close svg {
    width: 24px;
    height: 24px;
    display: block;
    color: currentColor;
    stroke: currentColor;
  }

  .aangan-menu__content {
    flex: 1 1 auto;
    padding-bottom: 40px;
  }

  /* 2-Column Grid Cards */
  .aangan-menu__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px;
  }

  .aangan-menu__grid-card-wrap {
    grid-column: span 1;
  }

  .aangan-menu__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    background: #f5f5f5;
    border: 0;
    border-radius: 4px;
    text-decoration: none;
    color: #111;
    width: 100%;
    min-height: 80px;
    box-sizing: border-box;
    transition: background 0.25s, transform 0.15s;
  }

  button.aangan-menu__card {
    text-align: left;
    font-family: inherit;
    cursor: pointer;
  }

  .aangan-menu__card:hover {
    background: #eaeaea;
  }

  .aangan-menu__card.is-open {
    background: #e5dcf2; /* Highlight when sub-menu is active */
    border: 1px solid #5b2c6f;
  }

  .aangan-menu__card-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    color: #111;
    max-width: 58%;
    word-wrap: break-word;
  }

  .aangan-menu__card-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .aangan-menu__card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 2px;
  }

  /* Grid Sub-Dropdowns (Section 1) */
  .aangan-menu__grid-dropdown {
    grid-column: span 2;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease, opacity 0.25s ease;
    opacity: 0;
    background: #fbf9ff;
    border-radius: 4px;
    margin-top: -5px;
    margin-bottom: 5px;
    border-left: 3px solid #5b2c6f;
  }

  .aangan-menu__grid-dropdown.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    border: 1px solid #eadaf5;
    border-left: 3px solid #5b2c6f;
  }

  .aangan-menu__grid-dropdown > .o-hide {
    overflow: hidden;
  }

  .aangan-menu__grid-dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }

  .aangan-menu__dropdown-link {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid #f2ecfa;
    transition: color 0.2s;
  }

  .aangan-menu__dropdown-link:hover {
    color: #5b2c6f;
  }

  .aangan-menu__view-all {
    text-decoration: underline;
    color: #5b2c6f;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
    display: inline-block;
  }

  /* Accordion Rows (Section 2 Parent) */
  .aangan-menu__accordion {
    border-bottom: 1px solid #e8e8e8;
  }

  .aangan-menu__accordion-toggle,
  .aangan-menu__single-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: #111;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.2s;
  }

  .aangan-menu__single-link-row {
    border-bottom: 1px solid #e8e8e8;
  }

  .aangan-menu__accordion-toggle:hover,
  .aangan-menu__single-link:hover {
    background: #fafafa;
  }

  /* Custom Badges (matched to screenshots) */
  .aangan-menu__badge {
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    padding: 3px 6px;
    margin-left: 6px;
    border-radius: 12px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
  }

  .badge-new {
    background: #621422 !important; /* Burgundy / Dark Red */
  }

  .badge-hot {
    background: #cb4335 !important; /* Hot Red */
  }

  .badge-blue {
    background: #3c82f6 !important; /* Sky Blue (e.g. à la mode) */
    text-transform: none !important;
    font-weight: 600 !important;
  }

  .aangan-menu__icon {
    color: #777;
    font-size: 16px;
    font-weight: 400;
  }

  /* Section 2 Dark Dropdowns Content (MUTUAL EXCLUSION & FULL WIDTH) */
  .aangan-menu__accordion-content {
    padding: 0;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease, opacity 0.2s ease;
    opacity: 0;
    background: #ffffff !important; /* Dark Purple theme background */
    width: 100%;
    box-sizing: border-box;
  }

  .aangan-menu__accordion-content > .o-hide {
    overflow: hidden;
  }

  .aangan-menu__accordion-content.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    border-bottom: 1px solid #3d1a52;
  }

  .aangan-menu__accordion-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 20px;
  }

  .aangan-menu__accordion-link {
    color: #ebdff5; /* Light violet-white text */
    font-size: 14px;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #3d1a52; /* Darker purple border lines */
    transition: color 0.2s;
  }

  .aangan-menu__accordion-link:hover {
    color: #fff;
  }

  .aangan-menu__accordion-content .aangan-menu__view-all {
    color: #121212;
  }
[type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
	background-color: #E6D9F2 !important; color: #0e252c !important;}
[type="button"], [type="submit"], button {border-color: #fff !important; display: flex !important; color: #0e252c !important; width: 100%; padding: 1rem 1rem !important;}
  /* Dark mode Grid Cards inside Accordion Dropdowns */
  .aangan-menu__accordion-content .aangan-menu__card {
    background: #f4f4f4; /* Dark violet card backgrounds */
    border: 1px solid #c4c4c4; /* Subtle border matching theme */
    color: #121212;
  }

  .aangan-menu__accordion-content .aangan-menu__card:hover {
    background: #f4f4f4;
  }

  .aangan-menu__accordion-content .aangan-menu__card-text {
    color: #121212;
  }

  .aangan-menu__grid-nested {
    padding: 12px 20px 6px;
    gap: 8px;
  }

  .aangan-menu__view-all-wrap {
    text-align: center;
    padding: 12px 0 16px;
  }
