/**
 * OAFC Calculator — Base CSS
 *
 * Design principles:
 *  - Scoped to .oafc-calc to avoid conflicting with the active WordPress theme.
 *  - Mobile-first: base rules assume narrow screen, media queries widen.
 *  - All colors and spacing exposed as CSS custom properties so dark mode
 *    (Phase 4) and admin overrides (Phase 5) can change them without
 *    touching this file.
 *  - BEM-style class names with low specificity. No element selectors used
 *    outside the scope, so theme styles win where we don't care and lose
 *    where we do.
 *  - Touch targets ≥44px tall on mobile (WCAG / Apple HIG guidance).
 */

.oafc-calc {
	/* Theme-able tokens. Change these to retheme without touching layout. */
	--oafc-bg:            #ffffff;
	--oafc-surface:       #f7f7f8;
	--oafc-surface-alt:   #ececef;
	--oafc-border:        #d4d4d8;
	--oafc-border-strong: #a1a1aa;
	--oafc-text:          #18181b;
	--oafc-text-muted:    #52525b;
	--oafc-accent:        #ea580c;        /* Warm orange — air-fryer-y */
	--oafc-accent-hover:  #c2410c;
	--oafc-accent-text:   #ffffff;
	--oafc-focus-ring:    #fb923c;
	--oafc-success:       #16a34a;
	--oafc-warning:       #d97706;
	--oafc-error:         #dc2626;

	--oafc-radius:        8px;
	--oafc-radius-sm:     6px;
	--oafc-gap:           1rem;
	--oafc-gap-sm:        0.5rem;
	--oafc-gap-lg:        1.5rem;
	--oafc-input-height:  44px;          /* Min touch target. */

	--oafc-font:          -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--oafc-font-size:     16px;
	--oafc-line-height:   1.5;

	/* Container styling. */
	box-sizing: border-box;
	max-width: 720px;
	margin: 0 auto;
	padding: var(--oafc-gap-lg);
	background: var(--oafc-bg);
	color: var(--oafc-text);
	font-family: var(--oafc-font);
	font-size: var(--oafc-font-size);
	line-height: var(--oafc-line-height);
	border: 1px solid var(--oafc-border);
	border-radius: var(--oafc-radius);
}

/* Scoped reset — neutralize theme bleed inside our component only. */
.oafc-calc *,
.oafc-calc *::before,
.oafc-calc *::after {
	box-sizing: border-box;
}

.oafc-calc fieldset {
	border: none;
	margin: 0;
	padding: 0;
	min-width: 0;        /* Fix Chrome flexbox overflow with fieldsets. */
}

.oafc-calc legend {
	padding: 0;
}

/* ============================================================
   Direction toggle (Feature #1)
   Matches the visual language of oven-type and strength pills:
   - Inactive state: surface background, dark text, subtle border.
   - Hover (inactive): darker surface for clear feedback.
   - Active state: orange (accent) background, white (accent-text) text.
   ============================================================ */

.oafc-calc__direction {
	display: flex;
	flex-wrap: wrap;
	gap: var(--oafc-gap-sm);
	margin-bottom: var(--oafc-gap-lg);
}

.oafc-calc__dir-btn {
	flex: 1;
	min-width: 0;
	min-height: var(--oafc-input-height);
	padding: 0.5rem 1rem;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--oafc-text);
	background: var(--oafc-surface);
	border: 1px solid var(--oafc-border);
	border-radius: var(--oafc-radius-sm);
	cursor: pointer;
	transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.oafc-calc__dir-btn:hover {
	background: var(--oafc-surface-alt);
	border-color: var(--oafc-border-strong);
	color: var(--oafc-text);
}

.oafc-calc__dir-btn--active {
	background: var(--oafc-accent);
	color: var(--oafc-accent-text);
	border-color: var(--oafc-accent);
}

/* When active AND hovered: stay on the accent palette but go to the
   darker hover shade so the feedback is still visible. */
