/* ── Warranty Page ─────────────────────────────────────────────────────── */
.ssh-warranty-section {
    padding: 56px 0 72px;
    background: #f8f9fa;
    min-height: 60vh;
}

.ssh-warranty-card {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    padding: 40px 44px 44px;
}

.ssh-warranty-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.ssh-warranty-card-header h2 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111827;
    margin: 0 0 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ssh-warranty-card-header p {
    font-size: 13px;
    color: #6b7280;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Fields ── */
.ssh-wf-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ssh-wf-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ssh-wf-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    font-family: 'Inter', sans-serif;
}

.ssh-wf-label span {
    color: #ef4444;
    margin-left: 2px;
}

.ssh-wf-input,
.ssh-wf-select {
    width: 100%;
    height: 42px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #111827;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.ssh-wf-input:focus,
.ssh-wf-select:focus {
    border-color: #0e9e8e;
    box-shadow: 0 0 0 3px rgba(14,158,142,0.12);
}

.ssh-wf-input.ssh-err-field,
.ssh-wf-select.ssh-err-field {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}

.ssh-wf-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.ssh-wf-err {
    font-size: 11.5px;
    color: #ef4444;
    display: none;
    margin-top: 2px;
}

/* ── Submit button ── */
.ssh-wf-submit-row {
    margin-top: 8px;
}

.ssh-wf-submit,
.ssh-wf-submit:hover,
.ssh-wf-submit:focus,
.ssh-wf-submit:active,
.ssh-wf-submit:visited {
    background: #0e9e8e !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 10px 36px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: none !important;
    text-shadow: none !important;
}

.ssh-wf-submit:disabled { opacity: 0.65 !important; cursor: not-allowed; }

.ssh-wf-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ssh-spin 0.7s linear infinite;
}
@keyframes ssh-spin { to { transform: rotate(360deg); } }
.ssh-wf-spinner.active { display: block; }

/* ── Alerts ── */
.ssh-wf-alert {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-top: 16px;
}
.ssh-wf-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}
.ssh-wf-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

@media (max-width: 600px) {
    .ssh-warranty-card { padding: 28px 20px 32px; }
}
