@charset "UTF-8";
.site-header {
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
  border-radius: 0 0 44px 44px;
  border-right: 1px solid #CACACA;
  border-bottom: 1px solid #CACACA;
  border-left: 1px solid #CACACA;
  background: #FFF;
}
.site-header ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
@media screen and (max-width: 1023px) {
  .site-header > .container {
    position: relative;
  }
}
.site-header .header-link-class {
  background-color: white;
  border-radius: 0 24px;
  padding-left: 10px;
}
@media screen and (max-width: 1023px) {
  .site-header .header-link-class {
    display: none;
  }
}
.site-header .header-link-class {
  display: flex;
  justify-content: center;
  max-width: max-content;
}
.site-header .header-link-class .menu-header-container .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.site-header .header-link-class .menu-header-container .menu li a {
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  text-transform: uppercase;
  color: grey !important;
  padding: 8px 20px;
}
@media screen and (max-width: 1023px) {
  .site-header .header-left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: calc(100% - 120px);
  }
  .site-header .header-left a {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .header-left {
    flex: 0 0 20%;
  }
}
.site-header .right-header {
  display: flex;
  gap: 20px;
  flex: 0 0 20%;
  align-items: center;
  justify-content: end;
}
.site-header .right-header > .notification-icon,
.site-header .right-header > .profile-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  border-radius: 50%;
  border: 1.2px solid #DEAAFF !important;
  background: #fff;
  text-decoration: none;
  line-height: 0;
}
@media (max-width: 1023px) {
  .site-header .right-header > .notification-icon,
  .site-header .right-header > .profile-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}
@media screen and (max-width: 787px) {
  .site-header .right-header > .notification-icon,
  .site-header .right-header > .profile-icon {
    display: none;
  }
}
.site-header .right-header > .profile-icon {
  color: #522A70 !important;
  box-shadow: none !important;
}
.site-header .right-header > .profile-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0;
}
.site-header .right-header > .profile-icon > span {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #FCCF1A;
  color: #522A70;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
  transition: transform 0.2s ease;
}
.site-header .right-header > .profile-icon:hover > span {
  transform: scale(1.08);
}
.site-header .right-header > .profile-icon {
  box-shadow: none;
}
.site-header .right-header > .profile-icon img,
.site-header .right-header > .profile-icon > div {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.site-header .right-header > .profile-icon img {
  object-fit: cover !important;
  display: block !important;
}
@media screen and (max-width: 991px) {
  .site-header .right-header .login-btn, .site-header .right-header .trp-shortcode-switcher__wrapper {
    display: none;
  }
}
.site-header .right-header .trp-shortcode-switcher__wrapper {
  line-height: 1;
}
.site-header .right-header .trp-shortcode-switcher__wrapper > .trp-shortcode-switcher {
  background-color: transparent;
  padding: 0;
  border: none !important;
}
.site-header .right-header .trp-shortcode-switcher__wrapper > .trp-shortcode-switcher a {
  padding: 0;
}
.site-header .right-header .trp-shortcode-switcher__wrapper > .trp-shortcode-switcher a span {
  color: #522A70;
  font-weight: 700;
  font-size: 16px;
  font-family: "Xolonium";
  background: white;
}

.desktop-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .desktop-menu {
    display: none;
  }
}
.desktop-menu > li {
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 20px;
  border-right: 1px solid #CACACA;
  cursor: pointer;
}
.desktop-menu > li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.desktop-menu > li a {
  color: #828282;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  font-family: "Xolonium";
}
.desktop-menu > li .toggle-sub {
  position: relative;
}
.desktop-menu > li .toggle-sub a {
  display: flex;
  justify-content: space-between;
}
.desktop-menu > li .toggle-sub a::after {
  content: "";
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'><circle cx='24' cy='24' r='23.4' stroke='%23DEAAFF' stroke-width='1.2'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.desktop-menu > li .toggle-sub a.open::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230891b2' stroke-width='2.5'><path stroke-linecap='round' stroke-linejoin='round' d='M5 15l7-7 7 7'/></svg>");
}
.desktop-menu > li .toggle-sub .sub-menu {
  position: static;
  display: none;
  margin: 0;
}
.desktop-menu > li .toggle-sub .sub-menu li a {
  margin-left: 16px;
}
.desktop-menu > li .toggle-sub .sub-menu li a::after {
  /* explicitly kill any arrow that might slip through */
  content: none;
}
.desktop-menu > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: white;
  padding-top: 5px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 29px;
  list-style: none;
  padding: 0;
  margin-left: 0;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  border-right: 1px solid #E0E4E6;
  border-bottom: 1px solid #E0E4E6;
  border-left: 1px solid #E0E4E6;
}
.desktop-menu > li .sub-menu li {
  width: 100%;
  border: none;
  margin-top: 0 !important;
  position: relative;
  padding: 5px !important;
  background: transparent !important;
}
.desktop-menu > li .sub-menu li a {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  text-transform: none;
  padding: 12px 16px;
  color: #666;
  font-size: 14px;
  font-weight: 700;
  font-family: "Hikasami";
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.3s ease;
  /* gradient overlay */
}
.desktop-menu > li .sub-menu li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #DEAAFF 0%, #522A70 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 12px;
}
.desktop-menu > li .sub-menu li a:hover {
  color: #fff;
  transform: translateY(-2px);
}
.desktop-menu > li .sub-menu li a:hover::before {
  opacity: 1;
}

