/* Override Hello Elementor default header container */
header.site-header {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none;
	display:block;
}
header.site-header p{
margin: 0;
}

/* Header styles */

    /* ══════════════════════════════
       CONTAINER
    ══════════════════════════════ */
    .header-container {
      max-width: 1560px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ══════════════════════════════
       ANNOUNCEMENT BAR
    ══════════════════════════════ */
    .header-announcement-bar {
      background: #384C65;
      color: #fff;
    }

    .header-announcement-bar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 6px 0;
    }

    .header-announcement-bar__message {
      color: #FFF;
      font-family: Nunito, sans-serif;
      font-size: 16px;
      font-weight: 400;
      text-decoration-line: underline;
      white-space: nowrap;
    }

    .header-announcement-bar__actions {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      gap: 20px;
    }

    .header-announcement-bar__action-item {
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      text-decoration: none;
      color: #FFF;
      font-family: Nunito, sans-serif;
      font-size: 16px;
      font-weight: 400;
    }
    .header-announcement-bar__action-item:hover { opacity: 0.8; }

    /* ══════════════════════════════
       MAIN NAV  (desktop)
    ══════════════════════════════ */
    .header-main-nav {
      background: #fff;
      border-bottom: 1px solid #e8e8e8;
    }

    .header-main-nav__inner {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 10px;
    }

    /* Hamburger — desktop hidden */
    .header-main-nav__hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: #1a1a2e;
      padding: 4px;
      flex-shrink: 0;
    }

    .header-main-nav__logo { text-decoration: none; }
    .header-main-nav__logo img {
      height: auto;
      max-width: 237px;
      width: 100%;
    }

    .header-main-nav__search {
      flex: 1;
      position: relative;
      max-width: 640px;
      margin: 0 auto;
    }

    .header-main-nav__search-input {
      width: 100%;
      padding: 12px 30px;
      height: 54px;
      outline: none;
      transition: border-color 0.2s;
      border-radius: 38px !important;
      border: 1px solid #E2E2E2;
      background: #FFF;
      box-shadow: 0 4px 4px 0 rgba(0,0,0,0.10);
      color: #A4A4A4;
      font-family: "Nunito", sans-serif;
      font-size: 18px;
      font-weight: 400;
    }
    .header-main-nav__search-input::placeholder {
      color: #A4A4A4;
      font-family: "Nunito", sans-serif;
      font-size: 18px;
      font-weight: 400;
    }

    .header-main-nav__search-icon {
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
      color: #A4A4A4;
      font-size: 31px;
    }

    .header-main-nav__actions {
      display: flex;
      align-items: center;
      gap: 23px;
      flex-shrink: 0;
    }

    .header-main-nav__icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: #1a1a2e;
      position: relative;
      padding: 4px;
      display: flex;
      align-items: center;
    }
    .header-main-nav__icon-btn img {
      width: 100%;
      max-width: 34px;
      height: auto;
    }

    .header-main-nav__icon-badge {
      position: absolute;
      bottom: 0px;
      right: 2px;
      background: #CCA644;
      padding: 3px 7px 2px 6px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFF;
      font-family: Nunito, sans-serif;
      font-size: 14px;
      font-weight: 600;
    }

    .header-main-nav__cart-btn {
      border: none;
      border-radius: 75px;
      background: #3B87B1;
      padding: 10px 30px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      transition: background 0.2s;
      color: #FFF;
      font-family: Nunito, sans-serif;
      font-size: 18px;
      font-weight: 500;
    }
    .header-main-nav__cart-btn img {
      padding: 3px 0;
      width: 100%;
      height: auto;
      max-width: 23px;
    }
    .header-main-nav__cart-btn:hover { background: #245a8a; }

    /* ══════════════════════════════
       MOBILE TOP BAR  (logo row — mobile only)
    ══════════════════════════════ */
    .header-mobile-topbar {
      display: none;
      background: #fff;
      border:0;
    }

    .header-mobile-topbar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px 10px 24px;
    }

    .header-mobile-topbar__logo {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }


    /* ══════════════════════════════
       MOBILE SEARCH BAR  (mobile only)
    ══════════════════════════════ */
    .header-mobile-searchbar {
      display: none; 
      background: #fff;
      border:0px;

    }

    .header-mobile-searchbar__inner {
      display: flex;
      align-items: center;
      gap: 18px;
      padding:10px 24px 12px 24px;
    }

    .header-mobile-searchbar__hamburger {
      background: none;
      border: none;
      cursor: pointer;
    }
    .header-mobile-searchbar__hamburger img{
      max-width: 22px;
      width: 100%;
      height: auto;
    }
    .header-mobile-searchbar__search {
      flex: 1;
      position: relative;
    }
    .header-mobile-searchbar__search-input {
      width: 100%;
      padding: 9px 18px;
      height: 40px;
      outline: none;
      border-radius: 38px;
      border: 1px solid #E2E2E2;
      background: #FFF;
      box-shadow: 0 2px 4px rgba(0,0,0,0.08);
      color: #A4A4A4;
      font-family: "Nunito", sans-serif;
      font-size: 15px;
      font-weight: 400;
    }
    .header-mobile-searchbar__search-input::placeholder {
      color: #A4A4A4;
    }
    .header-mobile-searchbar__search-icon {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: #A4A4A4;
      font-size: 20px;
      pointer-events: none;
    }

    /* ══════════════════════════════
       CATEGORY NAV
    ══════════════════════════════ */
    .header-category-nav {
      background: #fff;
      border-bottom: 1px solid #E2E2E2;
      border-top: 1px solid #E2E2E2;
      padding: 14px 0;
    }
    .header-category-nav__inner {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .header-category-nav-wrapper {
      list-style: none;
      display: flex;
      gap: 30px;
      justify-content: space-between;
      max-width: 570px;
      width: 100%;
    }
    .header-category-nav-wrapper li a {
      color: #242424;
      font-family: Nunito, sans-serif;
      font-size: 20px;
      font-weight: 600;
      padding: 0 10px;
      text-decoration: none;
    }
.header-category-nav-wrapper li a:hover,.header-category-nav-wrapper li a.header-category-nav__link--active {
      color: #b8920a;
      border-bottom-color: #b8920a;
      font-weight: 500;
    }

    /* ══════════════════════════════
       PROMO BANNER
    ══════════════════════════════ */
    .header-promo-banner__actions-btns{
      display: flex;
      gap: 20px;
    }
    .header-promo-banner__content-wrapper{
      display: flex;
      gap: 12px;
    }
    .header-promo-banner {
      background: #FFF9E9;
    }
    .header-promo-banner__inner {
      display: flex;
      align-items: center;
      padding: 24px 0 29px 0;
      gap: 14px;
      justify-content:space-between;
    }
    .header-promo-banner__icon img{
      width: 100%;
      height: auto;
      max-width: 58px;
    }
    .header-promo-banner__text { 
      display: flex;
      gap: 4px;
      flex-direction: column;
    }
    .header-promo-banner__title {
      color: #2C2208;
      font-family: Nunito;
      font-size: 22px;
      font-style: normal;
      margin:0;
	  font-weight:700;
      line-height: normal;
    }
    .header-promo-banner__subtitle {
      color: #2C2208;
      font-family: Nunito;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
		margin:0;
    }
    .header-promo-banner__cta {
      background: #CCA644;
      border: none;
      border-radius: 86px;
      padding:15px 29px;
      color: #FFF;
      font-family: Nunito;
      font-size: 18px;
      font-weight: 500;
      line-height: normal;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s;
    }
	.header-promo-banner__content-wrapper .header-promo-banner__icon{
		display:flex;
	}
    .header-promo-banner__cta:hover { background: #9a7a08; }
    .header-promo-banner__close {
      background: none;
      border: none;
      cursor: pointer;
      color: #aaa;
      padding: 4px;
      display: flex;
      align-items: center;
    }
    .header-promo-banner__close:hover { color: #555; }

    /* ══════════════════════════════
       MOBILE OVERLAY
    ══════════════════════════════ */
    .header-mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 100;
    }
    .header-mobile-overlay--open { display: block; }

    /* ══════════════════════════════
       MOBILE DRAWER
    ══════════════════════════════ */
    .header-mobile-topbar__actions .header-mobile-topbar__icon-btn img{
      width: 100%;
      max-width: 20px;
      height: auto;
    }
    .header-mobile-topbar__actions .header-mobile-topbar__icon-btn-2 img{
      max-width: 27px;
    }
    .header-mobile-topbar__actions{
      display: flex;
      gap: 14px;
    }
    .header-mobile-topbar__actions .header-mobile-topbar__icon-btn{
      border: none;
      background:transparent;
    }
    .header-mobile-drawer {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: 100%;
      background: #FAFAFA;
      z-index: 101;
      transform: translateX(-100%);
      transition: transform 0.25s ease;
      display: flex;
      flex-direction: column;
    }
    .header-mobile-drawer--open { transform: translateX(0); }

    .header-mobile-drawer__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 24px;
      border-bottom: 1px solid #DEDEDE;
      color: #171817;
      font-family: Nunito;
      font-size: 18px;
      font-weight: 700;
      line-height: normal;
    }
    .header-mobile-drawer__close {
      background: none;
      border: none;
      cursor: pointer;
      color: #888;
      padding: 4px;
      display: flex;
      align-items: center;
    }
    .header-mobile-drawer__close:hover { color: #333; }

    .header-mobile-drawer__categories { flex: 1; overflow-y: auto; }

    .header-mobile-drawer__footer {
      padding: 24px 40px;
      border-top: 1px solid #eee;
      background: #EBEBEB;
      display: flex;
      flex-direction: column;
      gap: 19px;
    }
    .header-mobile-drawer__footer-link {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      color: #242424;
      font-family: Nunito;
      font-size: 20px;
      font-weight: 400;
      line-height: normal;
    }
    .header-mobile-drawer__footer a img{
      width: 100%;
      height: auto;
      max-width: 24px;
    }
    .header-mobile-drawer__footer a .header-mobile-icons{
      max-width: 27px;
    }
    .header-mobile-drawer__footer-link:hover { color: #1a1a2e; }



  /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 1024px) {
      .header-promo-banner{
        display: none;
      }
      .header-announcement-bar__actions { display: none; }
      .header-announcement-bar__inner {
         justify-content: center; 
         padding: 7px 4px;
        }
      .header-announcement-bar__message { font-size: 12px; white-space: normal; text-align: center; }
      .header-main-nav { display: none; }
      .header-mobile-topbar { display: block; }
      .header-mobile-searchbar { display: block; }

      /* Hide desktop category tabs */
      .header-category-nav { display: none; }
      .header-promo-banner__cta { width: 100%; text-align: center; justify-content: center; }
      .header-mobile-drawer__categories ul{
        flex-direction: column;
        gap: 0;
        max-width:100%;
      }
      .header-promo-banner__content-wrapper {
        flex-direction: column;
      }
      
    .header-promo-banner__inner {
      align-items: flex-start;
    }
      .header-mobile-drawer__categories ul li{
        padding:27px 24px 25px 24px;
        border-bottom:1px solid #DEDEDE;
        width:100%;
        max-width:100%;
      }
      .header-mobile-drawer__categories ul li a{
        padding:0;
      }
    }

 @media (min-width: 1025px) {
    .header-mobile-drawer,
    .header-mobile-overlay,
    .header-mobile-topbar,
    .header-mobile-searchbar { display: none !important; }
}

