/* ==================================================
   SOUHLAS S ANALYTICKÝMI COOKIES
================================================== */

.cookie-consent[hidden]{
    display:none;
}

.cookie-consent{
    position:fixed;
    inset:auto 18px 18px;
    z-index:5000;
    max-width:980px;
    margin:0 auto;
    padding:20px;
    border:1px solid rgba(208,168,95,.35);
    border-radius:14px;
    background:rgba(15,12,8,.97);
    box-shadow:0 22px 70px rgba(0,0,0,.55);
    color:#fff;
}

.cookie-consent__content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.cookie-consent strong{
    display:block;
    margin-bottom:7px;
    font-family:'Cormorant Garamond',serif;
    font-size:25px;
    font-weight:600;
}

.cookie-consent p{
    max-width:650px;
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:13px;
    line-height:1.65;
}

.cookie-consent a{
    color:#d0a85f;
}

.cookie-consent__actions{
    display:flex;
    flex:0 0 auto;
    gap:10px;
}

.cookie-consent__button{
    min-height:44px;
    padding:11px 17px;
    border-radius:999px;
    font-family:'Montserrat',sans-serif;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}

.cookie-consent__button--primary{
    border:1px solid #d0a85f;
    background:#d0a85f;
    color:#111;
}

.cookie-consent__button--secondary{
    border:1px solid rgba(255,255,255,.32);
    background:transparent;
    color:#fff;
}

@media(max-width:700px){
    .cookie-consent{
        inset:auto 10px 10px;
        padding:18px;
    }

    .cookie-consent__content{
        flex-direction:column;
        align-items:stretch;
        gap:16px;
    }

    .cookie-consent__actions{
        width:100%;
        flex-direction:column-reverse;
    }

    .cookie-consent__button{
        width:100%;
    }
}
