/* Language Switcher Styles — OPTIMA ASSET */
  .lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 16px;
    z-index: 9999;
  }
  .lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 6px;
    color: #333;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
  }
  .lang-switcher-btn:hover {
    background: #e0e0e0;
    border-color: #999;
  }
  .caret-icon {
    transition: transform 0.2s ease;
  }
  .lang-switcher-btn.open .caret-icon {
    transform: rotate(180deg);
  }
  .lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    min-width: 150px;
    overflow: hidden;
    z-index: 99999;
  }
  .lang-dropdown.show {
    display: block;
  }
  .lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
    transition: background 0.15s;
  }
  .lang-option:hover {
    background: #f5f5f5;
    color: #000;
  }
  .lang-option.active {
    color: #4CAF50;
    font-weight: 600;
  }
  .lang-flag {
    font-size: 18px;
    line-height: 1;
  }