body.modal-open {
    padding-right: 0 !important;
    overflow: hidden;
}

body.modal-open header,
body.modal-open .site-header,
body.modal-open .main-header,
body.modal-open .header-wrapper {
    width: 100%;
    right: 0;
    margin-right: 0;
    padding-right: 0;
}

.custom-navbar .nav-link {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 700;
  padding: 10px 10px;
  line-height: 1.2;
  border: none ;
  display: flex;
  align-items: center;
  gap: 6px;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus,
.custom-navbar .nav-link.show {
  color: var(--text-primary);
}

.custom-dropdown-toggle::after {
  display: none ;
}
.drawer-toggle {
  position: absolute ;
  opacity: 0 ;
  width: 0 ;
  height: 0 ;
  pointer-events: none ;
}
.custom-header {
  min-height: 82px;
  border: none ;
  background: var(--text-white);
  z-index: 1055;
}

.custom-nav-dropdown {
    position: relative;
}

/* drawer related css */
.drawer-submenu-toggle {
    display: none;
}

.drawer-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--text-light);
    padding: 14px 0;
}

.drawer-summary-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    flex: 1;
}

.drawer-summary-link:hover {
    color: var(--text-secondary);
}

.drawer-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.drawer-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.drawer-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* Checkbox checked thay etle submenu open + arrow rotate */
.drawer-submenu-toggle:checked ~ .drawer-submenu {
    max-height: 500px;
    padding: 8px 0 16px 16px;
    border-bottom: 1px solid var(--text-light);
}

.drawer-submenu-toggle:checked ~ .drawer-summary-row .drawer-arrow {
    transform: rotate(180deg);
}

.drawer-submenu a {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 9px 0;
    text-decoration: none;
    display: block;
}

.drawer-submenu a:hover {
    color: var(--text-secondary);
}