.oafc-calc__dir-btn--active:hover {
	background: var(--oafc-accent-hover);
	border-color: var(--oafc-accent-hover);
	color: var(--oafc-accent-text);
}

/* ============================================================
   Form fields — shared structure
   ============================================================ */

.oafc-calc__form {
	display: flex;
	flex-direction: column;
	gap: var(--oafc-gap-lg);
}

.oafc-calc__field {
	display: flex;
	flex-direction: column;
	gap: var(--oafc-gap-sm);
}

.oafc-calc__legend {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--oafc-text);
	text-transform: uppercase;
	letter-spacing: 0.025em;
}

.oafc-calc__input-label {
	font-size: 0.875rem;
	color: var(--oafc-text-muted);
}

/* ============================================================
   Unit toggle (temp F/C/Gas — Feature #4)
   Visually a segmented control — inactive buttons share a surface
   container; active button "rises" to bg color; hover darkens.
   ============================================================ */

.oafc-calc__unit-toggle {
	display: inline-flex;
	gap: 4px;
	padding: 4px;
	background: var(--oafc-surface);
	border-radius: var(--oafc-radius);
	width: fit-content;
}

.oafc-calc__unit-btn {
	min-height: 36px;
	padding: 0.375rem 0.875rem;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--oafc-text-muted);
	background: transparent;
	border: none;
	border-radius: var(--oafc-radius-sm);
	cursor: pointer;
	transition: background-color 120ms ease, color 120ms ease;
}

/* Inactive hover: full text color + alt surface gives clear feedback. */
.oafc-calc__unit-btn:hover {
	background: var(--oafc-surface-alt);
	color: var(--oafc-text);
}

.oafc-calc__unit-btn--active {
	background: var(--oafc-bg);
	color: var(--oafc-text);
	box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.08 );
}

/* Active hover: subtle border-like shadow lift so the active state
   still feels responsive to mouseover without losing contrast. */
.oafc-calc__unit-btn--active:hover {
	background: var(--oafc-bg);
	box-shadow: 0 2px 4px rgba( 0, 0, 0, 0.15 );
}

/* ============================================================
   Preset temp buttons (Feature #5)
   ============================================================ */

.oafc-calc__preset-temps {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--oafc-gap-sm);
}

.oafc-calc__preset-label {
	font-size: 0.875rem;
	color: var(--oafc-text-muted);
}

.oafc-calc__preset-btn {
	min-height: var(--oafc-input-height);
	min-width: 56px;
	padding: 0.5rem 0.875rem;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--oafc-text);
	background: var(--oafc-surface);
	border: 1px solid var(--oafc-border);
	border-radius: var(--oafc-radius-sm);
	cursor: pointer;
	transition: background-color 120ms ease, border-color 120ms ease;
}

.oafc-calc__preset-btn:hover {
	background: var(--oafc-surface-alt);
	border-color: var(--oafc-border-strong);
}

.oafc-calc__preset-btn--active {
	background: var(--oafc-accent);
	color: var(--oafc-accent-text);
	border-color: var(--oafc-accent);
}

/* Active + hover: stay on accent palette but darken so the cursor
   still sees a state change. */
.oafc-calc__preset-btn--active:hover {
	background: var(--oafc-accent-hover);
	border-color: var(--oafc-accent-hover);
	color: var(--oafc-accent-text);
}

/* ============================================================
   Inputs (text)
   ============================================================ */

.oafc-calc__input-row {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.oafc-calc__input {
	height: var(--oafc-input-height);
	padding: 0 0.875rem;
	font-family: inherit;
	font-size: 1rem;
	color: var(--oafc-text);
	background: var(--oafc-bg);
	border: 1px solid var(--oafc-border);
	border-radius: var(--oafc-radius-sm);
	transition: border-color 120ms ease, box-shadow 120ms ease;
	width: 100%;
}

.oafc-calc__input:hover {
	border-color: var(--oafc-border-strong);
}

.oafc-calc__input:focus {
	outline: none;
	border-color: var(--oafc-accent);
	box-shadow: 0 0 0 3px rgba( 234, 88, 12, 0.2 );
}

.oafc-calc__input--temp,
.oafc-calc__input--time {
	max-width: 8rem;
}

/* Time inputs row — single, range mode (two inputs + separator + toggle button). */
.oafc-calc__time-inputs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--oafc-gap-sm);
}

