/* ========================================
   MIK-MIK – light brand theme additions
======================================== */

html, body {
    background: #f6f7fb;
}

/* Make the dark-logo JPG feel intentional on the light header */
header img[alt="MIK-MIK Logo"] {
    border-radius: 7px;
    box-shadow: 0 3px 12px rgba(31, 38, 68, 0.10);
}

/* ========================================
   Language Switcher
======================================== */

.mikmik-lang-switcher {
    position: relative;
    z-index: 100;
}

.mikmik-lang-trigger {
    appearance: none;
    border: 1px solid #e1e5ed;
    background: rgba(255, 255, 255, 0.92);
    height: 42px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 10px;
    color: #3f4658;
    font-family: "Geist", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 5px 16px rgba(33, 42, 74, 0.05);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mikmik-lang-trigger:hover {
    background: #ffffff;
    border-color: #cfd5e2;
    color: #171a29;
}

.mikmik-lang-icon {
    font-size: 19px;
    color: #303476;
}

.mikmik-lang-chevron {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.mikmik-lang-switcher.open .mikmik-lang-chevron {
    transform: rotate(180deg);
}

.mikmik-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 150px;
    padding: 6px;
    border: 1px solid #e1e5ed;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(33, 42, 74, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.mikmik-lang-switcher.open .mikmik-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mikmik-lang-dropdown button {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 11px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #4e5669;
    font-family: "Geist", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.mikmik-lang-dropdown button:hover {
    background: #f5f7fb;
    color: #171a29;
}

.mikmik-lang-dropdown button.active {
    background: #eef1ff;
    color: #303476;
}

.mikmik-lang-dropdown button[data-lang="he"],
.mikmik-lang-dropdown button[data-lang="ar"] {
    direction: rtl;
    text-align: right;
}

@media (max-width: 767px) {
    header > div {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    header nav {
        display: none !important;
    }

    header img[alt="MIK-MIK Logo"] {
        max-width: 170px;
        height: 30px;
    }

    .mikmik-lang-trigger {
        height: 38px;
        padding: 0 9px;
        gap: 5px;
    }

    .mikmik-lang-current {
        display: none;
    }

    .mikmik-lang-icon {
        font-size: 21px;
    }

    .mikmik-lang-chevron {
        font-size: 16px;
    }

    .mikmik-lang-dropdown {
        width: 140px;
    }
}