.header-link-class .menu-header-container .menu li {
  position: relative;
  /* Скрий подменюто по подразбиране */
}
.header-link-class .menu-header-container .menu li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border: 1px solid #E0E0E0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.25s ease;
  z-index: 1000;
  padding: 8px 0;
  list-style: none;
  border-radius: 0 24px;
}
.header-link-class .menu-header-container .menu li {
  /* Покажи подменю при hover */
}
.header-link-class .menu-header-container .menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-link-class .menu-header-container .menu li {
  /* Елементи в подменюто */
}
.header-link-class .menu-header-container .menu li > .sub-menu li a {
  display: block;
  padding: 12px 16px;
  color: #666;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
  font-weight: 700;
}
.header-link-class .menu-header-container .menu li > .sub-menu li a:hover {
  border-radius: 12px;
  background: linear-gradient(270deg, #DEAAFF 0%, #522A70 100%);
  color: white;
}

.header-menu ul {
  display: flex;
}
.header-menu ul li a {
  font-size: 16px;
  font-weight: 700;
  color: grey;
  padding: 12px 24px;
  border-radius: 48px;
  transition: color 0.3s ease, color 0.3s ease;
}
@media (max-width: 1441px) {
  .header-menu ul li a {
    padding: 12px;
  }
}
.header-menu ul li a:hover {
  color: yellow;
}
.header-menu ul li a.active, .header-menu ul li a.current-menu-item {
  color: yellow;
}
.header-menu ul li .current-menu-item > a {
  color: yellow;
}

.dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 20px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

.dropdown li a {
  font-weight: 600;
  font-size: 16px;
}
.dropdown li a:first-child {
  margin-top: 20px;
}

@media (max-width: 1441px) {
  .register-now {
    padding: 12px;
  }
}

.header-desktop {
  display: none;
}
@media (min-width: 1201px) {
  .header-desktop {
    display: block;
  }
}

.header-mobile {
  display: block;
}
@media (min-width: 1201px) {
  .header-mobile {
    display: none;
  }
}

.transition-max-height {
  transition: max-height 0.3s ease-in-out;
}

.burger-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: white;
  left: 0;
  transition: all 0.3s ease;
}

/* Затворено състояние – горна и долна линия */
.burger-line:nth-child(1) {
  top: 8px;
}

.burger-line:nth-child(2) {
  top: 20px;
}

#menu-close {
  border: none !important;
  background-color: white;
  color: grey;
  padding: 5px;
  font-size: 50px;
  font-weight: 300;
}

#menu-mobile-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
#menu-mobile-menu li {
  margin-bottom: 10px;
}

.header-link-class > .desktop-menu > li:hover > a {
  color: #522A70;
}

.menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
  color: #828282;
  text-decoration: none;
}

.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 13px;
  height: 7px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="7" viewBox="0 0 13 7" fill="none"><path d="M6.50002 6.5C6.36053 6.5 6.22089 6.45113 6.11439 6.3535L0.659852 1.35353C0.446716 1.15815 0.446716 0.84178 0.659852 0.64653C0.872988 0.451282 1.21812 0.451157 1.43112 0.64653L6.50002 5.29301L11.5689 0.64653C11.7821 0.451157 12.1272 0.451157 12.3402 0.64653C12.5532 0.841904 12.5533 1.15828 12.3402 1.35353L6.88566 6.3535C6.77916 6.45113 6.63952 6.5 6.50002 6.5Z" fill="%23828282" stroke="%23828282"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 7px;
  transition: transform 0.3s ease, background-image 0.3s ease;
}

.menu-item-has-children:hover > a {
  color: #522A70;
}

