/* COOKIE BOX */
.cookie-box{
    position:fixed;
    bottom:20px;
    left:20px;
    max-width:360px;
    background:rgba(255,245,235,0.95);
    border-radius:20px;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    backdrop-filter:blur(6px);
    display:none;
    z-index:9999;
    transform:translateY(20px);
    opacity:0;
    transition:.3s;
}

.cookie-box.show{
    transform:translateY(0);
    opacity:1;
}

/* text */
.cookie-text{
    font-size:14px;
    color:#6c6c7a;
    margin-bottom:12px;
    line-height:1.5;
}

.cookie-text a{
    color: var(--color-title) !important;
    font-weight:600;
    text-decoration:none;
}

.cookie-text a:hover{
    text-decoration:underline;
}

/* buttons */
.cookie-buttons{
    display:flex;
    gap:10px;
    justify-content:flex-end;
}

/* tlačítka */
.cookie-box .btn{
    border-radius:30px;
    padding:6px 14px;
    font-size:13px;
}

/* odmítnout */
#rejectCookies{
    border-color:#ccc;
    color:#777;
}

/* přijmout */
#acceptCookies{
    background:var(--btn-success);
    border:none;
    color:white;
}

#acceptCookies:hover{
    background:var(--btn-success-hover);
}

.cookie-box::before{
    content:"";
    position:absolute;
    top:-20px;
    right:-20px;
    width:60px;
    height:60px;
    background:url("/themes/pohadka/images/stars.svg") no-repeat center;
    background-size:contain;
    opacity:.4;
}