:root {
    --bch-pad: 40px;
    --bch-font-heading: "Cormorant Garamond", serif;
    --bch-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


/* ==========================================
       BCH SITE HEADER STYLING
       ========================================== */
    .bch-site-header {
      width: 100%;
      background: #10100f !important;
      color: #fffaf2;
      font-family: var(--bch-font-body, "Inter", Arial, sans-serif) !important;
      position: relative;
      z-index: 100;
    }

    .bch-site-header,
    .bch-site-header * {
      box-sizing: border-box;
    }

    /* Top black header */
    .bch-site-header__top {
      width: 100%;
      background: #10100f !important;
    }

    .bch-site-header__inner {
      max-width: 1200px !important;
      min-height: 96px !important;
      margin: 0 auto !important;
      padding: 0 28px !important;
      border-bottom: 1px solid rgba(255, 250, 242, 0.08);
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 32px !important;
    }

    /* Brand */
    .bch-site-header__brand {
      flex: 0 0 auto !important;
      display: flex !important;
      align-items: center !important;
      gap: 15px !important;
      color: #fffaf2 !important;
      text-decoration: none !important;
      background: transparent !important;
    }

    .bch-site-header__logo-box {
      width: 58px !important;
      height: 58px !important;
      min-width: 58px !important;
      padding: 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      border: 2px solid #e4571e !important;
      border-radius: 4px !important;
      color: #e4571e !important;
      font-family: var(--bch-font-body, "Inter", Arial, sans-serif) !important;
      font-size: 22px !important;
      font-weight: 800 !important;
      line-height: 1 !important;
      letter-spacing: 0.03em !important;
    }

    .bch-site-header__brand-text {
      display: flex !important;
      flex-direction: column !important;
      gap: 0 !important;
      color: #fffaf2 !important;
      font-family: var(--bch-font-body, "Inter", Arial, sans-serif) !important;
      font-size: 15px !important;
      font-weight: 800 !important;
      line-height: 0.95 !important;
      letter-spacing: 0.035em !important;
      text-transform: uppercase !important;
    }

    /* Navigation Container */
    .bch-site-header__nav {
      flex: 1 1 auto !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 42px !important;
      margin: 0 !important;
      padding: 0 !important;
      background: transparent !important;
    }

    /* Navigation Items & Dropdown wrappers */
    .bch-site-header__nav-item {
      position: relative;
      display: flex;
      align-items: center;
      height: 96px;
    }

    .bch-site-header__nav-link {
      position: relative !important;
      display: flex !important;
      align-items: center !important;
      gap: 6px !important;
      height: 100% !important;
      color: #fffaf2 !important;
      text-decoration: none !important;
      background: transparent !important;
      font-family: var(--bch-font-body, "Inter", Arial, sans-serif) !important;
      font-size: 15px !important;
      font-weight: 600 !important;
      line-height: 1 !important;
      letter-spacing: -0.01em !important;
      transition: color 0.15s ease;
      cursor: pointer;
      margin-bottom: 0 !important;
    }

    .bch-site-header__nav-link:hover {
      color: #f36b2a !important;
    }

    .bch-site-header__nav-link.is-active {
      color: #f36b2a !important;
    }

    .bch-site-header__nav-link.is-active::after {
      content: "" !important;
      position: absolute !important;
      left: 50% !important;
      bottom: 17px !important;
      width: calc(100% - 4px) !important;
      height: 3px !important;
      transform: translateX(-50%) !important;
      background: #e4571e !important;
      border-radius: 999px !important;
    }

    /* Chevron indicators for Dropdowns */
    .bch-dropdown-chevron {
      width: 10px;
      height: 6px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.2s ease;
    }

    /* Dropdown Menus (Desktop) */
    .bch-site-header__dropdown {
      position: absolute;
      top: calc(100% - 10px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      background: #171715;
      border: 1px solid rgba(255, 250, 242, 0.1);
      border-radius: 8px;
      min-width: 210px;
      padding: 12px 0;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.2s;
      z-index: 150;
    }

    .bch-site-header__dropdown a {
      display: block;
      padding: 10px 20px;
      color: rgba(255, 250, 242, 0.85) ;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      font-family: var(--bch-font-body);
      transition: background 0.15s, color 0.15s;
    }

    .bch-site-header__dropdown a:hover {
      background: rgba(243, 107, 42, 0.12);
      color: #f36b2a;
    }

    /* Hover action for Desktop */
    @media (min-width: 981px) {
      .bch-site-header__nav-item:hover .bch-site-header__dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
      }

      .bch-site-header__nav-item:hover .bch-dropdown-chevron {
        transform: rotate(180deg);
      }
    }

    /* Right actions: search & search triggers */
    .bch-site-header__actions {
      flex: 0 0 auto !important;
      display: flex !important;
      align-items: center !important;
      justify-content: flex-end !important;
      gap: 16px !important;
    }

    .bch-site-header__search-wrap {
      position: relative;
      display: flex;
      align-items: center;
    }

    .bch-site-header__search {
      appearance: none !important;
      border: 0 !important;
      background: transparent !important;
      width: 38px !important;
      height: 38px !important;
      padding: 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      color: #fffaf2 !important;
      cursor: pointer !important;
      transition: color 0.15s ease;
    }

    .bch-site-header__search svg {
      width: 25px !important;
      height: 25px !important;
    }

    .bch-site-header__search:hover {
      color: #f36b2a !important;
    }

    /* Floating Search Dropdown for Desktop */
    .bch-site-header__search-form {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      z-index: 180;
      display: flex;
      align-items: center;
      gap: 8px;
      width: min(420px, calc(100vw - 32px));
      padding: 10px;
      background: #fffaf3;
      border: 1px solid rgb(226 213 195);
      border-radius: 999px;
      box-shadow: 0 18px 45px rgba(52, 38, 20, 0.16);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      pointer-events: none;
      transition:
        opacity 180ms ease,
        transform 180ms ease,
        visibility 180ms ease;
    }

    .bch-site-header__search-wrap.is-open .bch-site-header__search-form {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .bch-site-header__search-input {
      width: 100%;
      min-width: 0;
      height: 42px;
      padding: 0 16px;
      color: #2b2118;
      font-family: "Inter", sans-serif;
      font-size: 14px;
      background: #ffffff;
      border: 1px solid rgb(226 213 195);
      border-radius: 999px;
      outline: none;
    }

    .bch-site-header__search-input:focus {
      border-color: #c96f2d;
      box-shadow: 0 0 0 3px rgba(201, 111, 45, 0.14);
    }

    .bch-site-header__search-submit {
      flex: 0 0 auto;
      height: 42px;
      padding: 0 18px;
      color: #ffffff;
      font-family: "Inter", sans-serif;
      font-size: 13px;
      font-weight: 700;
      background: #c96f2d;
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      transition: background 0.15s ease;
    }

    .bch-site-header__search-submit:hover {
      background: #a95720;
    }

    /* Screen Reader text helper */
    .screen-reader-text {
      position: absolute !important;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* Breadcrumbs Row styling */
    .bch-site-header__breadcrumbs {
      width: 100%;
      background: #171715 !important;
      max-width: 2000px;
      margin: 0 auto;
      border-bottom: 1px solid rgba(255, 250, 242, 0.08);
      transition: padding-top 0.24s cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    .bch-site-header__breadcrumbs-inner {
      max-width: 1200px !important;
      min-height: 54px !important;
      margin: 0 auto !important;
      padding: 0 28px !important;
      display: flex !important;
      align-items: center !important;
      gap: 10px !important;
      color: rgba(255, 250, 242, 0.72) !important;
      font-family: var(--bch-font-body, "Inter", Arial, sans-serif) !important;
      font-size: 13px !important;
      font-weight: 500 !important;
      line-height: 1 !important;
    }

    .bch-site-header__breadcrumbs-inner a {
      color: #fffaf2 !important;
      text-decoration: none !important;
      background: transparent !important;
      transition: color 0.15s ease;
    }

    .bch-site-header__breadcrumbs-inner a:hover {
      color: #f36b2a !important;
    }

    .bch-site-header__breadcrumbs-inner span:last-child {
      color: #fffaf2 !important;
    }

    .bch-site-header__breadcrumbs-inner span.divider {
      color: rgba(255, 250, 242, 0.35);
      font-size: 11px;
    }

    /* Mobile toggle button */
    .bch-site-header__mobile-toggle {
      display: none !important;
    }

    /* ==========================================
       RESPONSIVE & WIDTH SYNC RULES
       ========================================== */
    @media (min-width: 981px) {
      .bch-site-header__inner,
      .bch-site-header__breadcrumbs-inner {
        width: calc(100% - (var(--bch-outer-pad, 0px) * 2)) !important;
        max-width: 2000px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: var(--bch-pad, clamp(40px, 3.125vw, 60px)) !important;
        padding-right: var(--bch-pad, clamp(40px, 3.125vw, 60px)) !important;
      }
    }

    @media (min-width: 2001px) {
      .bch-site-header__inner,
      .bch-site-header__breadcrumbs-inner {
        width: 2000px !important;
        max-width: 2000px !important;
      }
    }

    /* ==========================================
       MOBILE RESPONSIVE RULES (<= 980px)
       ========================================== */
    @media (max-width: 980px) {
      .bch-site-header {
        position: relative !important;
        z-index: 1000 !important;
        background: #070808 !important;
        overflow: visible !important;
      }

      .bch-site-header__top {
        position: relative !important;
        background: #070808 !important;
        z-index: 50 !important;
        overflow: visible !important;
      }

      .bch-site-header__inner {
        min-height: 82px !important;
        padding: 0 18px !important;
        gap: 14px !important;
        position: static !important;
        overflow: visible !important;
      }

      .bch-site-header__brand {
        order: 1 !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        gap: 10px !important;
      }

      .bch-site-header__logo-box {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        font-size: 15px !important;
        border: 2px solid #f05a1a !important;
        color: #f05a1a !important;
      }

      .bch-site-header__brand-text {
        font-size: 12px !important;
      }

      /* Hamburger configuration */
      .bch-site-header__mobile-toggle {
        order: 3 !important;
        flex: 0 0 auto !important;
        width: 38px !important;
        height: 38px !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        border: 0 !important;
        cursor: pointer;
      }

      .bch-site-header__mobile-toggle span {
        display: block !important;
        width: 25px !important;
        height: 2px !important;
        margin: 3px 0 !important;
        background: #fffaf2 !important;
        border-radius: 999px !important;
        transition: transform 0.2s ease, opacity 0.2s ease;
      }

      .bch-site-header__mobile-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
      .bch-site-header__mobile-toggle.is-open span:nth-child(2) {
        opacity: 0;
      }
      .bch-site-header__mobile-toggle.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      /* Search layout positioning for mobile overlay */
      .bch-site-header__actions {
        order: 2 !important;
        flex: 0 0 auto !important;
        margin-left: auto !important;
        position: static !important;
        overflow: visible !important;
      }

      .bch-site-header__search-wrap {
        position: static !important;
      }

      .bch-site-header__search-form {
        display: flex !important;
        align-items: center !important;
        gap: 0 !important;
        position: absolute !important;
        top: calc(100% + 10px) !important;
        left: 17px !important;
        right: 17px !important;
        z-index: 1200 !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        height: 54px !important;
        padding: 6px 8px !important;
        background: #fffaf6 !important;
        border: 1px solid rgba(30, 25, 18, 0.12) !important;
        border-radius: 13px !important;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-8px) scale(0.985) !important;
        pointer-events: none !important;
        transition:
          opacity 0.22s ease,
          transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
          visibility 0.22s ease !important;
      }

      .bch-site-header__search-wrap.is-open .bch-site-header__search-form {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        pointer-events: auto !important;
      }

      .bch-site-header.bch-search-is-open .bch-site-header__breadcrumbs,
      .bch-site-header:has(.bch-site-header__search-wrap.is-open) .bch-site-header__breadcrumbs {
        padding-top: 72px !important;
      }

      /* Mobile Drawer layout & accordions */
      .bch-site-header__nav {
        order: 4 !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 100% !important;
        z-index: 1001 !important;
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 8px 18px 24px !important;
        background: #070808 !important;
        border-top: 1px solid rgba(255, 250, 242, 0.08) !important;
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24) !important;
        max-height: calc(100vh - 82px);
        overflow-y: auto;
      }

      .bch-site-header__nav.is-open {
        display: flex !important;
      }

      .bch-site-header__nav-item {
        height: auto !important;
        flex-direction: column !important;
        align-items: stretch !important;
        border-bottom: 1px solid rgba(255, 250, 242, 0.05);
      }

      .bch-site-header__nav-link {
        width: 100% !important;
        height: auto !important;
        padding: 16px 0 !important;
        font-size: 15px !important;
        font-weight: 650 !important;
        justify-content: space-between !important;
      }

      .bch-site-header__nav-link.is-active::after {
        display: none !important;
      }

      /* Mobile sub-items container toggled via script */
      .bch-site-header__dropdown {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: none; /* Controlled by toggle class */
        background: rgba(255, 250, 242, 0.03) !important;
        border: 0 !important;
        border-radius: 6px !important;
        min-width: 0 !important;
        margin: 4px 0 16px !important;
        padding: 6px 0 !important;
        box-shadow: none !important;
      }

      .bch-site-header__dropdown.is-expanded {
        display: block !important;
      }

      .bch-site-header__dropdown a {
        padding: 10px 16px !important;
        font-size: 14px !important;
        color: rgba(255, 250, 242, 0.75) !important;
      }

      /* Light breadcrumbs row on Mobile */
      .bch-site-header__breadcrumbs {
        /*background: #f6efe4 !important;*/
        border-bottom: 0 !important;
      }

      .bch-site-header__breadcrumbs-inner {
        max-width: none !important;
        min-height: 48px !important;
        padding: 0 18px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        color: #777069 !important;
        font-size: 12px !important;
        font-weight: 500;
      }

      .bch-site-header__breadcrumbs-inner a {
        /*color: #5f5851 !important;*/
        text-decoration: none !important;
      }

      .bch-site-header__breadcrumbs-inner span {
        color: #8a8178 !important;
      }

      .bch-site-header__breadcrumbs-inner span.divider {
        color: rgba(30, 25, 18, 0.2);
      }
    }
/* ... existing code ... */
@media (min-width: 2001px) {
  .bch-site-header__inner,
  .bch-site-header__breadcrumbs-inner {
    width: 2000px !important;
    max-width: 2000px !important;
  }
}

/* =========================================================
   BCH HEADER PADDING OVERRIDES
   Updates only left/right paddings per device breakpoints
   ========================================================= */

@media (max-width: 980px) {
  .bch-site-header__inner,
  .bch-site-header__breadcrumbs-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 480px) {
  .bch-site-header__inner,
  .bch-site-header__breadcrumbs-inner {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

p.bch-site-header__nav-link  {margin-bottom: 0!important;}

/* Ensure mobile accordions open correctly when the JS toggles the class */
@media (max-width: 980px) {
    .bch-site-header__dropdown {
        display: none !important; /* Hidden by default on mobile */
        flex-direction: column;
        padding-left: 16px;
        margin-top: 5px;
        border-left: 1px solid rgba(255, 250, 242, 0.1);
    }
    
    .bch-site-header__nav-item.is-open .bch-site-header__dropdown {
        display: flex !important; /* Reveals when JS adds .is-open */
    }
    
    .bch-site-header__nav-item.is-open > a {
        color: #f36b2a !important; /* Highlight the active parent link */
    }
}

/* Remove background and border from the input field */
.bch-site-header__search-input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  
  /* Keep your existing text styling */
  color: #2b2118;
  padding: 0 16px;
  /* ... any other typography rules ... */
}

/* Remove the orange ring/border when clicking inside the input */
.bch-site-header__search-input:focus {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}