/* Cookie consent banner */
.cookiesPopup {
    position: fixed;
    width: 100%;
    bottom: 0;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

.cookiesPopup.hidden {
    display: none;
}

.cookiesDescription {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1320px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 18px 15px;
    background: #fff;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookiesDescriptionClosing {
    opacity: 0;
    transform: translateY(20px);
}

.cookiesContent {
    flex: 1 1 auto;
    min-width: 0;
}

.cookiesTitle {
    margin: 0 0 6px;
    color: #111;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.cookiesText {
    margin: 0;
    color: rgba(0, 0, 0, 0.9);
    font-size: 13px;
    line-height: 1.45;
}

.cookiesTextLink {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

.cookiesActions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.cookiesButton {
    min-width: 130px;
    margin: 0;
    padding: 12px 28px;
    border: 1px solid #f5d637;
    background: #f5d637;
    color: #111;
    font-weight: 500;
    cursor: pointer;
}

.cookiesButton:hover {
    border-color: #f2cc05;
    background: #f2cc05;
}

.cookiesButtonSecondary {
    border-color: #c8c8c8;
    background: #fff;
}

.cookiesButtonSecondary:hover {
    border-color: #999;
    background: #f4f4f4;
}

@media (max-width: 1400px) {
    .cookiesDescription {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .cookiesDescription {
        max-width: 1200px;
    }
}

@media (max-width: 720px) {
    .cookiesDescription {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        max-width: 720px;
        padding: 16px;
    }

    .cookiesActions {
        width: 100%;
    }

    .cookiesButton {
        flex: 1 1 50%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .cookiesActions {
        flex-direction: column;
    }

    .cookiesButton {
        width: 100%;
    }
}
