/* Top Bar Styles */
.site-top-bar {
  background-color: #333;
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.5;
}

.site-top-bar .l-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-selector {
  position: relative;
  z-index: 9999;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  transition: background 0.3s;
}

.lang-current:hover {
  background: rgba(255,255,255,0.2);
}

.lang-current .flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.lang-current .arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  margin-left: 4px;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 4px;
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
}

.lang-dropdown.show {
  display: block;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.lang-dropdown a:hover {
  background: #f5f5f5;
}

.lang-dropdown .flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.top-contact a:hover {
  opacity: 0.8;
}

.top-contact .iconfont {
  font-size: 16px;
}

.icon-whatsapp {
  color: #25D366;
}

.icon-email {
  color: #EA4335;
}

@media (max-width: 768px) {
  .site-top-bar .l-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .top-bar-right {
    flex-direction: column;
    gap: 10px;
  }
  
  .top-contact {
    flex-direction: column;
    gap: 8px;
  }
}
