/* ================= COOKIE CONSENT ================= */

.cookie-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 14px;
}

.cookie-modal{
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 20px 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    font-family: "Montserrat", sans-serif;
}

.cookie-header{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 8px;
}

.cookie-header h3{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #2b2b2b;
}

.cookie-close{
    position: absolute;
    right: 0;
    top: 0;
    border: 2px solid #2b2b2b;
    background: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 800;
}

.cookie-text{
    font-size: 13px;
    line-height: 1.5;
    color: #4b4b4b;
    margin: 10px 0 14px;
    text-align: left;
}

.cookie-actions{
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cookie-btn{
    min-width: 150px;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid #d7d7d7;
    background: #f7f7f7;
    color: #2b2b2b;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.cookie-btn:hover{
    transform: translateY(-1px);
}

.cookie-accept{
    background: #590F64;
    border-color: #590F64;
    color: #fff;
}
.cookie-accept:hover{
    background: #3f0a47;
    border-color: #3f0a47;
}
.cookie-deny{
    background: #ffffff;
}

.cookie-preferences{
    background: #ffffff;
}

.cookie-links{
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
    margin-top: 8px;
}

.cookie-links a{
    color: #6b2b82;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-preferences-panel{
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.cookie-preferences-panel h4{
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 800;
}

.cookie-switch{
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 8px 0;
    font-size: 13px;
    color: #333;
}

.cookie-save{
    margin-top: 12px;
    background: #590F64;
    border-color: #590F64;
    color: #fff;
}

/* Mobile */
@media (max-width: 520px){
    .cookie-btn{
        min-width: 100%;
    }
}
