/* Marketing Consent Styles */
.marketing-consent {
    margin: 25px 0;
    padding: 20px;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-color);
    font-size: 14px;
    font-weight: bold;
}

.consent-text {
    flex: 1;
    color: var(--text-secondary);
}

/* Form hint styles */
.form-hint {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 6px;
    font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .marketing-consent {
        margin: 20px 0;
        padding: 16px;
    }
    
    .checkbox-wrapper {
        font-size: 13px;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .form-hint {
        font-size: 11px;
    }
}