.oafc-calc__time-separator {
	font-size: 1.125rem;
	color: var(--oafc-text-muted);
	padding: 0 0.25rem;
}

.oafc-calc__range-toggle {
	min-height: var(--oafc-input-height);
	padding: 0.5rem 0.875rem;
	font-family: inherit;
	font-size: 0.875rem;
	color: var(--oafc-text-muted);
	background: transparent;
	border: 1px dashed var(--oafc-border-strong);
	border-radius: var(--oafc-radius-sm);
	cursor: pointer;
	transition: color 120ms ease, border-color 120ms ease;
}

.oafc-calc__range-toggle:hover {
	background: var(--oafc-surface);
	color: var(--oafc-text);
	border-color: var(--oafc-text-muted);
}

.oafc-calc__range-toggle[aria-pressed="true"] {
	color: var(--oafc-accent);
	border-style: solid;
	border-color: var(--oafc-accent);
}

.oafc-calc__range-toggle[aria-pressed="true"]:hover {
	background: var(--oafc-accent);
	color: var(--oafc-accent-text);
	border-color: var(--oafc-accent-hover);
}

/* ============================================================
   Radios (oven type, strength — Features #3, #7)
   ============================================================ */

.oafc-calc__radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: var(--oafc-gap-sm);
}

.oafc-calc__radio {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	min-height: var(--oafc-input-height);
	padding: 0.5rem 0.875rem;
	background: var(--oafc-surface);
	border: 1px solid var(--oafc-border);
	border-radius: var(--oafc-radius-sm);
	cursor: pointer;
	transition: background-color 120ms ease, border-color 120ms ease;
}

.oafc-calc__radio:hover {
	background: var(--oafc-surface-alt);
	border-color: var(--oafc-border-strong);
}

.oafc-calc__radio:has( input:checked ) {
	background: var(--oafc-accent);
	border-color: var(--oafc-accent);
	color: var(--oafc-accent-text);
}

/* Active + hover: keep accent palette, darken to give feedback. */
.oafc-calc__radio:has( input:checked ):hover {
	background: var(--oafc-accent-hover);
	border-color: var(--oafc-accent-hover);
	color: var(--oafc-accent-text);
}

.oafc-calc__radio:has( input:focus-visible ) {
	box-shadow: 0 0 0 3px rgba( 234, 88, 12, 0.3 );
}

.oafc-calc__radio input[type="radio"] {
	/* Hide native input; the label styling provides the affordance.
	   Keep it visible for non-:has() browsers (fallback below). */
	margin: 0;
}

.oafc-calc__radio-label {
	font-size: 0.9375rem;
	font-weight: 500;
	user-select: none;
}

/* Fallback for browsers without :has() support (Firefox <121, older Safari).
   Keeps radios usable but doesn't show the active styling — acceptable
   degradation since the form still works. */
@supports not selector( :has( * ) ) {
	.oafc-calc__radio input[type="radio"] {
		appearance: auto;
	}
}

/* ============================================================
   Select (food category — Feature #2)
   ============================================================ */

.oafc-calc__select {
	height: var(--oafc-input-height);
	padding: 0 0.875rem;
	font-family: inherit;
	font-size: 1rem;
	color: var(--oafc-text);
	background: var(--oafc-bg);
	border: 1px solid var(--oafc-border);
	border-radius: var(--oafc-radius-sm);
	cursor: pointer;
	width: 100%;
	max-width: 24rem;
	transition: border-color 120ms ease, box-shadow 120ms ease;
}

