/**
 * Cirrusly Order Fields
 *
 * Styles for gift message and personalization fields on product pages.
 * Palette and type scale follow atmospheric.css / theme.json conventions.
 */

/* ── Container ────────────────────────────────────────────────────────────── */

.cirrusly-order-fields {
	margin-block: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

/* ── Individual field section ─────────────────────────────────────────────── */

.cirrusly-field-section {
	border-top: 1px solid #DBE6EE;
	padding-top: 1.25rem;
}

.cirrusly-field-question {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #12123F;
	margin: 0 0 0.75rem;
	letter-spacing: 0.01em;
}

/* ── Yes / No toggle ─────────────────────────────────────────────────────── */

.cirrusly-toggle-group {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.cirrusly-toggle-option {
	display: flex;
	align-items: center;
	cursor: pointer;
}

/* Hide the native radio; the <span> acts as the visible pill */
.cirrusly-toggle-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.cirrusly-toggle-option span {
	display: inline-block;
	padding: 0.35rem 1rem;
	border: 1.5px solid #DBE6EE;
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #12123F;
	background: #fff;
	transition: border-color 0.15s, background 0.15s, color 0.15s;
	user-select: none;
}

.cirrusly-toggle-option input[type="radio"]:checked + span {
	border-color: #0945c8;
	background: #0945c8;
	color: #fff;
}

.cirrusly-toggle-option:hover span {
	border-color: #0945c8;
}

.cirrusly-toggle-option input[type="radio"]:focus-visible + span {
	outline: 2px solid #0945c8;
	outline-offset: 2px;
}

/* ── Reveal panel ─────────────────────────────────────────────────────────── */

.cirrusly-field-reveal {
	margin-top: 1rem;
}

.cirrusly-field-reveal[hidden] {
	display: none;
}

/* ── Label ────────────────────────────────────────────────────────────────── */

.cirrusly-label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #12123F;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.4rem;
}

/* ── Textarea ─────────────────────────────────────────────────────────────── */

.cirrusly-textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	border: 1.5px solid #DBE6EE;
	border-radius: 4px;
	background: #F1F4FA;
	font-family: inherit;
	font-size: 0.9375rem;
	color: #12123F;
	resize: vertical;
	transition: border-color 0.15s, background 0.15s;
	box-sizing: border-box;
}

.cirrusly-textarea:focus {
	outline: none;
	border-color: #0945c8;
	background: #fff;
}

.cirrusly-textarea::placeholder {
	color: #8899aa;
}

/* ── Helper note ──────────────────────────────────────────────────────────── */

.cirrusly-field-note {
	font-size: 0.8125rem;
	color: #5a6a7a;
	margin: 0.4rem 0 0;
	line-height: 1.4;
}
