.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for shortcode, class: .elementor-element-52579f8 */:root {
  --fymous-bg: #fbfbfe;
  --fymous-text: #202033;
  --fymous-muted: #77758a;
  --fymous-border: rgba(90, 82, 122, 0.16);
  --fymous-primary: #7c3aed;
  --fymous-secondary: #2784d9;
  --fymous-panel-shadow: 0 18px 60px rgba(27, 24, 54, 0.16);
}


/* =========================================================
   WORDPRESS ADMIN / EDITOR
   ========================================================= */

body.wp-admin .fymous-header,
body.wp-admin .fymous-mobile-search,
body.wp-admin .fymous-menu-panel,
body.wp-admin .fymous-overlay-open::before,

body.block-editor-page .fymous-header,
body.block-editor-page .fymous-mobile-search,
body.block-editor-page .fymous-menu-panel,
body.block-editor-page .fymous-overlay-open::before,

body.edit-post-visual-editor .fymous-header,
body.edit-post-visual-editor .fymous-mobile-search,
body.edit-post-visual-editor .fymous-menu-panel,
body.edit-post-visual-editor .fymous-overlay-open::before {
  display: none !important;
}


/* =========================================================
   SCREEN READER
   ========================================================= */

.fymous-screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}


/* =========================================================
   MAIN FYMOUS HEADER
   HOME + SINGLE POST
   ========================================================= */

.fymous-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;

  padding: 16px;

  background: rgba(251, 251, 254, 0.82);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    padding 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}


/* SCROLLED HEADER */

.fymous-header.is-scrolled {
  padding-block: 8px;

  background: rgba(251, 251, 254, 0.96);

  border-bottom: 1px solid var(--fymous-border);

  box-shadow: 0 8px 30px rgba(34, 28, 70, 0.06);
}


/* =========================================================
   HEADER INNER
   ========================================================= */

.fymous-header__inner {
  width: min(100%, 1280px);

  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;
}


/* =========================================================
   LOGO
   ========================================================= */

.fymous-header__logo {
  display: inline-flex;
  align-items: center;

  flex: 0 0 auto;
}

.fymous-header__logo img {
  display: block;

  width: auto;
  height: 40px;

  max-width: 190px;
}


/* =========================================================
   LIGHT / DARK LOGO
   ========================================================= */

/* Light logo */

.fymous-logo-light {
  display: block !important;
}


/* Dark logo hidden */

.fymous-logo-dark {
  display: none !important;
}


/* =========================================================
   DARK MODE LOGO
   ========================================================= */

html.fymous-dark-mode .fymous-logo-light,
body.fymous-dark-mode .fymous-logo-light {
  display: none !important;
}

html.fymous-dark-mode .fymous-logo-dark,
body.fymous-dark-mode .fymous-logo-dark {
  display: block !important;
}


/* Also support dark mode class directly on header */

.fymous-header.fymous-dark-mode .fymous-logo-light {
  display: none !important;
}

.fymous-header.fymous-dark-mode .fymous-logo-dark {
  display: block !important;
}


/* =========================================================
   DESKTOP SEARCH
   ========================================================= */

.fymous-header__search {
  position: relative;

  display: flex;
  align-items: center;

  flex: 1 1 420px;

  max-width: 430px;

  opacity: 0;
  visibility: hidden;

  transform: scale(0.96);

  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}


/* Show search */

.fymous-header.show-search .fymous-header__search {
  opacity: 1;
  visibility: visible;

  transform: scale(1);
}


/* =========================================================
   SEARCH ICON
   ========================================================= */

.fymous-header__search svg,
.fymous-mobile-search__box svg {
  position: absolute;

  left: 14px;

  width: 18px;
  height: 18px;

  fill: none;

  stroke: var(--fymous-muted);

  stroke-width: 2;

  stroke-linecap: round;
  stroke-linejoin: round;

  pointer-events: none;
}


/* =========================================================
   SEARCH INPUT
   ========================================================= */

.fymous-header__search input,
.fymous-mobile-search__box input {
  width: 100%;

  min-height: 42px;

  padding: 10px 44px;

  border-radius: 999px;

  border: 1px solid var(--fymous-border);

  background: rgba(239, 238, 246, 0.9);

  color: var(--fymous-text);

  font-size: 14px;

  outline: none;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}


/* SEARCH FOCUS */

.fymous-header__search input:focus,
.fymous-mobile-search__box input:focus {
  border-color: rgba(124, 58, 237, 0.44);

  box-shadow:
    0 0 0 4px rgba(124, 58, 237, 0.12);

  background: #fff;
}


/* =========================================================
   SEARCH CLEAR BUTTON
   ========================================================= */

.fymous-search-clear {
  position: absolute;

  right: 8px;

  display: none;

  width: 28px;
  height: 28px;

  border: 0;
  border-radius: 999px;

  background: transparent;

  cursor: pointer;
}