.oafc-calc__select:hover {
	border-color: var(--oafc-border-strong);
}

.oafc-calc__select:focus {
	outline: none;
	border-color: var(--oafc-accent);
	box-shadow: 0 0 0 3px rgba( 234, 88, 12, 0.2 );
}

/* ============================================================
   Checkbox (frozen — Feature #8)
   ============================================================ */

.oafc-calc__checkbox {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	min-height: var(--oafc-input-height);
	cursor: pointer;
	user-select: none;
}

.oafc-calc__checkbox input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0;
	accent-color: var(--oafc-accent);
	cursor: pointer;
}

.oafc-calc__checkbox-label {
	font-size: 1rem;
	color: var(--oafc-text);
}

/* ============================================================
   Result card (Features #9, #10, #11)
   ============================================================ */

.oafc-calc__result {
	margin-top: var(--oafc-gap-lg);
	padding: var(--oafc-gap-lg);
	background: var(--oafc-surface);
	border-radius: var(--oafc-radius);
	border: 1px solid var(--oafc-border);
	min-height: 80px;
}

/* Empty / partial state — single message + a Reset button. */
.oafc-calc__result-empty-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--oafc-gap);
}

.oafc-calc__result-empty {
	margin: 0;
	color: var(--oafc-text-muted);
	font-size: 0.9375rem;
	text-align: center;
}

/* Full result card — vertical stack of label, temp, time, check-at, USDA, actions. */
.oafc-calc__result-card {
	display: flex;
	flex-direction: column;
	gap: var(--oafc-gap);
}

.oafc-calc__result-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--oafc-text-muted);
}

.oafc-calc__result-temp-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.5rem;
}

.oafc-calc__result-temp {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--oafc-accent);
	line-height: 1.1;
}

.oafc-calc__result-temp-alt {
	font-size: 1rem;
	font-weight: 500;
	color: var(--oafc-text-muted);
}

.oafc-calc__result-time {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--oafc-text);
	line-height: 1.2;
}

/* "Check at" callout — the single most important UX element on the card.
   Visually distinct (warm yellow tone, left border, slightly raised). */
.oafc-calc__result-check-at {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 0.875rem;
	background: rgba( 217, 119, 6, 0.1 );
	border-left: 3px solid var(--oafc-warning);
	border-radius: 0 var(--oafc-radius-sm) var(--oafc-radius-sm) 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--oafc-warning);
	width: fit-content;
	max-width: 100%;
}

.oafc-calc__result-check-at-icon {
	font-size: 1.125rem;
	line-height: 1;
}

/* USDA section — only shown when food category is "proteins". */
.oafc-calc__result-usda {
	margin-top: 0.25rem;
	padding-top: var(--oafc-gap);
	border-top: 1px solid var(--oafc-border);
}

.oafc-calc__result-usda-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--oafc-text);
	margin-bottom: 0.5rem;
}

.oafc-calc__result-usda-list {
	margin: 0;
	padding-left: 1.25rem;
	font-size: 0.9375rem;
	color: var(--oafc-text-muted);
	list-style: disc;
}

.oafc-calc__result-usda-list li {
	margin: 0.125rem 0;
}

.oafc-calc__usda-name {
	color: var(--oafc-text);
	font-weight: 500;
}

.oafc-calc__usda-temp {
	color: var(--oafc-text-muted);
}

/* ============================================================
   Action buttons (Features #12 Copy, #17 Reset)
   ============================================================ */

.oafc-calc__result-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--oafc-gap-sm);
	margin-top: 0.25rem;
	padding-top: var(--oafc-gap);
	border-top: 1px solid var(--oafc-border);
}

/* When shown in the empty state, no border on top — the empty wrap centers things. */
.oafc-calc__result-actions--empty {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}

