.gi-consent-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.gi-consent-modal {
    background: #fff;
    color: #111;
    max-width: 480px;
    width: 100%;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.gi-consent-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
}
.gi-consent-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin: 0 0 1.5rem;
}
.gi-consent-body a {
    color: #e2001a;
}
.gi-consent-actions {
    display: flex;
    gap: 0.75rem;
}
.gi-consent-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #111;
    transition: opacity 0.15s;
}
.gi-consent-btn:hover {
    opacity: 0.85;
}
.gi-consent-btn-reject {
    background: #fff;
    color: #111;
}
.gi-consent-btn-accept {
    background: #111;
    color: #fff;
}
@media (max-width: 480px) {
    .gi-consent-actions {
        flex-direction: column;
    }
}
.cookie-settings-box {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}
.cookie-status-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.cookie-status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.status-on {
    background: #d4edda;
    color: #155724;
}
.status-off {
    background: #f8d7da;
    color: #721c24;
}
.status-none {
    background: #e2e3e5;
    color: #383d41;
}
.cookie-settings-actions {
    display: flex;
    gap: 0.75rem;
}
@media (max-width: 480px) {
    .cookie-settings-actions {
        flex-direction: column;
    }
}
