.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ============================================================
   PASTE INTO: Elementor → Site Settings → Custom CSS
   OR: Appearance → Customize → Additional CSS
   ============================================================ */

/* Mobile bar */
.hdr-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 8px;
  height: 56px;
  background: #ffffff;
  box-sizing: border-box;
}

.hdr-mobile-icons {
  display: flex;
  align-items: center;
  gap: 0;
}

.hdr-m-btn {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px 7px;
  min-width: 44px;
  min-height: 44px;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
  outline: none;
}

.hdr-m-btn:hover,
.hdr-m-btn:focus,
.hdr-m-btn:active {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.hdr-m-btn svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #2d2d2d;
  display: block;
}

.hdr-m-btn span {
  font-size: 9px;
  font-weight: 500;
  color: #444;
  letter-spacing: 0.15px;
  white-space: nowrap;
  display: block;
}

.hdr-m-divider {
  display: inline-block;
  width: 1px;
  height: 24px;
  background: #d0d0d0;
  margin: 0 3px;
  flex-shrink: 0;
  align-self: center;
}

@media (min-width: 768px) {
  .hdr-mobile-bar { display: none !important; }
}

@media (max-width: 767px) {
  .hdr-mobile-bar { display: flex !important; }
  .hdr-desktop-actions { display: none !important; }
}

/* ── DRAWER — full width on mobile ── */
.hdr-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;        /* ✅ full width */
  max-width: 100%;     /* ✅ no cap */
  bottom: 0;
  background: #ffffff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  visibility: hidden;
  box-shadow: none;
}

.hdr-mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

/* Drawer header */
.hdr-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 56px;
  border-bottom: 1px solid #eeeeee;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1;
}

.hdr-drawer-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a1a1a;
}

/* ✅ Plain black X — no background, no circle */
.hdr-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
  flex-shrink: 0;
}

.hdr-drawer-close:hover,
.hdr-drawer-close:focus,
.hdr-drawer-close:active {
  background: none !important;
  outline: none;
}

.hdr-drawer-close svg {
  width: 22px;
  height: 22px;
  stroke: #1a1a1a;     /* ✅ plain black X */
  display: block;
}

/* Drawer menu links */
.hdr-drawer-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0 40px;
}

.hdr-drawer-menu li a {
  display: block;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.1s, color 0.1s;
}

.hdr-drawer-menu li a:hover {
  background: #fff8f4;
  color: #F47B20;
}

/* ── OVERLAY ── */
.hdr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.40);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.hdr-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}/* End custom CSS */