.oafc-calc__action-btn {
	min-height: 40px;
	padding: 0.5rem 1rem;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--oafc-text);
	background: var(--oafc-bg);
	border: 1px solid var(--oafc-border);
	border-radius: var(--oafc-radius-sm);
	cursor: pointer;
	transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.oafc-calc__action-btn:hover {
	background: var(--oafc-surface-alt);
	border-color: var(--oafc-border-strong);
	color: var(--oafc-text);
}

.oafc-calc__action-btn--primary {
	background: var(--oafc-accent);
	color: var(--oafc-accent-text);
	border-color: var(--oafc-accent);
}

.oafc-calc__action-btn--primary:hover {
	background: var(--oafc-accent-hover);
	border-color: var(--oafc-accent-hover);
	color: var(--oafc-accent-text);
}

/* Copy feedback states — set by actions.js for ~1.8s after a click. */
.oafc-calc__action-btn--success {
	background: var(--oafc-success);
	color: #ffffff;
	border-color: var(--oafc-success);
}

.oafc-calc__action-btn--error {
	background: var(--oafc-error);
	color: #ffffff;
	border-color: var(--oafc-error);
}

/* ============================================================
   Focus rings (accessibility)
   ============================================================ */

.oafc-calc button:focus-visible,
.oafc-calc input:focus-visible,
.oafc-calc select:focus-visible {
	outline: 2px solid var(--oafc-focus-ring);
	outline-offset: 2px;
}

/* ============================================================
   Responsive — wider screens get more breathing room
   ============================================================ */

@media (min-width: 640px) {
	.oafc-calc {
		padding: 2rem;
	}

	.oafc-calc__radio-group {
		gap: var(--oafc-gap-sm);
	}
}

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
	.oafc-calc *,
	.oafc-calc *::before,
	.oafc-calc *::after {
		transition-duration: 0ms !important;
		animation-duration: 0ms !important;
	}
}

/* ============================================================
   Theme toggle button (Feature #16) — floats top-right of the calculator
   ============================================================ */

.oafc-calc {
	position: relative;
}

.oafc-calc__theme-toggle {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 36px;
	height: 36px;
	padding: 0;
	font-size: 1.125rem;
	line-height: 1;
	color: var(--oafc-text);
	background: var(--oafc-surface);
	border: 1px solid var(--oafc-border);
	border-radius: 50%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 120ms ease, border-color 120ms ease;
	z-index: 1;
}

.oafc-calc__theme-toggle:hover {
	background: var(--oafc-surface-alt);
	border-color: var(--oafc-border-strong);
}

/* ============================================================
   History list (Feature #15)
   ============================================================ */

.oafc-calc__history {
	margin-top: var(--oafc-gap-lg);
	padding: var(--oafc-gap);
	background: var(--oafc-surface);
	border-radius: var(--oafc-radius);
	border: 1px solid var(--oafc-border);
}

.oafc-calc__history-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--oafc-gap-sm);
	margin-bottom: var(--oafc-gap-sm);
}

.oafc-calc__history-title {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	color: var(--oafc-text);
}

.oafc-calc__history-clear {
	padding: 0.25rem 0.625rem;
	font-family: inherit;
	font-size: 0.8125rem;
	color: var(--oafc-text-muted);
	background: transparent;
	border: 1px solid var(--oafc-border);
	border-radius: var(--oafc-radius-sm);
	cursor: pointer;
	transition: color 120ms ease, border-color 120ms ease;
}

.oafc-calc__history-clear:hover {
	background: rgba( 220, 38, 38, 0.08 );
	color: var(--oafc-error);
	border-color: var(--oafc-error);
}

.oafc-calc__history-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.oafc-calc__history-item {
	margin: 0;
	padding: 0;
}

.oafc-calc__history-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--oafc-gap-sm);
	width: 100%;
	padding: 0.625rem 0.875rem;
	font-family: inherit;
	font-size: 0.9375rem;
	color: var(--oafc-text);
	background: var(--oafc-bg);
	border: 1px solid var(--oafc-border);
	border-radius: var(--oafc-radius-sm);
	cursor: pointer;
	text-align: left;
	transition: background-color 120ms ease, border-color 120ms ease;
}

