.ce-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.ce-header {
  width: min(1200px, 96vw);
  margin: 12px auto;
  border: 1px solid #dfd5ca;
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px;
  position: relative;
  font-family: "Montserrat", Arial, sans-serif;
}

.ce-header__brand img {
  height: 52px;
  width: auto;
  display: block;
}

.ce-header__toggle,
.ce-header__submenu-toggle {
  border: 1px solid #d8cbbb;
  background: #fff;
  color: #2a2420;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font: inherit;
}

.ce-header__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(360px, 92vw);
  background: #fff;
  border: 1px solid #dfd5ca;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(16, 12, 8, 0.16);
  padding: 12px;
  display: grid;
  gap: 8px;
  z-index: 40;
}

.ce-header__menu a,
.ce-header__submenu-toggle {
  text-decoration: none;
  color: #2a2420;
  font-size: 0.95rem;
}

.ce-header__menu > a,
.ce-header__submenu-toggle {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.ce-header__menu > a:hover,
.ce-header__submenu-toggle:hover,
.ce-header__submenu a:hover {
  background: #f7f1ea;
}

.ce-header__submenu {
  margin: 6px 0 0;
  border-left: 1px solid #dfd5ca;
  padding-left: 10px;
  display: grid;
  gap: 4px;
}

.ce-header__submenu a {
  padding: 8px 10px;
  border-radius: 8px;
}
