#sdgdpr_modal_wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(0,0,0,.5);
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}
#sdgdpr_modal {
    background: #fff;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 -2px 10px rgba(0,0,0,.2);
}
#sdgdpr_modal_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
}
.sdgdpr_modal_nav {
    margin-bottom: 12px;
}
.nav-gdpr {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}
.nav-gdpr li a {
    color: #555;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding-bottom: 6px;
}
.nav-gdpr li a.active {
    color: #222;
    border-bottom: 2px solid #222;
}
#sdgdpr_modal_body {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 16px;
}
#sdgdpr_modal_body a {
    color: #333;
    text-decoration: underline;
}
.btn-bl-gdpr {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.btn-gdpr {
    display: inline-block;
    padding: 9px 20px;
    border: 1px solid #333;
    color: #333;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .2s, color .2s;
}
.btn-gdpr:hover {
    background: #333;
    color: #fff;
}
.btn-gdpr.btn-agree {
    background: #333;
    color: #fff;
}
.btn-gdpr.btn-agree:hover {
    background: #000;
}
.btn-cookies-pos {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 9999;
}
.btn-cookies-link {
    font-size: 11px;
    color: #888;
    text-decoration: none;
    background: rgba(255,255,255,.9);
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.btn-cookies-link:hover {
    color: #333;
}
@media (max-width: 600px) {
    #sdgdpr_modal_inner { padding: 15px; }
    .btn-bl-gdpr { justify-content: stretch; }
    .btn-gdpr { flex: 1; text-align: center; }
}
