.footer-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    transition: none;
}

.footer-controls:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
}

.footer-sep {
    width: 1px;
    height: 16px;
    background: #e5e5e5;
    opacity: 0.6;
}

.dd-container {
    position: relative;
}

.dd-trigger {
    background: transparent;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500; /* Less bold than 600 */
    color: var(--text);
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.8;
}

.dd-trigger:hover, .dd-trigger.active {
    background: transparent;
    opacity: 1;
}

.dd-trigger::after {
    content: none; /* Remove the arrow */
}

.dd-menu {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 6px;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom left;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1001;
}

.dd-menu.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.dd-item {
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.1s;
    font-size: 0.9rem;
    color: var(--text);
}

.dd-item:hover {
    background: #f5f5f5;
}

.dd-item.selected {
    background: #FFF7ED;
    color: #C2410C;
    font-weight: 500;
}

.dd-letter {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    opacity: 0.7;
}

.dd-label {
    font-family: 'Poppins', sans-serif;
}

/* Scrollbar */
.dd-menu::-webkit-scrollbar { width: 4px; }
.dd-menu::-webkit-scrollbar-thumb { background: #e5e5e5; border-radius: 4px; }

/* New .lang-select Component */
.lang-select {
    padding: 10px 16px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    text-align: center;
    color: var(--text);
    transition: all 0.2s;
}

.lang-select:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.2);
}

.lang-select-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 200;
}