.oafc-calc__history-btn:hover {
	background: var(--oafc-surface-alt);
	border-color: var(--oafc-border-strong);
	color: var(--oafc-text);
}

.oafc-calc__history-summary {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.oafc-calc__history-time {
	flex-shrink: 0;
	font-size: 0.8125rem;
	color: var(--oafc-text-muted);
}

/* ============================================================
   Dark mode (Feature #16) — overrides every theme-able token
   ============================================================ */

.oafc-calc.oafc-dark {
	--oafc-bg:            #1a1a1c;
	--oafc-surface:       #25252a;
	--oafc-surface-alt:   #2f2f35;
	--oafc-border:        #3f3f46;
	--oafc-border-strong: #52525b;
	--oafc-text:          #f4f4f5;
	--oafc-text-muted:    #a1a1aa;
	--oafc-accent:        #fb923c;        /* Lighter orange for dark backgrounds */
	--oafc-accent-hover:  #fdba74;
	--oafc-accent-text:   #18181b;
	--oafc-focus-ring:    #fdba74;
	--oafc-success:       #22c55e;
	--oafc-warning:       #fbbf24;
	--oafc-error:         #ef4444;
}

/* Dark-mode focus rings get extra contrast on the dark background. */
.oafc-calc.oafc-dark button:focus-visible,
.oafc-calc.oafc-dark input:focus-visible,
.oafc-calc.oafc-dark select:focus-visible {
	outline-color: var(--oafc-focus-ring);
}

/* The "check at" callout uses an rgba() background — adjust for dark mode
   so the warning tint still reads correctly against the dark surface. */
.oafc-calc.oafc-dark .oafc-calc__result-check-at {
	background: rgba( 251, 191, 36, 0.15 );
}

/* Native checkbox accent color follows our token in dark mode too. */
.oafc-calc.oafc-dark .oafc-calc__checkbox input[type="checkbox"] {
	accent-color: var(--oafc-accent);
}

/* ============================================================
   Print stylesheet (Feature #14) — hide everything except the result
   ============================================================ */

@media print {
	/* Hide the WordPress site chrome (theme handles most of this, but
	   we belt-and-suspenders the bits inside our component). */
	.oafc-calc__theme-toggle,
	.oafc-calc__direction,
	.oafc-calc__form,
	.oafc-calc__history,
	.oafc-calc__result-actions {
		display: none !important;
	}

	/* Strip the calculator's container chrome — borders, background, padding —
	   so the printed page is just clean text. */
	.oafc-calc {
		max-width: none;
		margin: 0;
		padding: 0;
		background: transparent !important;
		border: none !important;
		color: #000 !important;
	}

	.oafc-calc__result {
		margin: 0;
		padding: 0;
		background: transparent !important;
		border: none !important;
	}

	/* Make the result text print-friendly: pure black ink, larger. */
	.oafc-calc__result-card {
		gap: 0.5rem;
	}

	.oafc-calc__result-label {
		color: #000 !important;
		font-size: 0.875rem;
	}

	.oafc-calc__result-temp {
		color: #000 !important;
		font-size: 2rem;
	}

	.oafc-calc__result-temp-alt,
	.oafc-calc__result-time,
	.oafc-calc__result-usda-label,
	.oafc-calc__usda-name,
	.oafc-calc__usda-temp,
	.oafc-calc__result-usda-list {
		color: #000 !important;
	}

	/* Print the check-at as a plain text line — no fancy callout. */
	.oafc-calc__result-check-at {
		background: transparent !important;
		border-left: none !important;
		padding: 0 !important;
		color: #000 !important;
		font-weight: 700;
	}

	.oafc-calc__result-check-at-icon {
		display: none;
	}

	.oafc-calc__result-usda {
		border-top: 1px solid #000 !important;
	}
}
