/* Consent checkbox (privacy policy + terms of use) - checkout & registration */
.consent-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 14px 0;
    font-size: 13px;
    line-height: 1.6;
}

.consent-row .consent-checkbox {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    cursor: pointer;
    accent-color: #0155db;
}

.consent-row .consent-label {
    margin: 0;
    cursor: pointer;
    color: #374151;
}

.consent-row .consent-label a {
    color: #0155db;
    text-decoration: underline;
    font-weight: 600;
}

.consent-row .consent-label a:hover {
    color: #004da04e;
}

.consent-row .consent-error {
    flex: 1 0 100%;
    color: #ef4444;
    font-size: 12px;
    font-weight: 500;
}