.menu-item-has-children:hover > a::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="7" viewBox="0 0 13 7" fill="none"><path d="M6.50002 6.5C6.36053 6.5 6.22089 6.45113 6.11439 6.3535L0.659852 1.35353C0.446716 1.15815 0.446716 0.84178 0.659852 0.64653C0.872988 0.451282 1.21812 0.451157 1.43112 0.64653L6.50002 5.29301L11.5689 0.64653C11.7821 0.451157 12.1272 0.451157 12.3402 0.64653C12.5532 0.841904 12.5533 1.15828 12.3402 1.35353L6.88566 6.3535C6.77916 6.45113 6.63952 6.5 6.50002 6.5Z" fill="%23522A70" stroke="%23522A70"/></svg>');
  transform: translateY(-50%) rotate(180deg);
}

.toggle-sub {
  position: relative;
}
.toggle-sub a {
  display: flex;
  justify-content: space-between;
}
.toggle-sub a::after {
  content: "";
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6' fill='none'%3E%3Cpath d='M3.86162 4.9335L0.129199 1.22022C-0.0430664 1.02881 -0.0430664 0.741699 0.129199 0.569434L0.569434 0.129199C0.741699 -0.0430664 1.02881 -0.0430664 1.22021 0.129199L4.18701 3.07686L7.13467 0.129199C7.32607 -0.0430664 7.61318 -0.0430664 7.78545 0.129199L8.22568 0.569434C8.39795 0.741699 8.39795 1.02881 8.22568 1.22022L4.49326 4.9335C4.321 5.10576 4.03389 5.10576 3.86162 4.9335Z' fill='%2364727D'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

#mobile-menu {
  overflow-y: auto;
  padding: 0 0 20px 0;
  background-color: white;
  width: 80%;
}
#mobile-menu .menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #828282;
}
#mobile-menu .menu-item-has-children > a:hover {
  color: #828282;
}
#mobile-menu .menu-item-has-children > a::after {
  content: "";
  width: 13px;
  height: 7px;
  flex-shrink: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="7" viewBox="0 0 13 7" fill="none"><path d="M6.50002 6.5C6.36053 6.5 6.22089 6.45113 6.11439 6.3535L0.659852 1.35353C0.446716 1.15815 0.446716 0.84178 0.659852 0.64653C0.872988 0.451282 1.21812 0.451157 1.43112 0.64653L6.50002 5.29301L11.5689 0.64653C11.7821 0.451157 12.1272 0.451157 12.3402 0.64653C12.5532 0.841904 12.5533 1.15828 12.3402 1.35353L6.88566 6.3535C6.77916 6.45113 6.63952 6.5 6.50002 6.5Z" fill="%23828282" stroke="%23828282"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.35s ease, background-image 0.35s ease;
  color: #828282;
}
#mobile-menu .menu-item-has-children > a:hover::after {
  transform: translateY(-50%) rotate(0deg);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="7" viewBox="0 0 13 7" fill="none"><path d="M6.50002 6.5C6.36053 6.5 6.22089 6.45113 6.11439 6.3535L0.659852 1.35353C0.446716 1.15815 0.446716 0.84178 0.659852 0.64653C0.872988 0.451282 1.21812 0.451157 1.43112 0.64653L6.50002 5.29301L11.5689 0.64653C11.7821 0.451157 12.1272 0.451157 12.3402 0.64653C12.5532 0.841904 12.5533 1.15828 12.3402 1.35353L6.88566 6.3535C6.77916 6.45113 6.63952 6.5 6.50002 6.5Z" fill="%23828282" stroke="%23828282"/></svg>');
}
#mobile-menu .menu-item-has-children > .sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transform-origin: top;
  transition: max-height 0.35s ease, opacity 0.28s ease, transform 0.35s ease;
  margin-left: 10px;
  padding-left: 0;
  will-change: max-height, opacity, transform;
}
#mobile-menu .menu-item-has-children > .sub-menu li {
  padding: 12px 0;
}
#mobile-menu .menu-item-has-children > .sub-menu li a {
  font-size: 16px;
  font-weight: 400;
  color: #828282;
  font-family: "Xolonium";
}
#mobile-menu .menu-item-has-children.open > a {
  color: #522A70;
}
#mobile-menu .menu-item-has-children.open > a::after {
  transform: translateY(-50%) rotate(180deg);
  color: #522A70;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="7" viewBox="0 0 13 7" fill="none"><path d="M6.50002 6.5C6.36053 6.5 6.22089 6.45113 6.11439 6.3535L0.659852 1.35353C0.446716 1.15815 0.446716 0.84178 0.659852 0.64653C0.872988 0.451282 1.21812 0.451157 1.43112 0.64653L6.50002 5.29301L11.5689 0.64653C11.7821 0.451157 12.1272 0.451157 12.3402 0.64653C12.5532 0.841904 12.5533 1.15828 12.3402 1.35353L6.88566 6.3535C6.77916 6.45113 6.63952 6.5 6.50002 6.5Z" fill="%23522A70" stroke="%23522A70"/></svg>');
}
#mobile-menu .menu-item-has-children.open:hover > a::after {
  transform: translateY(-50%) rotate(180deg);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="7" viewBox="0 0 13 7" fill="none"><path d="M6.50002 6.5C6.36053 6.5 6.22089 6.45113 6.11439 6.3535L0.659852 1.35353C0.446716 1.15815 0.446716 0.84178 0.659852 0.64653C0.872988 0.451282 1.21812 0.451157 1.43112 0.64653L6.50002 5.29301L11.5689 0.64653C11.7821 0.451157 12.1272 0.451157 12.3402 0.64653C12.5532 0.841904 12.5533 1.15828 12.3402 1.35353L6.88566 6.3535C6.77916 6.45113 6.63952 6.5 6.50002 6.5Z" fill="%23522A70" stroke="%23522A70"/></svg>');
}
#mobile-menu .menu-item-has-children.open > .sub-menu {
  opacity: 1;
  transform: translateY(0);
}

