.caca-cookie-card {
    position: fixed;
    left: 22px;
    bottom: 22px;
    width: 340px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .16);
    padding: 30px 32px;
    z-index: 9999;
    display: none;
}

.caca-cookie-card.show {
    display: block;
}

.caca-cookie-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
}

.caca-cookie-icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

.caca-cookie-text {
    color: #333;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 26px;
}

.caca-cookie-text a {
    color: #111;
    font-weight: 800;
    text-decoration: underline;
}

.caca-cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.caca-cookie-accept {
    height: 36px;
    border: 0;
    border-radius: 7px;
    background: #0f0b15;
    color: #fff;
    padding: 0 18px;
    font-weight: 800;
    cursor: pointer;
}

.caca-cookie-close {
    height: 36px;
    border: 0;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 560px) {
    .caca-cookie-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
        padding: 24px;
    }
}
