.header.ts-header {
    background: #fff !important;
    position: relative;
    z-index: 20;
    overflow: visible;
  }

  .ts-header-shell {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .ts-header .header-logo .sticky-img {
    height: 85px;
    width: auto;
    max-height: 85px;
    object-fit: contain;
  }

  /* ── Top utility bar ── */
  .ts-header-top {
    background: #e2e2e2;
  }

  .ts-header-top-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 14px;
    color: #4b5563;
  }

  .ts-utility-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .ts-utility-nav > li {
    position: relative;
  }

  .ts-utility-nav > li > a {
    color: #4b5563;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .ts-utility-nav > li > a:hover,
  .ts-utility-nav > li.active > a {
    color: #2d661b;
  }

  .ts-utility-nav .icofont-simple-down {
    font-size: 10px;
  }

  /* ── White main bar: logo + branch + nav grouped in the center ── */
  .ts-header-main {
    background: #fff;
    position: relative;
    border-bottom: 1px solid #c5ddb8;
  }

  .ts-header-main-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    height: 78px;
    width: 100%;
  }

  .ts-header-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }

  .ts-header-brand .branch-selector {
    margin-left: 16px;
  }

  .ts-header .branch-selector {
    position: relative;
    flex-shrink: 0;
  }

  .ts-header .branch-selector .branch-btn {
    background: #fff;
    border: 1px solid #2d661b;
    color: #2d661b;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1.2;
  }

  .ts-header .branch-selector .branch-btn:hover {
    background: #f3f8ef;
  }

  .ts-header .branch-selector .branch-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 192px;
    z-index: 9999;
  }

  .ts-header .branch-selector .branch-option {
    display: block;
    padding: 8px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
  }

  .ts-header .branch-selector .branch-option:hover {
    background: #f3f8ef;
    color: #2d661b;
  }

  .ts-header .branch-selector .branch-option i {
    margin-right: 8px;
    color: #2d661b;
  }

  .header.ts-header .main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .header.ts-header .main-menu > li {
    position: static;
    margin-left: 0 !important;
  }

  .header.ts-header .main-menu .main-menu-link {
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: 14px;
    color: #1f2937 !important;
    text-transform: none;
    padding: 28px 0;
    white-space: nowrap;
    text-decoration: none;
  }

  .header.ts-header .main-menu .main-menu-link::before {
    display: none !important;
  }

  .header.ts-header .main-menu > li:hover > .main-menu-link,
  .header.ts-header .main-menu > li.active > .main-menu-link {
    color: #2d661b !important;
  }

  .ts-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 192px;
    margin: 8px 0 0;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }

  .ts-header .has-dropdown:hover > .ts-dropdown,
  .ts-header .has-dropdown:focus-within > .ts-dropdown {
    display: block;
  }

  .ts-dropdown a {
    display: block;
    padding: 8px 16px;
    color: #374151;
    font-size: 14px;
    text-decoration: none;
    white-space: normal;
  }

  .ts-dropdown a:hover {
    background: #f3f4f6;
    color: #2d661b;
  }

  /* ── Mega menu: floating rounded card, 4 columns ── */
  .ts-mega {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: min(1080px, calc(100% - 48px));
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
    z-index: 9999;
    padding: 28px 36px 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 0;
    align-items: start;
  }

  .ts-mega::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
  }

  .header.ts-header .main-menu > li.has-mega:hover > .ts-mega,
  .header.ts-header .main-menu > li.has-mega:focus-within > .ts-mega {
    display: grid;
  }

  .header.ts-header .ts-mega-col {
    list-style: none;
    margin: 0;
    padding: 0 !important;
    min-width: 0;
  }

  .header.ts-header .ts-mega-col > li,
  .header.ts-header .ts-mega-col > li + li {
    margin: 0 !important;
    padding: 0;
  }

  .header.ts-header .ts-mega-col a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 40px;
    padding: 8px 6px;
    color: #111827;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.12s, color 0.12s;
  }

  .header.ts-header .ts-mega-col a span {
    min-width: 0;
  }

  .header.ts-header .ts-mega-col a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 16px;
    width: 20px;
    min-width: 20px;
    height: 20px;
    line-height: 1;
    text-align: center;
    flex-shrink: 0;
  }

  .header.ts-header .ts-mega-col a:hover {
    background: #f3f8ef;
    color: #2d661b;
  }

  .header.ts-header .ts-mega-col a:hover i {
    color: #2d661b;
  }

  .header.ts-header .ts-mega-view-all {
    color: #2d661b !important;
    font-weight: 600 !important;
  }

  .header.ts-header .ts-mega-view-all:hover {
    background: transparent !important;
    text-decoration: underline;
  }

  .ts-caret {
    font-size: 9px;
    margin-left: 2px;
    color: inherit;
    display: inline-block;
    line-height: 1;
  }

  /* ── CTA row ── */
  .ts-header-cta {
    background: #fffafa;
    border-top: 1px solid #c5ddb8;
    border-bottom: 1px solid #c5ddb8;
  }

  .ts-header-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
  }

  .ts-cta-row {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    width: auto;
  }

  .ts-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 16px;
    border-radius: 999px;
    border: 1px solid #2d661b;
    background: #fff;
    color: #2d661b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .ts-cta-btn i {
    font-size: 14px;
  }

  .ts-cta-btn:hover {
    background: #f3f8ef;
    color: #2d661b;
  }

  .ts-cta-btn--solid {
    background: #2d661b;
    color: #fff;
    border-color: #2d661b;
    padding: 4px 24px;
    font-weight: 600;
  }

  .ts-cta-btn--solid:hover {
    background: #245416;
    color: #fff;
  }

  .ts-cta-btn--whatsapp {
    border-color: #4ade80;
    color: #16a34a;
  }

  .ts-cta-btn--whatsapp:hover {
    background: #f0fdf4;
    color: #15803d;
  }

  .ts-header .mobile-menu-toggle svg path {
    stroke: #2d661b;
  }

  .header-bottom.sticky-header.ts-sticky-clone {
    padding: 0;
    background: #fff;
  }

  .header-bottom.sticky-header.ts-sticky-clone.sticky {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  }

  .header.ts-header .sticky-header.sticky .main-menu li .main-menu-link:hover,
  .header.ts-header .sticky-header.sticky .main-menu li.active .main-menu-link,
  .header.ts-header .sticky-header.sticky .main-menu li:hover .main-menu-link {
    color: #2d661b !important;
  }

  .header.ts-header .sticky-header.sticky .main-menu li .main-menu-link::before {
    display: none !important;
  }

  @media (max-width: 1199.98px) {
    .ts-header-main-inner { gap: 20px; }
    .header.ts-header .main-menu { gap: 20px; }
    .ts-mega {
      width: min(960px, calc(100% - 32px));
      padding: 22px 24px 16px;
      column-gap: 16px;
    }
  }

  @media (max-width: 991.98px) {
    .ts-header-main-inner {
      justify-content: space-between;
      height: auto;
      min-height: 64px;
      gap: 12px;
      padding: 6px 0;
    }
    .ts-header-brand .branch-selector { margin-left: 0; }
    .ts-header .header-logo .sticky-img {
      height: 48px;
      max-height: 48px;
    }
    .ts-mega { display: none !important; }
  }

  @media (max-width: 575.98px) {
    .ts-header-main-inner { padding: 4px 0; }
    .ts-header .header-logo .sticky-img,
    .ts-header .sticky-img {
      height: 40px;
      max-height: 40px;
    }
    .ts-header-mobile-book {
      padding: 4px 12px;
      font-size: 12px;
    }
  }