.menu-header-mobile-container li {
  font-size: 18px;
  font-weight: 500;
  color: #828282;
  font-family: "Xolonium";
  padding-bottom: 24px;
}
.menu-header-mobile-container li:last-child {
  border-bottom: none;
}
.menu-header-mobile-container li a {
  display: block;
}

.menu-contacts-wrapper .contact-section-mobile {
  flex-direction: row;
}
@media (max-width: 359px) {
  .menu-contacts-wrapper .contact-section-mobile {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .menu-contacts-wrapper .contact-section-mobile .vertilcal-hr {
    display: none;
  }
}

.mobile-menu-wrapper {
  flex: 0 0 20%;
}

.burger {
  background: transparent !important;
}
@media (max-width: 1023px) {
  .burger {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
}

.search-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.search-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-box {
  padding: 15px;
}

.search-box input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  outline: none;
}

.header-dropdown-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .header-dropdown-wrapper {
    top: 72px;
    padding: 0 16px;
  }
}
.header-dropdown-wrapper.is-open {
  pointer-events: none;
}
@media (max-width: 1023px) {
  .header-dropdown-wrapper .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.header-dropdown-menu {
  transform: translateY(-150%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  width: 100%;
}
@media (max-width: 1023px) {
  .header-dropdown-menu {
    width: 100%;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 40px 0 0;
  }
}

.header-dropdown-menu.show {
  transform: translateY(130px);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 1023px) {
  .header-dropdown-menu.show {
    transform: translateY(0);
  }
}

.header-search-field {
  position: relative;
}

@media (max-width: 1023px) {
  .header-search-input {
    min-height: 48px;
    border: 1px solid #D7D1DB;
    border-radius: 14px;
    padding: 14px 56px 14px 16px !important;
    font-size: 16px;
    line-height: 1.4;
    color: #6F6A74;
    background: #fff;
    box-shadow: 0 10px 24px rgba(34, 32, 35, 0.08);
  }
  .header-search-input::placeholder {
    color: #8E8894;
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .header-search-input {
    min-height: 46px;
    padding: 12px 42px 12px 14px !important;
    font-size: 14px;
    line-height: 1.3;
  }
  .header-search-input::placeholder {
    font-size: 14px;
  }
}

.header-search-submit {
  display: none;
}
@media (max-width: 1023px) {
  .header-search-submit {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}
@media (max-width: 480px) {
  .header-search-submit {
    right: 12px;
    width: 20px;
    height: 20px;
  }
  .header-search-submit svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 1023px) {
  .header-search-filters {
    display: none;
  }
}

.header-search-btn {
  position: relative;
  z-index: 10;
  min-width: 48px;
  cursor: pointer;
  background: transparent !important;
}
@media (max-width: 1023px) {
  .header-search-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

#overlay.show {
  opacity: 1;
  pointer-events: auto;
}

#overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@media (min-width: 787px) {
  .mobile-sub-navigation {
    display: none;
  }
}

.mobile-sub-navigation .trp-shortcode-switcher {
  width: 48px;
  height: 48px;
  border-radius: 75px;
  border: 1.5px solid #DEAAFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.mobile-sub-navigation-legacy {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
}

.mobile-sub-navigation-legacy::before {
  content: "";
  position: absolute;
  top: -30px; /* колко да излиза нагоре */
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: white; /* същия като body */
  border-radius: 50%;
  z-index: 1;
}

.mobile-sub-navigation-legacy img {
  position: relative;
  z-index: 2;
}

/* Overrides for the new mobile-sub-navigation layout (Figma screenshot) */
.mobile-sub-navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
}

.mobile-sub-navigation::before {
  content: none;
}

.mobile-sub-navigation .mobile-sub-navigation__inner {
  min-height: 78px;
  overflow: visible;
  position: relative;
  isolation: isolate;
  z-index: 2;
}

.mobile-sub-navigation .mobile-sub-navigation__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  pointer-events: none;
  z-index: 1;
  -webkit-mask: radial-gradient(circle 40px at 50% 10px, transparent 39px, #000 40px);
  mask: radial-gradient(circle 40px at 50% 10px, transparent 39px, #000 40px);
  filter: drop-shadow(0 -8px 18px rgba(34, 32, 35, 0.14)) drop-shadow(0 10px 20px rgba(34, 32, 35, 0.14)) drop-shadow(0 0 12px rgba(34, 32, 35, 0.1));
}

.mobile-sub-navigation .mobile-sub-navigation__inner::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: -16px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(34, 32, 35, 0.22) 0%, rgba(34, 32, 35, 0.1) 52%, rgba(34, 32, 35, 0) 100%);
  filter: blur(12px);
  opacity: 0.82;
  pointer-events: none;
  z-index: 0;
}

.mobile-sub-navigation .mobile-sub-navigation__group,
.mobile-sub-navigation .mobile-sub-navigation__lang {
  position: relative;
  z-index: 2;
}

.mobile-sub-navigation .mobile-sub-navigation__center {
  z-index: 3;
}

.mobile-sub-navigation .mobile-sub-navigation__center::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 96px;
  height: 30px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(34, 32, 35, 0.18) 0%, rgba(34, 32, 35, 0.1) 42%, rgba(34, 32, 35, 0) 74%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.mobile-sub-navigation .mobile-sub-navigation__center img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 22px rgba(34, 32, 35, 0.22)) drop-shadow(0 2px 8px rgba(34, 32, 35, 0.12));
}

