.announcement-bar {
  background-color: #000000;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-bar p {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  word-spacing: 5px;
  letter-spacing: 2px;
}

.hero-Navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 80px;
}

.navbar-left {  }

.hero-navbar-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-navbar-title h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1;
}
.hero-navbar-subtitle {
  margin-top: 6px;
  font-size: 10px;
  word-spacing: 5px;
  letter-spacing: 3px;
  color: grey;
}

.navbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

#cartButton {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  background-color: #E8923A;
  border: 2px solid #000000;
  cursor: pointer;
  padding: 8px 16px;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
}
#cartButton:hover { background-color: #000000; color: #FFFFFF; }
#cartButton:active { opacity: 0.7; }

.cart-badge {
  background-color: #111;
  color: #FAF0E6;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 900;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge.visible {
  display: inline-flex;
}

.lang-toggle-btn {
  background: transparent;
  border: 2px solid #111111;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  font-family: 'Cairo', sans-serif;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.lang-toggle-btn:hover {
  background-color: #111111;
  color: #FAF0E6;
}

@media (max-width: 1024px) {
  .hero-Navbar { padding: 24px 40px; }
}

@media (max-width: 600px) {
  .hero-Navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px 0px;
    gap: 0;
    min-height: unset;
  }
  .navbar-left { display: none; }
  .hero-navbar-title {
    width: 100%;
    padding-bottom: 16px;
  }
  .hero-navbar-title h1 { font-size: 28px; }
  .hero-navbar-subtitle { font-size: 9px; }

  .navbar-right {
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 0;
    gap: 0;
    justify-content: stretch;
  }
  
  .navbar-right a:first-child {
    flex: 1;
  }
  #cartButton {
    width: 100%;
    justify-content: center;
    border-right: 1px solid #111;
    border-top: none;
    border-left: none;
    border-bottom: none;
    padding: 14px 16px;
    font-size: 15px;
  }
  
  .lang-toggle-btn {
    flex: 1;
    border: none;
    border-left: 1px solid rgba(0,0,0,0.15);
    padding: 14px 16px;
    font-size: 14px;
    text-align: center;
    background-color: #FAF0E6;
  }
  .lang-toggle-btn:hover {
    background-color: #111;
    color: #FAF0E6;
  }
  .announcement-bar p {
    font-size: 9px;
    word-spacing: 2px;
    letter-spacing: 1px;
  }
}