.fymous-search-clear.is-visible {
  display: inline-flex;

  align-items: center;
  justify-content: center;
}

.fymous-search-clear svg {
  position: static;

  width: 16px;
  height: 16px;

  stroke: var(--fymous-muted);
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.fymous-header__actions {
  display: flex;
  align-items: center;

  gap: 8px;
}


/* =========================================================
   ICON BUTTON
   ========================================================= */

.fymous-icon-button {
  width: 40px;
  height: 40px;

  border: 0;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;

  color: var(--fymous-text);

  cursor: pointer;

  transition: background 180ms ease;
}

.fymous-icon-button:hover {
  background: rgba(32, 32, 51, 0.06);
}


/* ICON SVG */

.fymous-icon-button svg {
  width: 21px;
  height: 21px;

  fill: none;

  stroke: currentColor;

  stroke-width: 2;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   MOBILE SEARCH TOGGLE
   ========================================================= */

.fymous-mobile-search-toggle {
  display: none;
}


/* =========================================================
   HAMBURGER
   ========================================================= */

.fymous-menu-toggle {
  flex-direction: column;

  gap: 5px;
}


/* Hamburger lines */

.fymous-menu-toggle span {
  width: 18px;
  height: 2px;

  border-radius: 999px;

  background: currentColor;

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}


/* Hamburger open */

.fymous-menu-toggle.is-open span:first-child {
  transform:
    translateY(3.5px)
    rotate(45deg);
}

.fymous-menu-toggle.is-open span:last-child {
  transform:
    translateY(-3.5px)
    rotate(-45deg);
}


/* =========================================================
   MOBILE SEARCH PANEL
   ========================================================= */

.fymous-mobile-search,
.fymous-menu-panel {
  position: fixed;

  z-index: 9997;

  opacity: 0;
  visibility: hidden;

  transform: translateY(-12px);

  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}


/* OPEN */

.fymous-mobile-search.is-open,
.fymous-menu-panel.is-open {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}


/* =========================================================
   MOBILE SEARCH
   ========================================================= */

.fymous-mobile-search {
  top: 64px;

  left: 16px;
  right: 16px;
}


.fymous-mobile-search__box {
  position: relative;

  display: flex;
  align-items: center;

  padding: 16px;

  border: 1px solid var(--fymous-border);

  border-radius: 20px;

  background: var(--fymous-bg);

  box-shadow: var(--fymous-panel-shadow);
}


.fymous-mobile-search__box svg {
  left: 30px;
}


/* =========================================================
   MENU PANEL
   ========================================================= */

.fymous-menu-panel {
  top: 64px;

  right: 16px;

  width: min(
    392px,
    calc(100vw - 32px)
  );

  max-height: min(
    80vh,
    650px
  );

  overflow: auto;

  border: 1px solid var(--fymous-border);

  border-radius: 20px;

  background: var(--fymous-bg);

  box-shadow: var(--fymous-panel-shadow);
}


/* =========================================================
   MENU PROFILE
   ========================================================= */

.fymous-menu-panel__profile {
  display: flex;
  align-items: center;

  gap: 14px;

  padding: 16px;

  border-bottom:
    1px solid var(--fymous-border);
}


.fymous-menu-panel__avatar {
  width: 56px;
  height: 56px;

  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      var(--fymous-primary),
      var(--fymous-secondary)
    );

  color: #fff;
}


.fymous-menu-panel__avatar svg {
  width: 28px;
  height: 28px;

  fill: none;

  stroke: currentColor;

  stroke-width: 2;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* PROFILE TEXT */

.fymous-menu-panel__profile strong,
.fymous-menu-panel__profile span {
  display: block;
}


.fymous-menu-panel__profile strong {
  color: var(--fymous-text);

  font-size: 15px;
}


.fymous-menu-panel__profile span {
  color: var(--fymous-muted);

  font-size: 13px;
}


/* =========================================================
   MENU NAVIGATION
   ========================================================= */

.fymous-menu-panel__nav {
  display: grid;

  gap: 4px;

  padding: 10px;
}


.fymous-menu-panel__nav ul {
  display: grid;

  gap: 4px;

  margin: 0;
  padding: 0;

  list-style: none;
}


.fymous-menu-panel__nav li {
  margin: 0;
  padding: 0;
}


/* EMPTY MENU */

.fymous-menu-panel__empty {
  margin: 8px;

  padding: 12px 14px;

  border-radius: 14px;

  background: rgba(32, 32, 51, 0.05);

  color: var(--fymous-muted);

  font-size: 14px;

  line-height: 1.5;
}


/* MENU LINKS */

.fymous-menu-panel__nav a,
.fymous-language__toggle,
.fymous-language__list button {
  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;

  padding: 10px 14px;

  border: 0;

  border-radius: 14px;

  background: transparent;

  color: var(--fymous-text);

  font: inherit;

  font-weight: 600;

  text-decoration: none;

  cursor: pointer;

  transition:
    background 180ms ease,
    color 180ms ease;
}


.fymous-menu-panel__nav a:hover,
.fymous-language__toggle:hover,
.fymous-language__list button:hover {
  background: rgba(32, 32, 51, 0.06);
}


/* =========================================================
   LANGUAGE
   ========================================================= */

.fymous-language {
  padding: 0 10px 10px;
}


.fymous-language__toggle {
  width: 100%;
}


.fymous-language__toggle strong,
.fymous-language__list span {
  color: var(--fymous-muted);

  font-size: 12px;
}


.fymous-language__list {
  padding-left: 34px;
}


.fymous-language__list button {
  width: 100%;

  min-height: 38px;

  font-size: 14px;
}


/* =========================================================
   OVERLAY
   ========================================================= */

body.fymous-overlay-open::before {
  content: "";

  position: fixed;

  inset: 0;

  z-index: 9996;

  background: rgba(0, 0, 0, 0.18);
}


/* =========================================================
   SINGLE POST:
   REMOVE OLD BACK-ARROW HEADER
   ========================================================= */

/*
 * IMPORTANT:
 * The old .fymous-post-header is intentionally disabled.
 * Single Posts now use .fymous-header.
 */

.fymous-post-header {
  display: none !important;
}


/* Remove old single-post header elements if they exist */

.fymous-post-header__inner,
.fymous-post-header__back,
.fymous-post-header__logo {
  display: none !important;
}


/* =========================================================
   SINGLE POST:
   NO SEARCH
   ========================================================= */

body.single-post .fymous-header__search,
body.single-post .fymous-mobile-search-toggle,
body.single-post .fymous-mobile-search {
  display: none !important;
}


/* =========================================================
   SINGLE POST:
   HEADER SAME AS HOME
   ========================================================= */

body.single-post .fymous-header {
  display: block !important;

  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 9998;
}


/* =========================================================
   DARK MODE
   ========================================================= */

html.fymous-dark-mode .fymous-header,
body.fymous-dark-mode .fymous-header {
  background: rgba(20, 20, 28, 0.88);
}


html.fymous-dark-mode .fymous-header.is-scrolled,
body.fymous-dark-mode .fymous-header.is-scrolled {
  background: rgba(20, 20, 28, 0.96);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.20);
}


/* DARK MODE HAMBURGER */

html.fymous-dark-mode .fymous-menu-toggle,
body.fymous-dark-mode .fymous-menu-toggle,

.fymous-header.fymous-dark-mode .fymous-menu-toggle {
  color: #ffffff !important;
}


html.fymous-dark-mode .fymous-menu-toggle span,
body.fymous-dark-mode .fymous-menu-toggle span,

.fymous-header.fymous-dark-mode .fymous-menu-toggle span {
  background: #ffffff !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .fymous-header {
    padding: 12px 16px;
  }


  .fymous-header__logo img {
    height: 32px;

    max-width: 165px;
  }


  /* Hide desktop search on mobile */

  .fymous-header__search {
    display: none;
  }


  /* Home mobile search */

  .fymous-header.show-search
  .fymous-mobile-search-toggle {
    display: inline-flex;
  }


  /* Single Post:
     absolutely no search */

  body.single-post
  .fymous-mobile-search-toggle {
    display: none !important;
  }


  body.single-post
  .fymous-mobile-search {
    display: none !important;
  }


  /* Hamburger */

  .fymous-menu-toggle {
    display: inline-flex;
  }


  /* Menu */

  .fymous-menu-panel {
    top: 60px;

    right: 12px;

    width: calc(100vw - 24px);
  }


  /* Dark hamburger */

  html.fymous-dark-mode
  .fymous-menu-toggle,

  body.fymous-dark-mode
  .fymous-menu-toggle,

  .fymous-header.fymous-dark-mode
  .fymous-menu-toggle {
    color: #ffffff !important;
  }


  html.fymous-dark-mode
  .fymous-menu-toggle span,

  body.fymous-dark-mode
  .fymous-menu-toggle span,

  .fymous-header.fymous-dark-mode
  .fymous-menu-toggle span {
    background: #ffffff !important;
  }

}


/* =========================================================
   LARGE MOBILE / TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

  .fymous-header__logo img {
    max-width: 175px;
  }

  .fymous-header__search {
    max-width: 360px;
  }

}


/* =========================================================
   EXTRA SAFETY:
   OLD SINGLE POST HEADER NEVER SHOW
   ========================================================= */

body.single-post .fymous-post-header,
body.single-post .fymous-post-header__inner,
body.single-post .fymous-post-header__back,
body.single-post .fymous-post-header__logo {
  display: none !important;
}/* End custom CSS */