header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}
.header_wrapper {
  width: 85%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.brand_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.brand_logo img {
  height: 70px;
  border-radius: 50%;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.2));
}
.brand_name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
	margin-top: -10px;
}
.nav_links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav_links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav_links a:hover {
  color: #b28a00;
}
.nav_links .header_collection a {
	font-weight: bold;
  color: #b28a00;
}
.nav_links .header_collection a:hover {
	color: #d6a700;
}
/**/
.menu_btn {
	display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
	margin: auto;
}
.menu_btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.menu_btn.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu_btn.active span:nth-child(2) {
  opacity: 0;
}
.menu_btn.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.side_menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: right 0.4s ease;
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
}
.side_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.side_menu ul li {
  margin: 20px 0;
}
.side_menu ul li:nth-child(3)::after,
.side_menu ul li:nth-child(7)::after {
  content: "";
  display: block;
  height: 1px;
  width: 70%;
  background: rgba(178, 138, 0, 0.3);
  margin: 15px auto;
}
@media (max-width: 770px) {
  .nav_links li:not(header .lang_switch) {
    display: none;
  }
}
header .lang_switch a {
	font-weight: bold !important;
  color: #b28a00 !important;
}
header .lang_switch a:hover {
  color: #d6a700 !important;
}

.side_menu ul a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.side_menu ul a:hover {
  color: #b28a00;
}
.side_menu.open {
  right: 0;
}
/*----------- background when side_menu is open ---------*/
body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: opacity 0.3s ease;
}
body::before {
  opacity: 0;
  pointer-events: none;
}

body.menu-open::before {
  opacity: 1;
  pointer-events: all;
}