.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.93) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.brand-row {
  height: 58px;
  min-height: 58px;
  max-height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px 6px;
  overflow: hidden;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 40px;
  line-height: 0;
}

.home-brand img {
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.top-bar {
  min-height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 8px 16px 10px;
  border-top: 1px solid rgba(201,168,76,0.12);
  box-sizing: border-box;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 16px;
  padding: 5px 10px;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s;
}

.dropdown-btn:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.dropdown-btn span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}

.dropdown-btn svg {
  width: 10px;
  height: 10px;
  fill: var(--gold);
  transition: transform 0.3s;
}

.dropdown.open .dropdown-btn svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(26,26,26,0.98);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  z-index: 10;
}

#products-dropdown .dropdown-menu {
  right: auto;
  left: 0;
  max-width: calc(100vw - 24px);
}

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

.dropdown-menu a,
.dropdown-menu .menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--gray);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.2s;
  font-family: 'Lato', sans-serif;
}

.dropdown-menu a:hover {
  background: rgba(201,168,76,0.1);
  color: var(--white);
}

.dropdown-menu a svg,
.dropdown-menu .menu-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dropdown-menu .divider {
  height: 1px;
  background: rgba(201,168,76,0.2);
  margin: 6px 0;
}

.dropdown-menu .menu-label {
  padding: 6px 16px 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}

.dropdown-menu .coming-soon {
  color: var(--gray);
  opacity: 0.5;
  cursor: default;
  font-style: italic;
}

.dropdown-menu .coming-soon:hover {
  background: transparent;
  color: var(--gray);
}

.dropdown-menu .active-product {
  color: var(--gold);
  font-weight: 600;
}

.lang-flag-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-flag-btn.active {
  color: var(--gold) !important;
}

#lang-active-flag svg {
  display: block;
  border-radius: 2px;
}

@media (max-width: 600px) {
  .brand-row {
    height: auto;
    min-height: 48px;
    max-height: none;
    padding: 8px 12px;
  }

  .home-brand {
    height: auto;
    max-width: 100%;
  }

  .home-brand img {
    width: auto;
    height: 40px;
    min-height: 0;
    max-height: 40px;
    max-width: 100%;
  }

  .top-bar {
    min-height: auto;
    padding: 6px 12px 8px;
    gap: 6px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}