/* Gift order UI — product choice, checkout fields, confirmation blocks */

.ar-gift-choice {
	margin: 0 0 1em;
	padding: 1.25em;
	border: 1px solid #E8E6E0;
	border-radius: 12px;
	background: #F5F4F0;
}

.ar-gift-choice__title {
	display: block;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: #0A1A3F;
	margin-bottom: 12px;
}

.ar-gift-choice__options {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ar-gift-choice__option {
	flex: 1;
	min-width: 140px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	border: 1px solid var(--ar-platinum-glow, #E8E6E0);
	border-radius: var(--ar-radius-sm, 8px);
	background: var(--ar-ether, #F5F4F0);
	cursor: pointer;
	font-family: var(--ar-font-body, "Manrope", sans-serif);
	font-size: 0.9rem;
	color: var(--ar-twilight, #162847);
	transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.ar-gift-choice__icon {
	display: flex;
	line-height: 0;
	color: var(--ar-azure, #2E5AA8);
	flex-shrink: 0;
}

.ar-gift-choice__option:has(input:checked) {
	border-color: var(--ar-midnight, #0A1A3F);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(46, 90, 168, 0.12);
}

.ar-gift-choice__option input {
	margin: 0;
	accent-color: #0A1A3F;
}

.ar-gift-choice__hint {
	margin: 10px 0 0;
	font-size: 0.85em;
	color: #5C6577;
}

.ar-gift-section {
	margin-top: 1.5em;
	padding: 1.25em;
	border: 1px solid #E8E6E0;
	border-radius: 12px;
	background: #F5F4F0;
}

.ar-gift-section h3 {
	margin-top: 0;
}

.ar-gift-section h3 label {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.25rem;
	color: #0A1A3F;
	cursor: pointer;
}

.ar-gift-fields.is-hidden {
	display: none;
}

.ar-gift-confirm {
	margin: 1em 0;
	padding: 1.25em;
	border: 1px solid #E8E6E0;
	border-radius: 12px;
	background: #F5F4F0;
}

.ar-gift-confirm h2 {
	margin-top: 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.35rem;
	color: #0A1A3F;
}

.ar-gift-confirm p {
	margin: 0 0 0.75em;
	font-size: 0.95rem;
	line-height: 1.6;
}

.ar-gift-confirm p:last-child {
	margin-bottom: 0;
}

.ar-admin-gift {
	margin-top: 10px;
	padding: 12px 14px;
	background: #fff7e6;
	border: 1px solid #f0c36d;
	border-radius: 8px;
}

.ar-admin-gift p {
	margin: 0 0 6px;
	font-size: 13px;
	line-height: 1.5;
}

.ar-admin-gift p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.ar-gift-choice__options {
		flex-direction: column;
	}
	.ar-gift-choice__option {
		width: 100%;
		min-width: 0;
	}
}

