.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
}

.cookie-consent-inner {
    width: min(980px, 100%);
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e8e2d8;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(31, 41, 51, 0.16);
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.cookie-consent strong {
    display: block;
    color: #1f2933;
    font-size: 17px;
    margin-bottom: 5px;
}

.cookie-consent p {
    margin: 0;
    color: #6b7280;
    line-height: 1.45;
    font-size: 14px;
}

.cookie-consent a {
    color: #355c39;
    font-weight: 800;
    text-decoration: none;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    border: 0;
    border-radius: 999px;
    padding: 11px 15px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: #4f7f52;
    color: #ffffff;
}

.cookie-btn-primary:hover {
    background: #355c39;
}

.cookie-btn-secondary {
    background: #f1eee7;
    color: #1f2933;
}

@media (max-width: 720px) {
    .cookie-consent-inner {
        grid-template-columns: 1fr;
    }

    .cookie-consent-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media print {
    .cookie-consent {
        display: none !important;
    }
}