.cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    max-width: 760px;
    width: calc(100% - 32px);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(4, 25, 40, 0.18);
    padding: 24px 28px;
    z-index: 9999;
    border: 1px solid rgba(13, 110, 253, 0.1);
    display: none;
}

.cookie-consent__content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-consent__content i {
    font-size: 28px;
    color: #1097b8;
    flex: 0 0 auto;
}

.cookie-consent__text strong {
    display: block;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 6px;
}

.cookie-consent__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-consent__actions .btn-primary {
    background: #1097b8;
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.cookie-consent__actions .btn-primary:hover {
    background: #0c6d85;
}

.cookie-consent__actions .btn-outline {
    border: 1px solid rgba(15, 23, 42, 0.15);
    padding: 10px 20px;
    border-radius: 999px;
    color: #0f172a;
    background: transparent;
    font-weight: 500;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.cookie-consent__actions .btn-outline:hover {
    border-color: #1097b8;
    color: #1097b8;
}

.cookie-consent__text a {
    color: #1097b8;
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 575px) {
    .cookie-consent {
        padding: 18px 20px;
    }

    .cookie-consent__content {
        flex-direction: column;
    }

    .cookie-consent__content i {
        font-size: 24px;
    }
}