.mobile-sub-navigation img {
  position: relative;
  z-index: 2;
}

.mobile-sub-navigation .mobile-sub-navigation__lang {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* TranslatePress language switcher tweaks (48x48 circle, "EN" centered) */
.mobile-sub-navigation .mobile-sub-navigation__lang .trp-shortcode-switcher__wrapper {
  width: 48px;
  height: 48px;
  padding: 0 !important;
  line-height: 1;
}

.mobile-sub-navigation .mobile-sub-navigation__lang .trp-shortcode-switcher {
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border: 1.5px solid #DEAAFF !important;
  border-radius: 999px !important;
  background: #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.mobile-sub-navigation .mobile-sub-navigation__lang .trp-current-language-item__wrapper {
  width: 100%;
  height: 100%;
  padding-right: 0 !important;
  justify-content: center;
}

.mobile-sub-navigation .mobile-sub-navigation__lang .trp-language-item {
  padding: 0 !important;
  gap: 0 !important;
  justify-content: center;
}

.mobile-sub-navigation .mobile-sub-navigation__lang .trp-shortcode-arrow,
.mobile-sub-navigation .mobile-sub-navigation__lang .trp-flag-image,
.mobile-sub-navigation .mobile-sub-navigation__lang img[alt*=flag i] {
  display: none !important;
}

.mobile-sub-navigation .mobile-sub-navigation__lang .trp-language-item-name {
  font-family: "Xolonium";
  font-weight: 700;
  font-size: 20px;
  color: #522A70;
  text-transform: uppercase;
  line-height: 1;
}

.mobile-sub-navigation .mobile-sub-navigation__lang .trp-shortcode-switcher__wrapper,
.mobile-sub-navigation .mobile-sub-navigation__lang .trp-current-language-item__wrapper,
.mobile-sub-navigation .mobile-sub-navigation__lang .trp-language-item,
.mobile-sub-navigation .mobile-sub-navigation__lang .trp-language-item-name {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-sub-navigation .mobile-sub-navigation__lang .trp-language-item,
.mobile-sub-navigation .mobile-sub-navigation__lang .trp-language-item-name {
  width: 100%;
  height: 100%;
}

.mobile-sub-navigation .mobile-sub-navigation__lang .trp-language-item-name {
  margin: 0;
  text-align: center;
}

@media (max-width: 1200px) {
  body {
    padding-bottom: calc(90px + env(safe-area-inset-bottom, 0));
  }
}/*# sourceMappingURL=header.css.map */