/**
 * Language Selector Popup Styles
 * Matching NOVA Probiotics branding
 */

/* Overlay */
.lsp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F3E3D3;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main popup container */
.lsp-popup {
    background-color: #84A2A0;
    padding: 100px 75px;
    max-width: 640px;
    width: 100vw;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: lsp-fadeInUp 0.5s ease-out;
}

/* Logo container */
.lsp-logo {
    margin-bottom: 40px;
}

.lsp-nova-logo {
    width: 280px;
    height: 60px;
    max-width: 100%;
}

.lsp-nova-text {
    font-family: 'Arial', sans-serif;
    font-size: 32px;
    font-weight: bold;
    fill: white;
    letter-spacing: 2px;
}

.lsp-probiotics-text {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: normal;
    fill: white;
    letter-spacing: 1px;
}

.lsp-registered {
    font-family: 'Arial', sans-serif;
    font-size: 8px;
    fill: white;
}

.lsp-tree-icon {
    opacity: 0.9;
}

/* Title */
.lsp-title {
    font-size: 35px !important;
    margin-bottom: 50px;
}

/* Buttons container */
.lsp-buttons {
    display: flex;
    flex-direction: row !important;
    column-gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual button */
.lsp-button {
    background: transparent !important;
    text-transform: capitalize !important;
    border: 1px solid white;
    color: white;
    padding: 15px 35px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    box-shadow: none !important;
    outline none !important;
}

.lsp-button:hover {
    background-color: #353535 !important;
    color: white !important;
    border-color: #353535;
}

.lsp-button img {
    width: 40px !important;
}

/* Button icons */
.lsp-icon {
    font-size: 20px;
    opacity: 0.8;
}

.lsp-text {
    font-weight: 700;
}

/* Animations */
@keyframes lsp-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Loading state - simplified to avoid layout issues */
.lsp-button.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Responsive design */
@media screen and (max-width: 767px) {
    .lsp-popup {
        padding: 50px 15px;
        width: 90vw
    }
    .lsp-logo img {
        max-width: 200px;
    }
    
    .lsp-title {
        font-size: 25px !important;
    }
    .lsp-buttons {
        flex-direction: column !important;
        column-gap: 0px !important;
        row-gap: 25px !important;
    }
    .lsp-text {
        font-size: 20px !important;
    }
}