﻿languageItem {
    text-align: center;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 350px;
    background: #fff8f0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    font-family: 'Segoe UI', sans-serif;
    z-index: 9999;
}

.cookie-content {
    padding: 20px;
}

    .cookie-content h3 {
        margin: 0 0 8px;
        font-size: 18px;
        color: #5a3e2b;
        font-weight: 600;
    }

    .cookie-content p {
        margin: 0 0 16px;
        font-size: 14px;
        color: #4e4037;
        line-height: 1.5;
    }

    .cookie-content a {
        color: #b85c38;
        text-decoration: none;
        font-weight: 500;
    }

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-primary {
    background: #b85c38;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.btn-secondary {
    background: #e6d5c3;
    color: #5a3e2b;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary:hover {
    background: #a44f2e;
}

.btn-secondary:hover {
    background: #d9c4af;
}

.cookie-settings-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cookie-settings {
    background: #fff8f0;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', sans-serif;
    max-width: 380px;
    width: 100%;
}

    .cookie-settings h3 {
        margin-top: 0;
        font-size: 20px;
        color: #5a3e2b;
        font-weight: 600;
    }

    .cookie-settings label {
        display: flex;
        align-items: center;
        font-size: 15px;
        color: #4e4037;
        margin: 12px 0;
        gap: 8px;
        cursor: pointer;
    }

    .cookie-settings input[type="checkbox"] {
        accent-color: #b85c38;
        transform: scale(1.2);
    }

.settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.btn-primary {
    background: #b85c38;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.btn-secondary {
    background: #e6d5c3;
    color: #5a3e2b;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary:hover {
    background: #a44f2e;
}

.btn-secondary:hover {
    background: #d9c4af;
}

.contactForm .form-group input, .contactForm .form-group textarea {
    padding: 15px 10px;
}

.align-center {
    text-align: center !important;
}

.align-right {
    text-align: right !important;
}
/*Css loading*/
.loading-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
}

.loader {
    position: fixed;
    z-index: 9999;
    --R: 30px;
    --g1: #85754e 96%, #0000;
    --g2: #eeeeee 96%, #0000;
    width: calc(2*var(--R));
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    -webkit-mask: linear-gradient(#000 0 0);
    animation: l30 2s infinite linear;
}

    .loader::before,
    .loader::after {
        content: "";
        grid-area: 1/1;
        width: 50%;
        background: radial-gradient(farthest-side,var(--g1)) calc(var(--R) + 0.866*var(--R) - var(--R)) calc(var(--R) - 0.5*var(--R) - var(--R)), radial-gradient(farthest-side,var(--g1)) calc(var(--R) + 0.866*var(--R) - var(--R)) calc(var(--R) - 0.5*var(--R) - var(--R)), radial-gradient(farthest-side,var(--g2)) calc(var(--R) + 0.5*var(--R) - var(--R)) calc(var(--R) - 0.866*var(--R) - var(--R)), radial-gradient(farthest-side,var(--g1)) 0 calc(-1*var(--R)), radial-gradient(farthest-side,var(--g2)) calc(var(--R) - 0.5*var(--R) - var(--R)) calc(var(--R) - 0.866*var(--R) - var(--R)), radial-gradient(farthest-side,var(--g1)) calc(var(--R) - 0.866*var(--R) - var(--R)) calc(var(--R) - 0.5*var(--R) - var(--R)), radial-gradient(farthest-side,var(--g2)) calc(-1*var(--R)) 0, radial-gradient(farthest-side,var(--g1)) calc(var(--R) - 0.866*var(--R) - var(--R)) calc(var(--R) + 0.5*var(--R) - var(--R));
        background-size: calc(2*var(--R)) calc(2*var(--R));
        background-repeat: no-repeat;
    }

    .loader::after {
        transform: rotate(180deg);
        transform-origin: right;
    }

@keyframes l30 {
    100% {
        transform: rotate(-1turn)
    }
}
/*Custom Css Start*/

/*Css Custom start*/