/*
Theme Name:  Bloghash BKR
Template:    bloghash-pro
Description: Bukit Rhema child theme — Navy/Gold editorial skin
Version:     1.1.0
Author:      Bukit Rhema
Text Domain: bloghash-bkr
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy:      #0D1B2A;
  --navy2:     #1A2D42;
  --gold:      #C9A84C;
  --gold2:     #E8C96A;
  --white:     #FFFFFF;
  --light:     #F7F6F3;
  --light2:    #EEF0F4;
  --text:      #1A1A2E;
  --text2:     #4A5568;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --border:    #E2E5EB;
  --radius:    3px;
}

/* ============================================================
   BASE TYPOGRAPHY
   ============================================================ */
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a { color: var(--gold); }
a:hover { color: var(--gold2); }

/* ============================================================
   NAVIGATION OVERRIDE
   ============================================================ */
.site-header,
#masthead,
.header-main,
header.site-header {
  background: var(--white) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

/* Logo */
.site-logo img,
.custom-logo,
.header-logo img {
  height: 64px !important;
  width: auto !important;
}

/* Primary nav links */
.primary-menu > li > a,
.nav-primary > li > a,
#primary-menu > li > a {
  font-family: var(--font-body);
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
  background: var(--navy) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius) !important;
  transition: all 0.2s !important;
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* CTA button in nav */
.nav-cta,
.header-cta a {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover,
.header-cta a:hover {
  background: var(--gold2) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.hamburger-menu span,
.menu-toggle span {
  background: var(--navy) !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section,
.page-hero,
.site-hero,
section.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 60px 100px;
}

.hero-section::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.hero-title,
.hero-section h1,
.page-hero h1 {
  font-family: var(--font-head) !important;
  font-size: clamp(52px, 9vw, 100px) !important;
  font-weight: 900 !important;
  line-height: 0.95 !important;
  color: var(--white) !important;
  letter-spacing: -0.02em !important;
}

.hero-title .gold,
.hero-section h1 span.gold {
  color: var(--gold);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.site-main section,
.entry-content section,
section.wp-block-group {
  padding: 96px 60px;
}

.container,
.wp-block-group__inner-container,
.alignwide {
  max-width: 1100px;
  margin: 0 auto;
}

/* Eyebrow label */
.eyebrow,
.section-eyebrow,
.wp-block-group .eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* Section title */
.sec-title,
.section-title,
.wp-block-heading.is-style-section-title {
  font-family: var(--font-head) !important;
  font-size: clamp(30px, 4vw, 50px) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  color: var(--navy) !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 20px !important;
}

/* Gold bar divider */
.gold-bar,
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
  display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold,
.wp-block-button__link,
.button,
input[type="submit"] {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 15px 36px !important;
  border-radius: var(--radius) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  display: inline-block !important;
}

.btn-gold:hover,
.wp-block-button__link:hover,
.button:hover,
input[type="submit"]:hover {
  background: var(--gold2) !important;
  transform: translateY(-2px) !important;
  color: var(--navy) !important;
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  color: rgba(255,255,255,0.8) !important;
  background: transparent !important;
  padding: 15px 36px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card,
.post-card,
article.type-post,
.entry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s;
}

.blog-card:hover,
.post-card:hover,
article.type-post:hover,
.entry-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.blog-card .post-thumbnail img,
.post-card img,
.entry-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-card .entry-title,
.post-card .entry-title,
.entry-card .entry-title {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  line-height: 1.35 !important;
}

.blog-card:hover .entry-title,
.post-card:hover .entry-title {
  color: var(--gold) !important;
}

.post-date,
.entry-date,
.blog-date {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   CARDS — GRID (misi, ekosistem)
   ============================================================ */
.misi-card,
.eko-card {
  background: var(--white);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.misi-card:hover,
.eko-card:hover {
  background: var(--light);
}

.misi-card::after,
.eko-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.misi-card:hover::after,
.eko-card:hover::after {
  transform: scaleX(1);
}

.eko-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ============================================================
   STATS
   ============================================================ */
.stat-num,
.stats-number {
  font-family: var(--font-head) !important;
  font-size: 36px !important;
  font-weight: 900 !important;
  color: var(--gold) !important;
  line-height: 1 !important;
  margin-bottom: 4px !important;
}

.stat-lbl,
.stats-label {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--text2) !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.tl-dot {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.tl-yr {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  padding: 22px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }

/* ============================================================
   REVIEW BANNER
   ============================================================ */
.review-bar {
  background: var(--navy);
  border-radius: 4px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.review-big {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  padding: 90px 60px;
  text-align: center;
}

.cta-banner h2,
.cta-banner .sec-title {
  color: var(--white) !important;
}

.cta-banner .sec-lead,
.cta-banner p {
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer,
.site-footer,
#colophon {
  background: var(--navy) !important;
  padding: 64px 60px 32px !important;
  border-top: 2px solid var(--gold) !important;
  color: rgba(255,255,255,0.4) !important;
}

.footer-logo img,
.site-footer .custom-logo {
  height: 88px !important;
  width: auto !important;
}

.site-footer h4,
.site-footer .widget-title,
.footer-col h4 {
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 20px !important;
  font-family: var(--font-body) !important;
}

.site-footer a,
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.4) !important;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover,
.footer-col a:hover {
  color: var(--gold) !important;
}

.footer-bottom,
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

.footer-entity {
  font-size: 12px;
  color: rgba(201,168,76,0.35);
}

/* ============================================================
   LANGUAGE SWITCHER (Polylang)
   ============================================================ */
.pll-parent-menu-item a,
.polylang .lang-item a,
.language-switcher a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  transition: border-color 0.2s;
  text-decoration: none;
}

.pll-parent-menu-item a:hover,
.polylang .lang-item a:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* ============================================================
   SINGLE POST / ARTICLE
   ============================================================ */
.entry-header h1.entry-title {
  font-family: var(--font-head) !important;
  font-size: clamp(32px, 5vw, 60px) !important;
  font-weight: 900 !important;
  color: var(--navy) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
}

.entry-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text2);
  margin-bottom: 1.5em;
}

.entry-content h2 {
  font-size: clamp(22px, 3vw, 32px) !important;
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.entry-content h3 {
  font-size: clamp(18px, 2.5vw, 24px) !important;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.entry-content a {
  color: var(--gold);
  text-decoration: underline;
}

.entry-content blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* ============================================================
   BIBLE QUOTE
   ============================================================ */
.bible-quote {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 12px;
}

.bible-source {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-left: 28px;
  margin-bottom: 36px;
}

/* ============================================================
   LIGHTBOX / GALLERY
   ============================================================ */
.gallery-item img {
  border-radius: 4px;
  transition: transform 0.25s;
}

.gallery-item img:hover {
  transform: scale(1.02);
}

/* ============================================================
   FORMS
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: var(--text) !important;
  background: var(--white) !important;
  width: 100%;
  transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: var(--gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important;
}

/* ============================================================
   BREADCRUMBS (Rank Math)
   ============================================================ */
.rank-math-breadcrumb,
.breadcrumbs {
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 0.05em;
}

.rank-math-breadcrumb a,
.breadcrumbs a {
  color: var(--gold) !important;
  text-decoration: none;
}

.rank-math-breadcrumb a:hover,
.breadcrumbs a:hover {
  color: var(--gold2) !important;
}

/* ============================================================
   PAGE BODY BACKGROUND ALTERNATION
   ============================================================ */
.bg-light { background: var(--light) !important; }
.bg-white { background: var(--white) !important; }
.bg-navy  { background: var(--navy) !important; }

/* ============================================================
   MEDIA — as-featured-in strip
   ============================================================ */
.media-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 52px;
  transition: all 0.2s;
}

.media-item:hover {
  border-color: var(--gold);
}

.media-item img {
  max-height: 28px;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.6);
}

.media-item:hover img {
  filter: grayscale(0) brightness(1);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-main section,
  .entry-content section,
  section.wp-block-group {
    padding: 64px 24px;
  }

  .cta-banner {
    padding: 72px 24px;
  }

  footer,
  .site-footer,
  #colophon {
    padding: 48px 24px 28px !important;
  }

  .hero-section,
  section.hero {
    padding: 100px 24px 80px;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    display: flex !important;
    gap: 16px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
  }

  .blog-grid::-webkit-scrollbar { display: none; }

  .blog-grid .blog-card,
  .blog-grid article {
    flex: 0 0 min(82vw, 320px) !important;
    scroll-snap-align: start !important;
  }
}

@media (max-width: 480px) {
  .site-logo img,
  .custom-logo,
  .header-logo img {
    height: 48px !important;
  }

  footer .footer-logo img,
  .site-footer .custom-logo {
    height: 72px !important;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  nav, footer, .hamburger, .mobile-menu, .cta-banner { display: none !important; }
  body { background: white !important; color: black !important; }
}

/* ============================================================
   BKR CODEX NAV — fixed-position navigation matching design spec
   Replaces bloghash theme's default header chrome
   ============================================================ */

/* Compensate for fixed nav height */
body { padding-top: 76px !important; }

/* Collapse the bloghash #masthead wrapper — nav is position:fixed
   so it lifts out of normal flow; the wrapper itself needs no height */
#masthead.site-header {
  height: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* ---- Nav bar ---- */
.bkr-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 60px;
  background: #fff;
  border-bottom: 1px solid #E2E5EB;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  height: 76px;
  box-sizing: border-box;
}

/* ---- Logo ---- */
.bkr-nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.bkr-nav-logo img {
  height: 48px;
  width: auto;
}

/* ---- Nav links (navy pills) ---- */
ul.bkr-nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: nowrap;
  align-items: center;
}
ul.bkr-nav-links li { margin: 0; }
ul.bkr-nav-links li a {
  display: block;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--navy, #0D1B2A);
  padding: 7px 14px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background .15s, color .15s;
  line-height: 1.4;
}
ul.bkr-nav-links li a:hover,
ul.bkr-nav-links li.current-menu-item > a,
ul.bkr-nav-links li.current-page-ancestor > a {
  background: var(--gold, #C9A84C) !important;
  color: var(--navy, #0D1B2A) !important;
}

/* ---- Right side (lang + CTA) ---- */
.bkr-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language switcher — Polylang ul.lang-list */
.bkr-lang-wrap ul.lang-list {
  display: flex;
  gap: 3px;
  list-style: none;
  margin: 0; padding: 0;
}
.bkr-lang-wrap ul.lang-list li { margin: 0; }
.bkr-lang-wrap ul.lang-list li a {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy, #0D1B2A);
  text-decoration: none;
  padding: 4px 7px;
  border-radius: 3px;
  border: 1px solid #D0D5DD;
  line-height: 1.4;
  transition: background .15s, color .15s;
}
.bkr-lang-wrap ul.lang-list li.lang-item-current a,
.bkr-lang-wrap ul.lang-list li a:hover {
  background: var(--navy, #0D1B2A);
  color: #fff;
  border-color: var(--navy, #0D1B2A);
}

/* CTA button — gold */
.bkr-nav-cta {
  display: inline-block;
  background: var(--gold, #C9A84C);
  color: var(--navy, #0D1B2A) !important;
  text-decoration: none !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1.4;
  transition: background .15s;
  flex-shrink: 0;
}
.bkr-nav-cta:hover { background: #b8942a; }

/* ---- Hamburger button ---- */
.bkr-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.bkr-hamburger span {
  display: block;
  height: 2px;
  background: var(--navy, #0D1B2A);
  border-radius: 1px;
  transition: opacity .15s;
}

/* ---- Mobile menu drawer ---- */
.bkr-mobile-menu {
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  z-index: 199;
  background: #fff;
  padding: 20px 24px 40px;
  overflow-y: auto;
  border-top: 1px solid #E2E5EB;
}
.bkr-mobile-menu[hidden] { display: none !important; }

.bkr-mobile-menu .bkr-mobile-links,
.bkr-mobile-menu .bkr-mobile-links ul {
  list-style: none;
  margin: 0; padding: 0;
}
.bkr-mobile-menu .bkr-mobile-links li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #E2E5EB;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy, #0D1B2A);
  text-decoration: none;
}
.bkr-mobile-menu .bkr-mobile-links li a:hover {
  color: var(--gold, #C9A84C);
}

.bkr-mobile-lang { margin-top: 24px; }
.bkr-mobile-lang ul.lang-list {
  display: flex; gap: 8px;
  list-style: none; margin: 0; padding: 0;
  flex-wrap: wrap;
}
.bkr-mobile-lang ul.lang-list li a {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  color: var(--navy, #0D1B2A);
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid #D0D5DD;
  border-radius: 3px;
}
.bkr-mobile-lang ul.lang-list li.lang-item-current a {
  background: var(--navy, #0D1B2A);
  color: #fff;
  border-color: var(--navy, #0D1B2A);
}

/* ---- Responsive breakpoint ---- */
@media (max-width: 900px) {
  .bkr-nav { padding: 14px 20px; }
  ul.bkr-nav-links { display: none !important; }
  .bkr-nav-right { display: none !important; }
  .bkr-hamburger { display: flex !important; }
}

/* ---- Polylang switcher fix: walker outputs bare <li> (no <ul> wrapper) ---- */
.bkr-lang-wrap {
  display: flex !important;
  gap: 3px;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: nowrap;
  align-items: center;
}
.bkr-lang-wrap li { margin: 0; list-style: none; }
.bkr-lang-wrap li a {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy, #0D1B2A);
  text-decoration: none;
  padding: 4px 7px;
  border-radius: 3px;
  border: 1px solid #D0D5DD;
  line-height: 1.4;
  transition: background .15s, color .15s;
}
.bkr-lang-wrap li.current-lang a,
.bkr-lang-wrap li a:hover {
  background: var(--navy, #0D1B2A);
  color: #fff;
  border-color: var(--navy, #0D1B2A);
}
.bkr-mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.bkr-mobile-lang li { margin: 0; list-style: none; }
.bkr-mobile-lang li a {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  color: var(--navy, #0D1B2A);
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid #D0D5DD;
  border-radius: 3px;
}
.bkr-mobile-lang li.current-lang a {
  background: var(--navy, #0D1B2A);
  color: #fff;
  border-color: var(--navy, #0D1B2A);
}
