/* JVZoo Cookie Consent Banner */

#jvz-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 16px;
}

#jvz-consent-banner {
    background: #fff;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 28px 32px 24px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    box-sizing: border-box;
}

/* Header with orange accent bar */
.jvz-consent-header {
    border-bottom: 3px solid #eb6f25;
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.jvz-consent-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #383c44;
    letter-spacing: -0.2px;
}

.jvz-consent-header h2 .jvz-consent-icon {
    margin-right: 8px;
    vertical-align: -2px;
}

.jvz-consent-body p {
    margin: 0 0 18px;
    color: #555;
    font-size: 13px;
    line-height: 1.65;
}

.jvz-consent-link {
    color: #eb6f25;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.jvz-consent-link:hover {
    color: #d26321;
    text-decoration: underline;
}

/* Category toggles */
#jvz-consent-categories {
    margin-bottom: 18px;
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 4px 0;
    overflow: hidden;
}

.jvz-consent-category {
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
    transition: background 0.15s ease;
}

.jvz-consent-category:hover {
    background: #f3f3f3;
}

.jvz-consent-category:last-child {
    border-bottom: none;
}

.jvz-consent-category label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    color: #383c44;
    margin: 0;
}

.jvz-consent-category input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0 8px 0 0;
    accent-color: #eb6f25;
    cursor: pointer;
}

.jvz-consent-desc {
    display: block;
    margin: 3px 0 0 24px;
    font-size: 11px;
    color: #999;
    line-height: 1.4;
}

.jvz-consent-badge {
    display: inline-block;
    background: #eb6f25;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: 1px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Buttons */
.jvz-consent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.jvz-consent-btn {
    padding: 11px 24px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-family: inherit;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.2px;
}

.jvz-consent-btn-primary {
    background: #eb6f25;
    color: #fff;
    box-shadow: 0 3px 6px rgba(235, 111, 37, 0.25);
}

.jvz-consent-btn-primary:hover {
    background: #d26321;
    box-shadow: 0 5px 12px rgba(235, 111, 37, 0.35);
    transform: translateY(-1px);
}

.jvz-consent-btn-secondary {
    background: #fff;
    color: #eb6f25;
    border: 1px solid #eb6f25;
    padding: 10px 24px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.jvz-consent-btn-secondary:hover {
    background: #fff5ee;
    color: #d26321;
    border-color: #d26321;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.jvz-consent-btn-deny {
    color: #999;
    background: none;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

.jvz-consent-btn-deny:hover {
    color: #eb6f25;
}

/* Responsive */
@media (max-width: 600px) {
    #jvz-consent-overlay {
        padding: 0;
    }

    #jvz-consent-banner {
        padding: 20px 18px 18px;
        border-radius: 12px 12px 0 0;
        max-width: 100%;
    }

    .jvz-consent-header h2 {
        font-size: 16px;
    }

    .jvz-consent-actions {
        flex-direction: column;
        gap: 8px;
    }

    .jvz-consent-btn {
        width: 100%;
        padding: 12px 20px;
    }

    .jvz-consent-btn-deny {
        margin-left: 0;
        width: auto;
    }
}
