/* Savelli Religious - Shipping Form Styles */

:root {
    --color-primary: #072637;
    --color-hover: #136591;
    --color-footer: #004a72;
    --color-alt-bg: #f5f5f5;
    --color-error: #D02F2E;
    --color-success: #478947;
}

body {
    font-family: 'Manrope', sans-serif;
}

.font-heading {
    font-family: 'Frank Ruhl Libre', serif;
}

.font-body {
    font-family: 'Manrope', sans-serif;
}

/* Smooth transitions */
input, select, textarea, button, a {
    transition: all 0.2s ease;
}

/* Focus styles */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(19, 101, 145, 0.2);
}

/* Goods table row hover */
#goodsTable tbody tr:hover {
    background-color: #fafafa;
}

/* Remove number input spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

/* Checkbox styling */
input[type="checkbox"] {
    accent-color: var(--color-primary);
}

/* Print styles */
@media print {
    header, footer, button, .no-print { display: none !important; }
    body { font-size: 12pt; }
    section { break-inside: avoid; }
}
