#sup-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#header-container {
  display: flex;
  align-items: stretch;
  height: 60px;
  padding: 0 20px;
}

/* Blocchi principali */
.logo-block {
  padding: 0 20px 0 0;
  display: flex;
  align-items: center;
  border-right: 1px solid #ccc;
}

#logo {
  height: 50px;
  width: auto;
}

/* Menu nav accanto al logo */
#menu-nav {
  display: flex;
  align-items: stretch;
  position: relative;
}

/* Ogni voce menu con sottomenu */
#menu-nav .header-block.menu-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid #ccc;
  height: 100%;
  cursor: pointer;
}

/* Rimuovo bordo sull'ultimo */
#menu-nav .header-block.menu-item:last-child {
  border-right: none;
}

#menu-nav .header-block.menu-item > a {
  color: #996379;
  text-decoration: none;
  font-size: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  user-select: none;
}

/* Hover colore link */
#menu-nav .header-block.menu-item > a:hover {
  text-decoration: underline;
  color: #79495c;
}

.box-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #996379;
  padding: 15px 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-top: 1px solid #ddd;
  z-index: 9999;
  white-space: nowrap;
}
/* Link interni */
.box-menu a { 
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  transition: color 0.2s ease;
  margin-right: 10px;
  padding: 0;
}

/* Hover link */
.box-menu a:hover {
  color: #d6c3c3;
}
/* Mostro il sottomenu quando il mouse è sul menu-item */
.header-block.menu-item:hover .box-menu {
  display: inline;
}
/* Pulsanti autenticazione all’estrema destra */
#auth-buttons {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 10px;
  padding-left: 20px;
}
.auth-btn {
  background-color: #fe8001;
  color: #ffffff !important;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
  border: 0;
}
.auth-btn:hover {
  background-color: #d89caf;
}
.menu-icon {
  margin-right: 6px;
  color: #fff;
  vertical-align: middle;
  font-size: 0.9rem;
}