

.cookie-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999999999999;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
}


.cookie-modal {
    width: 900px;
    height: 500px;
    max-width: 90vw;
    max-height: 90vh;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border: 1px solid lightskyblue;
    display: flex; 
    overflow: hidden;
    font-family: 'Damas Font', sans-serif;
    margin: auto;
    padding: 0 !important;
}



.cookie-col-left {
    position: relative;
    overflow: hidden;
    width: 50%;
}

.cookie-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}


.cookie-col-right {
    width: 50%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.cookie-header {
    text-align: center;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.cookie-logo {
    width: 110px;
    height: auto;
    display: block;
    margin: 0 auto 8px auto;
}

.link-refuse {
    font-size: 0.8em;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: block;
    text-align: center;
    cursor: pointer;
}
.link-refuse:hover { text-decoration: underline; }


.cookie-body {
    font-size: 10px;
    color: #444;
    line-height: 1.45;
    text-align: justify;
    flex-grow: 1;
    overflow: hidden;
    min-height: 0;
    margin-bottom: 15px;
}

.cookie-body p { margin-bottom: 8px; font-size: 1.25em;}
.cookie-body a { color: #00bce4; text-decoration: none; }

.cookie-bold-title {
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 4px;
    color: #000;
    display: block;
}

.cookie-small-text {
    color: #666;
    font-size: 9px;
    line-height: 1.3;
}


.cookie-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-shrink: 0;
}

.btn-cookie {
    flex: 1;
    padding: 12px 0;
    border: none;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    font-family: 'Damas Font', sans-serif;
    border-radius: 2px;
}

.btn-cookie:hover { opacity: 0.9; }
.btn-grey { background-color: #f2f2f2; color: #000; }
.btn-blue { background-color: #0491b1; color: white; }


.step2-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px 35px;
    background: #fff;
    box-sizing: border-box;
}

.step2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.step2-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.step2-close {
    font-size: 18px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.step2-scroll-area {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.step2-scroll-area::-webkit-scrollbar { width: 6px; }
.step2-scroll-area::-webkit-scrollbar-thumb { background-color: #ccc; border-radius: 3px; }
.step2-scroll-area::-webkit-scrollbar-track { background: #f1f1f1; }

.step2-intro {
    font-size: 10px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: justify;
}

.step2-section-label {
    font-size: 9px;
    color: #888;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cookie-section { margin-bottom: 20px; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.section-title {
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

.section-title.minus::before { content: "- "; }

.status-required {
    font-size: 10px;
    font-weight: 700;
    color: #00bce4;
    background: #eefbfc;
    padding: 3px 6px;
    border-radius: 3px;
}

.toggle-group {
    display: flex;
    background: #f0f0f0;
    border-radius: 3px;
    padding: 2px;
}

.toggle-btn {
    border: none;
    background: transparent;
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    border-radius: 2px;
    transition: all 0.2s;
}

.toggle-btn.selected {
    background: #fff;
    color: #000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.section-row {
    display: flex;
    justify-content: space-between;
    padding-left: 15px;
    font-size: 11px;
}

.sub-label {
    font-weight: 600;
    color: #333;
}

.section-desc {
    font-size: 10px;
    color: #666;
    padding-left: 15px;
    line-height: 1.4;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}
.detail-list li { margin-bottom: 2px; }

.step2-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.btn-partners {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 12px;
    font-size: 10px;
    cursor: pointer;
    color: #555;
    border-radius: 3px;
    font-weight: 600;
}

.btn-save-choices {
    background: #00bce4;
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 3px;
    text-transform: uppercase;
}
.btn-save-choices:hover { opacity: 0.9; }


.accordion-group {
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

.accordion-header:hover { background-color: #fcfcfc; }

.acc-title .icon {
    display: inline-block;
    width: 15px;
    font-weight: normal;
    color: #00bce4;
}

.accordion-body {
    display: none;
    padding-bottom: 15px;
    padding-left: 15px;
    border-top: 1px solid #f9f9f9;
}

.accordion-group.active .accordion-body { display: block; }
.accordion-group.active .acc-title .icon { content: "-"; }

.section-desc {
    font-size: 11px;
    color: #666;
    margin: 10px 0 15px 0;
    line-height: 1.4;
    padding: 10px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
}

.sub-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 0;
}

.sub-text {
    font-size: 11px;
    color: #333;
    font-weight: 600;
    max-width: 65%;
}

.toggle-container {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
}

.toggle-btn {
    border: none;
    background: #fff;
    padding: 6px 12px;
    font-size: 10px;
    cursor: pointer;
    color: #888;
    font-weight: 500;
    transition: all 0.2s;
}

.toggle-btn:first-child { border-right: 1px solid #ddd; }

.toggle-btn.selected {
    background: #f0f0f0;
    color: #000;
    font-weight: 700;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.legal-footer-text {
    font-size: 10px;
    color: #444;
    text-align: justify;
    margin-top: 20px;
    line-height: 1.4;
    border-top: 1px solid #eee;
    padding-top: 10px;
}
.legal-footer-text a {
    color: #000;
    text-decoration: underline;
}

.footer-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}