:root {
    --headerHeight: 75px;
    --topBarHeight: 40px;
    --topHeaderBarHeight: 30px;
    --mainHeaderOffset: 70px; /* 40px bar + 30px top header */
  }
  
  li.lang-item {
    visibility: hidden;
  }
  
  /* search field */
  .et-search-field {
    text-transform: none !important;
  }
  
  #et_top_search {
    margin: 0 !important;
  }
  
  .et-search-field-custom {
    width: 100%;
    border: 0 !important;
    padding: 5px;
    border: 0.5px solid #ccc !important;
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
  }
  
  .et-search-field-custom-container {
    margin-top: 10px;
  }
  
  .et-search-field-input-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .et-search-field-submit {
    width: 35px;
    height: 35px;
    border: 0.5px solid #ccc;
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
  }
  
  .custom-search-menu {
    width: 18px;
    height: 18px;
    text-align: center;
    margin-top: 28px;
    margin-left: 10px;
  }
  
  .et_pb_search_visible {
    background: #f2ede8;
  }
  
  @media only screen and (min-width: 1025px) {
    .et-search-field-custom-container {
      display: none !important;
    }
  }
  
  /* header languages  */
  .lang-item {
    font-family: monospace;
    width: 2ch;
    min-width: 2ch;
    overflow: hidden;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 400;
  }
  
  .current-lang {
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  /* header languages END */
  
  /* hide top header when scrolled animation */
  /* Desktop (default): top-header at 40px below the bar. When scrolled down, JS sets top to hide it – behaviour unchanged. */
  #top-header {
    position: fixed !important;
    top: 40px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9998;
    max-height: var(--topHeaderBarHeight);
    overflow: hidden;
    visibility: visible;
    margin: 0 !important;
    padding: 0;
  }
  /* Force scrolling banner visible when at top (overrides any JS/Divi that hides it) */
  body.at-top #top-header {
    top: 40px !important;
    visibility: visible !important;
    display: block !important;
  }
  /* Main header starts at 70px (40px bar + 30px notification bar), not 30px - overrides Divi */
  #main-header,
  #main-header.is-mobile {
    top: 70px !important;
  }
  /* When at top: keep main header at 70px */
  body.at-top #main-header,
  body.at-top #main-header.is-mobile {
    top: 70px !important;
  }
  #main-header,
  #main-header.is-mobile,
  #top-header {
    transition: all 0.2s ease-in-out;
  }
  /* hide top header when scrolled END */
  
  /* header desktop and notification bar */
  .notification-bar-menu {
    background: #b8987d;
    margin: 0;
    padding: 0;
  }
  
  /* marquee animation */
  .notification-bar-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    height: var(--topHeaderBarHeight);
    padding: 8px 0;
    background: #b8987d;
    text-transform: uppercase;
  }
  
  .notification-bar-marquee {
    display: inline-block;
    width: max-content;
    max-width: max-content;
    will-change: transform;
    animation: marquee 20s linear infinite;
  }
  
  .notification-bar-marquee p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: max-content;
    max-width: max-content;
    font-family: SuisseIntl-Regular;
    font-size: 10px;
    font-weight: 400;
    line-height: 13px;
    letter-spacing: 0;
    color: #fcfbfa;
    text-decoration: none;
  }
  
  .notification-bar-marquee p a {
    text-decoration: none;
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  /* marquee animation END */
  #main-header {
    background: none !important;
    box-shadow: none !important;
  }
  
  #main-header.et-fixed-header {
    box-shadow: none !important;
    /* Override Divi's 30px: main header starts at 70px when at top (40px bar + 30px top header) */
    top: 70px !important;
  }
  #main-header.et-fixed-header.is-mobile {
    top: 70px !important;
  }
  
  .et_menu_container {
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  #et-top-navigation {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  form.et-search-form {
    right: 0px !important;
    padding: 14px 30px;
  }
  .custom-search-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
  }
  .custom-search-bar-wrapper .input-wrapper {
    position: relative;
    width: calc(100% - 112px);
    height: 46px;
  }
  .custom-search-bar-wrapper .input-wrapper svg.search-icon {
    position: absolute;
    top: 16px;
    left: 22px;
  }
  .custom-search-bar-wrapper .input-wrapper .clear_search_field {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 15px;
    right: 24px;
    cursor: pointer;
  }
  .custom-search-bar-wrapper input {
    width: 100%;
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    border-radius: 100px;
    border: 0.5px solid #151514;
    padding: 14px 46px 14px 50px;
    color: #151514 !important;
    font-family: SuisseIntl-Light;
    font-size: 14px;
    font-weight: 300 !important;
    line-height: 18px;
    letter-spacing: 0px !important;
  }
  .custom-search-bar-wrapper input::placeholder {
    color: #b6b6b6 !important;
    text-transform: none !important;
    font-family: SuisseIntl-Light;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    letter-spacing: 0px !important;
  }
  .custom-search-bar-wrapper button {
    width: fit-content;
    height: fit-content;
    text-transform: uppercase;
    font-family: SuisseIntl-Regular;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding: 14px 25px;
    background: #b8987d;
    color: #fdfdfd;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease-in-out;
  }
  .custom-search-bar-wrapper button:hover {
    background: #c6ad97;
    transition: all 0.3s ease-in-out;
  }
  .custom-header {
    font-family: SuisseIntl-Light;
    font-size: 12px !important;
    font-weight: 300;
    line-height: 15px;
    text-transform: uppercase;
    display: grid;
    grid-template-columns: repeat(20, minmax(0, 1fr));
    padding: 0 30px;
    color: #151514;
    background: #f2ede8;
    transition: all 0.5s 0s ease-in-out;
  }
  
  .custom-header:not(.custom-header-transparent) {
    border-bottom: 0.5px solid #e3d7cc;
  }
  
  .custom-header-transparent {
    background: transparent;
    color: #fdfdfd;
    border-bottom: 0.5px solid transparent;
  }
  
  .custom-header-transparent:hover {
    border-bottom: 0.5px solid #e3d7cc;
  }
  
  .custom-header ul.menu li.menu-item.et-hover:not(.custom-header-btn) a,
  .custom-header-transparent
    ul.menu
    li.menu-item.et-hover:not(.custom-header-btn)
    a {
    text-decoration: underline !important;
    text-decoration-thickness: 0.5px !important;
    text-underline-offset: 2px;
  }
  
  .custom-header ul li.menu-item a,
  .custom-header-transparent ul li.menu-item a,
  .custom-header ul.menu li.menu-item.et-hover ul.sub-menu li.menu-item a,
  .custom-header-transparent
    ul.menu
    li.menu-item.et-hover
    ul.sub-menu
    li.menu-item
    a {
    text-decoration: none !important;
  }
  
  .custom-header a {
    color: #151514;
    transition: all 0.5s 0s ease-in-out;
  }
  
  .custom-header-transparent a {
    color: #fdfdfd;
    transition: all 0.5s 0s ease-in-out;
  }
  
  .custom-header-transparent:hover {
    background: #f2ede8;
  }
  
  .custom-header:hover,
  .custom-header:hover a,
  .scrolled,
  .scrolled a {
    color: #151514;
    transition: all 0.5s 0s ease-in-out;
  }
  
  .scrolled {
    background: #f2ede8;
    color: #151514;
  }
  
  .logo-wrapper svg path {
    transition: all 0.5s 0s ease-in-out;
  }
  
  .custom-header-transparent .logo-wrapper svg path {
    fill: #fdfdfd;
  }
  
  .custom-header-transparent:hover .logo-wrapper svg path,
  .custom-header-transparent.scrolled .logo-wrapper svg path {
    fill: #151514;
  }
  
  .custom-header-left {
    grid-column: span 8 / span 8;
    justify-self: flex-start;
  }
  
  .custom-header-center {
    grid-column: span 4 / span 4;
    justify-self: center;
    align-self: center;
  }
  
  .custom-header-right {
    grid-column: span 8 / span 8;
    justify-self: flex-end;
  }
  
  .custom-header ul {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .custom-header-left ul {
    display: flex;
  }
  .custom-header-left ul.menu li.menu-item {
    padding-right: 24px !important;
  }
  .custom-header-right ul {
    display: flex;
    column-gap: 10px;
  }
  
  .custom-header ul.menu li.menu-item {
    padding: 29px 0;
    align-content: center;
    display: flex;
    align-items: center;
  }
  
  .custom-header ul.menu li.menu-item ul.sub-menu li.menu-item {
    display: grid;
    width: 100%;
  }
  
  .custom-header ul.menu {
    height: var(--headerHeight);
  }
  
  .custom-header ul.sub-menu {
    display: none;
  }
  
  .custom-header .et-show-dropdown ul.sub-menu {
    display: flex;
    align-items: flex-start;
    text-align: center;
    position: absolute;
    top: var(--headerHeight);
    left: 0;
    width: 100%;
    height: fit-content;
    background: rgba(242, 237, 232, 0.95);
    padding: 37px 30px 58px 30px !important;
    border-top: 0.5px solid #e3d7cc;
  }
  
  /* Second Level, Third level */
  .custom-header .et-show-dropdown ul.sub-menu li ul.sub-menu,
  .custom-header .et-show-dropdown ul.sub-menu li ul.sub-menu li ul.sub-menu {
    position: static;
    display: grid;
    background: transparent;
    padding: 30px 0 0 0 !important;
    font-weight: 300;
    row-gap: 10px;
  }
  
  /* Second Level, Third level */
  .custom-header .et-show-dropdown ul.sub-menu li,
  .custom-header .et-show-dropdown ul.sub-menu li ul.sub-menu li {
    padding: 0 !important;
  }
  
  /* icons */
  .custom-svg-icon {
    display: block;
    cursor: pointer;
    height: 18px;
  }
  .custom-svg-icon svg path {
    transition: all 0.5s 0s ease-in-out;
  }
  .custom-header-transparent .custom-svg-icon svg path,
  .custom-header-transparent-mobile .custom-svg-icon svg path {
    fill: #fdfdfd;
  }
  .custom-header-transparent:hover .custom-svg-icon svg path,
  .custom-header-transparent.scrolled .custom-svg-icon svg path,
  .custom-header-transparent-mobile:hover .custom-svg-icon svg path,
  .custom-header-transparent-mobile.scrolled .custom-svg-icon svg path {
    fill: #151514;
  }
  /* icons END */
  
  .custom-header-btn a {
    display: block;
    min-width: 128px;
    background: #5f5a56;
    padding: 14px 23px;
    border-radius: 100px;
    font-family: SuisseIntl-Regular;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.16px;
    text-align: center;
    color: #fdfdfd !important;
    text-decoration: none !important;
  }
  
  .custom-header-btn:hover a {
    background: #7d7670;
    text-decoration: none !important;
  }
  
  @media only screen and (max-width: 1060px) {
    .custom-header-btn a {
      min-width: 90px;
      padding: 14px 16px;
      text-transform: uppercase;
    }
  }
  
  /* header shop categories */
  .header-shop-categories-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    width: 100%;
  }
  
  .header-shop-categories-left {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 30px;
    width: 100%;
  }
  
  .header-shop-categories-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    column-gap: 30px;
    row-gap: 30px;
    width: 100%;
  }
  
  .header-shop-categories-right .special-category {
    padding-right: 60px;
  }
  
  .header-shop-categories-right
    .special-category
    .header-shop-categories-category {
    font-family: FeatureDisplay-Light;
    font-size: 22px;
    font-weight: 300;
    line-height: 27px;
    text-align: left;
    text-transform: capitalize;
    padding-bottom: 26px;
  }
  
  .header-shop-categories-right-image-wrapper {
    width: 253px;
    height: 284px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  
  .header-shop-categories-right-image-wrapper img {
    width: 253px;
    height: 284px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s;
  }
  
  .header-shop-categories-right-image-wrapper:hover img {
    transform: scale(1.1);
  }
  
  .header-shop-categories-right-image-overlay {
    background: #151514;
    opacity: 10%;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  
  .header-shop-categories-right-image-overlay-text {
    position: absolute;
    bottom: 19px;
    left: 24px;
    color: #ffffff;
    font-family: FeatureDisplay-Regular;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-transform: none;
  }
  .header-shop-categories-right-image-overlay-text .italic {
    font-style: italic;
  }
  
  .header-shop-subcategories-wrapper {
    display: grid;
    gap: 3px;
  }
  
  .header-shop-categories-category {
    font-family: SuisseIntl-Medium;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-align: left;
    padding-bottom: 12px;
    text-transform: uppercase;
    display: block;
  }
  .header-shop-categories-subcategory {
    font-family: SuisseIntl-Light;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-align: left;
    text-transform: none;
    display: block;
  }
  .header-shop-categories-subcategory:hover {
    color: #b8987d !important;
    transition: all 0.2s 0s ease-in-out !important;
  }
  /* header shop categories END*/
  /* header desktop and notification bar END */
  
  /* header mobile */
  .is-mobile {
    display: none;
  }
  @media (max-width: 1024px) {
    .is-default {
      display: none;
    }
    .is-mobile {
      display: block;
      padding: 0 !important;
      position: relative;
    }
  }
  
  .custom-header-mobile {
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 21px 16px;
    color: #151514;
    background: #f2ede8;
    transition: all 0.5s 0s ease-in-out;
  }
  
  .custom-header-transparent-mobile {
    background: transparent;
    color: #fdfdfd;
  }
  
  .custom-header-transparent-mobile a {
    color: #fdfdfd;
    transition: all 0.5s 0s ease-in-out;
  }
  
  .custom-header-transparent-mobile:hover,
  .custom-header-transparent-mobile.scrolled {
    background: #f2ede8;
  }
  
  .custom-header-mobile:hover,
  .custom-header-mobile:hover a,
  .scrolled,
  .scrolled a {
    color: #151514;
    transition: all 0.5s 0s ease-in-out;
  }
  
  .custom-header-transparent-mobile .logo-wrapper svg path {
    fill: #fdfdfd;
  }
  
  .custom-header-transparent-mobile:hover .logo-wrapper svg path,
  .custom-header-transparent-mobile.scrolled .logo-wrapper svg path {
    fill: #151514;
  }
  
  .custom-header-mobile-left {
    display: flex;
    column-gap: 20px;
    justify-self: flex-start;
    align-items: center;
    height: fit-content;
  }
  
  .custom-header-mobile-left .logo-wrapper svg {
    height: 14px;
    width: auto;
  }
  
  .custom-header-mobile-left button {
    padding: 0 !important;
    border: none !important;
    padding-inline: 0 !important;
    padding-block: 0 !important;
    display: flex;
    background: transparent;
  }
  
  .custom-header-mobile-right {
    justify-self: flex-end;
  }
  
  .custom-header-mobile-right ul.menu,
  .custom-header-mobile-right ul.menu li {
    display: flex;
    column-gap: 10px;
    height: fit-content !important;
    margin-bottom: 0 !important;
    align-items: center;
  }
  
  @media all and (max-width: 1024px) {
    .custom-header-mobile #et_top_search {
      display: block !important;
    }
    .custom-search-menu {
      width: 18px;
      height: 18px;
      text-align: center;
      margin-top: 0;
      margin-left: 0;
    }
  }
  
  #custom-header-panel.panel-is-visible {
    display: grid;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #f2ede8;
    color: #151514;
    -webkit-animation: fadein 0.3s ease-in forwards;
    -moz-animation: fadein 0.3s ease-in forwards;
    animation: fadein 0.3s ease-in forwards;
    overflow-y: auto;
  }
  
  @keyframes fadein {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  #custom-header-panel.panel-is-hidden {
    display: none;
  }
  
  #custom-header-panel .close-panel-icon {
    position: absolute;
    top: 25px;
    right: 16px;
  }
  #custom-header-panel .categories-title {
    font-family: SuisseIntl-Light;
    font-size: 24px;
    font-weight: 300;
    line-height: 31px;
    text-align: left;
    padding: 18px 18px 30px 17px;
  }
  #custom-header-panel .categories-wrapper {
    overflow: hidden;
  }
  
  #custom-header-panel .panel-menu-top {
    align-self: flex-start;
    display: grid;
  }
  #custom-header-panel .categories-img {
    display: flex;
    overflow-x: auto;
    padding: 0 17px 6px 17px;
    column-gap: 7px;
    margin-bottom: 24px;
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
  }
  #custom-header-panel .categories-img::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }
  
  #custom-header-panel .categories-img .image-wrapper {
    display: grid;
    flex-shrink: 0;
    text-decoration: none;
  }
  #custom-header-panel .categories-img .image-wrapper img {
    border-radius: 100px;
    object-fit: cover;
    object-position: center;
    width: 80px;
    height: 80px;
    display: flex;
    flex-shrink: 0;
  }
  #custom-header-panel .categories-img .image-wrapper .category-name {
    width: 80px;
    font-family: SuisseIntl-Light;
    font-size: 11px;
    font-weight: 300;
    line-height: 14.27px;
    text-align: center;
    text-transform: uppercase;
    padding-top: 13px;
    color: #151514;
  }
  
  #custom-header-panel .panel-menu {
    border-top: 0.5px solid #e3d7cc;
    padding-bottom: 20px;
    font-family: SuisseIntl-Light;
    color: #151514;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    align-self: flex-start;
  }
  #custom-header-panel .panel-menu a {
    text-decoration: none;
  }
  
  #custom-header-panel .panel-menu-bottom {
    align-self: flex-end;
  }
  
  #custom-header-panel .panel-menu-bottom ul.menu {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 0 !important;
    font-family: SuisseIntl-Light;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-align: left;
    color: #151514;
  }
  
  #custom-header-panel .panel-menu-bottom ul.menu li:last-child {
    width: 100%;
  }
  
  #custom-header-panel .panel-menu-bottom ul.menu li:nth-child(1) {
    width: 50%;
    padding-left: 16px;
  }
  #custom-header-panel .panel-menu-bottom ul.menu li:nth-child(2) {
    width: 30%;
    text-align: right;
    padding-right: 6px;
    align-self: center;
  }
  #custom-header-panel .panel-menu-bottom ul.menu li:nth-child(3) {
    width: 20%;
    padding-right: 26px;
    align-self: center;
  }
  
  #custom-header-panel .panel-menu-bottom ul.menu li:not(.current-lang) a {
    text-decoration: none;
  }
  
  #custom-header-panel .panel-menu-bottom ul.menu .custom-header-btn {
    font-family: SuisseIntl-Light;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    padding: 14px 23px;
    width: fit-content;
  }
  
  #custom-header-panel .panel-menu-bottom ul.menu a.find-advisor-mobile {
    width: 100%;
    background: #e3d7cc;
    display: block;
    color: #151514;
    font-family: SuisseIntl-Light;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px;
    margin-top: 20px;
  }
  
  #custom-header-panel .panel-menu ul.menu li.menu-item a {
    width: calc(100vw - 34px);
    margin: 0 17px;
    padding: 30px 30px 30px 10px;
  }
  #custom-header-panel
    .panel-menu
    ul.menu
    li.menu-item
    ul.sub-menu
    li.menu-item
    a {
    padding: 20px 30px 20px 10px;
  }
  
  #custom-header-panel .panel-menu ul.menu li.menu-item:not(.et-show-dropdown) a {
    border-bottom: 0.5px solid #e3d7cc;
  }
  #custom-header-panel .panel-menu ul.menu li.menu-item.et-show-dropdown a {
    border-bottom: none;
  }
  
  #custom-header-panel .panel-menu ul.menu li.menu-item ul.sub-menu,
  #custom-header-panel
    .panel-menu
    ul.menu
    li.menu-item.menu-item-has-children:not(.et-show-dropdown)
    ul.sub-menu {
    display: none;
    animation: slideDown 0.15s ease-in-out;
  }
  
  #custom-header-panel
    .panel-menu
    ul.menu
    li.menu-item.et-show-dropdown
    ul.sub-menu {
    display: grid;
    animation: slideDown 0.15s ease-in-out;
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-20%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  #custom-header-panel .panel-menu ul.menu li.menu-item {
    display: grid;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
  }
  
  /* first level */
  #custom-header-panel
    .panel-menu
    li.menu-item.menu-item-has-children
    .toggle-button {
    transition: all 0.5s ease-in-out;
    height: 18px;
    position: absolute;
    z-index: 999;
    top: 22px;
    right: 0px;
    margin: 10px 27px 10px 10px;
    pointer-events: none;
  }
  #custom-header-panel
    .panel-menu
    ul.menu
    li.menu-item.menu-item-has-children.et-show-dropdown
    .toggle-button {
    transform: rotate(180deg);
  }
  
  /* second level - plus icon */
  #custom-header-panel
    .panel-menu
    li.menu-item.menu-item-has-children
    .toggle-button-plus {
    transition: all 0.5s ease-in-out;
    height: 18px;
    position: absolute;
    top: 13px;
    right: 0px;
    margin: 10px 27px 10px 10px;
    pointer-events: none;
  }
  #custom-header-panel
    .panel-menu
    ul.menu
    li.menu-item
    ul.sub-menu
    li.menu-item.menu-item-has-children.et-show-dropdown
    .toggle-button-plus {
    transform: rotate(45deg);
  }
  
  #custom-header-panel .panel-menu ul.menu li.et-show-dropdown {
    background: #e9dfd6;
  }
  #custom-header-panel .panel-menu ul.menu li.et-show-dropdown ul.sub-menu {
    background: #e3d7cc;
    font-family: SuisseIntl-Light;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    text-align: left;
    text-transform: none;
  }
  #custom-header-panel
    .panel-menu
    ul.menu
    li.et-show-dropdown
    ul.sub-menu
    li.et-show-dropdown,
  #custom-header-panel
    .panel-menu
    ul.menu
    li.et-show-dropdown
    ul.sub-menu
    li.et-show-dropdown
    ul.sub-menu {
    background: #cfc4ba;
  }
  
  #custom-header-panel
    .panel-menu
    ul.menu
    li.et-show-dropdown
    ul.sub-menu
    li.menu-item:not(.et-show-dropdown)
    a {
    border-bottom: 0.5px solid #cfc4ba;
  }
  #custom-header-panel
    .panel-menu
    ul.menu
    li.et-show-dropdown
    ul.sub-menu
    li.et-show-dropdown
    ul.sub-menu
    li.menu-item
    a {
    border-bottom: 0.5px solid #a19991;
    padding-left: 30px;
  }
  #custom-header-panel
    .panel-menu
    ul.menu
    li.et-show-dropdown
    ul.sub-menu
    li.et-show-dropdown
    ul.sub-menu
    li.menu-item:nth-child(1)
    a {
    border-top: 0.5px solid #a19991;
  }
  #custom-header-panel
    .panel-menu
    ul.menu
    li.et-show-dropdown
    ul.sub-menu
    li.et-show-dropdown
    ul.sub-menu
    li.menu-item:last-child
    a {
    border-bottom: none;
  }
  /* header mobile END */
  
  /* header menu categories left */
  .custom-header-left li.et-show-dropdown.et-hover ul.sub-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }
  
  .custom-header-left
    li.et-show-dropdown.et-hover
    ul.sub-menu
    li.menu-item:not(:has(.header-shop-categories-wrapper)) {
    display: flex;
    justify-content: flex-start;
    width: fit-content;
  }
  
  .custom-header-left
    li.et-show-dropdown.et-hover
    ul.sub-menu
    li.menu-item:not(:has(.header-shop-categories-wrapper))
    a {
    font-family: FeatureDisplay-Light;
    font-size: 22px;
    font-weight: 300;
    line-height: 27px;
    text-align: left;
    text-transform: none;
    padding-right: 10px;
  }
  .custom-header-left
    li.et-show-dropdown.et-hover
    ul.sub-menu
    li.menu-item:not(:has(.header-shop-categories-wrapper))
    a:hover {
    font-family: FeatureDisplay-LightItalic;
    font-style: italic;
  }
  
  .custom-header-left
    li.et-show-dropdown.et-hover
    ul.sub-menu:has(.custom-header-left-promotions) {
    min-height: 379px;
  }
  
  .custom-header-left
    li.et-show-dropdown.et-hover
    ul.sub-menu
    li.menu-item:not(:has(.header-shop-categories-wrapper)):has(
      .custom-header-left-promotions
    ) {
    position: absolute;
    top: 37px;
    right: 30px;
  }
  
  .custom-header-left .custom-header-left-promotions {
    display: flex;
    column-gap: 20px;
  }
  
  .custom-header-left .custom-header-left-promotions a {
    padding-right: 0 !important;
  }
  
  .custom-header-left
    .custom-header-left-promotions
    .header-promotions-image-wrapper {
    width: 253px;
    height: 284px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  
  .custom-header-left
    .custom-header-left-promotions
    .header-promotions-image-wrapper
    img {
    width: 253px;
    height: 284px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s;
  }
  
  .custom-header-left
    .custom-header-left-promotions
    .header-promotions-image-wrapper:hover
    img {
    transform: scale(1.1);
  }
  
  .custom-header-left
    .custom-header-left-promotions
    .header-promotions-image-overlay {
    background: #151514;
    opacity: 10%;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  
  .custom-header-left
    .custom-header-left-promotions
    .header-promotions-image-overlay-text {
    position: absolute;
    bottom: 19px;
    left: 24px;
    color: #ffffff;
    font-family: FeatureDisplay-Regular;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-transform: none;
    font-style: normal !important;
  }
  .custom-header-left
    .custom-header-left-promotions
    .header-promotions-image-overlay-text
    .italic {
    font-style: italic;
  }
  /* header menu categories left END */
  
  #custom-header-placeholder {
    height: var(--headerHeight);
  }
  @media (max-width: 1024px) {
    #custom-header-placeholder {
      height: 60px;
    }
  }
  
  a:focus {
    outline: none !important;
    outline-offset: 0px !important;
  }
  
  a {
    cursor: pointer !important;
  }
  
  #page-container {
    padding-top: 0 !important;
  }
  
  .custom-cart-icon {
    display: flex;
    align-items: baseline;
    gap: 2px;
  }
  
  #top-header-redirect-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    height: 40px;
    padding-left: 30px;
    padding-right: 30px;
    background: #4D4035;
  }
  
  /* When WordPress admin bar is open, push redirect navbar down */
  body.admin-bar #top-header-redirect-navbar {
    top: 32px;
  }
  @media screen and (max-width: 782px) {
    body.admin-bar #top-header-redirect-navbar {
      top: 46px;
    }
  }
  
  /* Mobile: redirect navbar 60px, top-header at 60px, main-header at 90px */
  @media (max-width: 1024px) {
    #top-header-redirect-navbar {
      height: 60px;
    }
    #top-header,
    body.at-top #top-header {
      top: 60px !important;
    }
    #main-header,
    #main-header.is-mobile,
    body.at-top #main-header,
    body.at-top #main-header.is-mobile {
      top: 90px !important;
    }
    #main-header.et-fixed-header.is-mobile {
      top: 90px !important;
    }
    #top-header-redirect-navbar-arrow {
      display: none !important;
    }
  }
  
  #top-header-redirect-navbar:hover {
    cursor: pointer;
  }
  
  .top-header-redirect-navbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .top-header-redirect-navbar-text {
    font-family: 'SuisseIntl-Light';
    font-size: 16px;
    font-weight: 300;
    line-height: 100%;
    color: #FFFFFF;
  }
  
  .top-header-redirect-navbar-link {
    font-family: 'SuisseIntl-Medium';
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    text-decoration: underline;
    color: #FFFFFF;
  }
  
  .top-header-redirect-navbar-link:hover {
    cursor: pointer;
  }