/* CookieConsent - front stilus */

.cookieconsent-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99999;
    width: 100%;
    box-sizing: border-box;
    padding: 18px 20px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    line-height: 1.5;
}

.cookieconsent-banner.cookieconsent-position-top {
    top: 0;
}

.cookieconsent-banner.cookieconsent-position-bottom {
    bottom: 0;
}

.cookieconsent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookieconsent-content {
    flex: 1 1 480px;
}

.cookieconsent-title {
    font-weight: 700;
    margin: 0 0 4px 0;
    font-size: 16px;
}

.cookieconsent-text {
    margin: 0;
}

.cookieconsent-moreinfo {
    text-decoration: underline;
    margin-left: 6px;
    white-space: nowrap;
}

.cookieconsent-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookieconsent-btn {
    border: none;
    border-radius: 4px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cookieconsent-btn:hover {
    opacity: 0.85;
}

.cookieconsent-reopen-wrapper {
    text-align: center;
    padding: 8px 0;
}

.cookieconsent-reopen-link {
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 767px) {
    .cookieconsent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookieconsent-actions {
        justify-content: flex-end;
    }
}
