#popup_cookies {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 650px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 14px rgba(0, 0, 0, .1);
    padding: 20px 25px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #f5f5f5;
    animation: slideUpCreatis 0.5s ease-out;
}
@keyframes slideUpCreatis {
    from { bottom: -100px; opacity: 0; }
    to { bottom: 20px; opacity: 1; }
}
.ck-text {
    color: #282828;
    font-size: clamp(0.75rem, 0.7rem + 0.23vw, 0.875rem);
    line-height: 1.6;
    flex: 1;
}
.ck-text > span { 
    color: #ff0000;
    font-weight: 500;
}
.ck-text > a {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
}
.ck-btn { 
    background: #ff0000;
    color: #f5f5f5;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: clamp(0.75rem, 0.7rem + 0.23vw, 0.875rem);
    transition: 0.3s;
    white-space: nowrap;
}
.ck-btn:hover { background: #c12a36; transform: scale(1.02); }
@media (max-width: 768px) {
    #creatis-cookie-box { flex-direction: column; text-align: center; bottom: 10px; }
    .ck-btn { width: 100%; }
}