/**
 * Petcover checkout — universal design tokens (scoped under .petcover-chk).
 * Override in theme: .petcover-chk { --pc-chk-ink: #...; }
 */

.petcover-chk {
	--pc-chk-bg: transparent;
	--pc-chk-surface: #ffffff;
	--pc-chk-ink: #1a3d2e;
	--pc-chk-ink-soft: #2d5a45;
	--pc-chk-muted: #5c7268;
	--pc-chk-line: #1a3d2e;
	--pc-chk-accent: #e6783e;
	--pc-chk-accent-hover: #d66a32;
	--pc-chk-success: #2d6a4f;
	--pc-chk-success-bg: #d8f0e4;
	--pc-chk-radius: 12px;
	--pc-chk-radius-sm: 5px;
	--pc-chk-border: 1px solid var(--pc-chk-ink);
	--pc-chk-font: inherit;

	box-sizing: border-box;
	max-width: 720px;
	margin: 0 auto;
	padding: 0;
	background: transparent;
	color: var(--pc-chk-ink);
	font-family: var(--pc-chk-font);
	font-size: 1rem;
	line-height: 1.45;
}

.petcover-chk *,
.petcover-chk *::before,
.petcover-chk *::after {
	box-sizing: border-box;
}

.petcover-chk__alert {
	display: none;
	padding: 0.85rem 1rem;
	margin: 0 0 1.25rem;
	border-radius: var(--pc-chk-radius-sm);
	font-size: 0.9375rem;
}

.petcover-chk__alert.is-visible {
	display: block;
}

.petcover-chk__alert--error {
	background: #fde8e8;
	border: 1px solid #f5c2c7;
	color: #842029;
}

/* ----- Steps ----- */
.petcover-chk__step[hidden] {
	display: none !important;
}

/* ----- Typography ----- */
.petcover-chk__title {
	margin: 0 0 1.25rem;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--pc-chk-ink);
}

.checkout-billing-contract-data-heading {
	display: block;
	margin: 0 0 25px;
	font-size: 16px;
	font-weight: 400;
}

.checkout-billing-contract-data-heading strong {
	font-weight: 700;
}

.petcover-chk__title strong {
	font-weight: 700;
}

.petcover-chk__account-block {
	margin-bottom: 40px;
}

.petcover-chk__title--sub {
	margin-top: 2rem;
	font-size: 1.05rem;
}

.petcover-chk__hint {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	color: var(--pc-chk-success);
}

.petcover-chk__hint--success {
	color: var(--pc-chk-success);
}

.petcover-chk__footnote {
	margin: 0.75rem 0 0;
	font-size: 0.8125rem;
	color: var(--pc-chk-muted);
	text-align: center;
}

/* ----- Underline fields ----- */
.petcover-chk__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem 1.5rem;
	margin-bottom: 0.5rem;
}

.petcover-chk__grid[hidden] {
	display: none;
}

@media (max-width: 600px) {
	.petcover-chk__grid {
		grid-template-columns: 1fr;
	}
}

.petcover-chk__field {
	position: relative;
	display: flex;
	flex-direction: column;
	padding-top: 14px;
}

.petcover-chk__field--full {
	grid-column: 1 / -1;
}

.petcover-chk__input,
.petcover-chk select.petcover-chk__input {
	width: 100%;
	padding: 8px 0 !important;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: var(--global-palette1) !important;
	font: inherit;
	font-size: 16px;
	line-height: 1.5;
	outline: none !important;
}

.petcover-chk__input:focus,
.petcover-chk__input:focus-visible,
.petcover-chk__input:active,
.petcover-chk__input:hover,
.petcover-chk select.petcover-chk__input:focus,
.petcover-chk select.petcover-chk__input:focus-visible {
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	background: transparent !important;
	background-color: transparent !important;
}

.petcover-chk__input::placeholder {
	color: transparent;
}

.petcover-chk__input:-webkit-autofill,
.petcover-chk__input:-webkit-autofill:hover,
.petcover-chk__input:-webkit-autofill:focus,
.petcover-chk__input:-webkit-autofill:active {
	-webkit-text-fill-color: var(--global-palette1);
	-webkit-box-shadow: 0 0 0 1000px transparent inset !important;
	box-shadow: 0 0 0 1000px transparent inset !important;
	transition: background-color 9999s ease-in-out 0s;
	caret-color: var(--global-palette1);
}

.petcover-chk__label {
	position: absolute;
	top: 14px;
	left: 0;
	right: 0;
	margin: 0;
	padding: 8px 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--global-palette1);
	pointer-events: none;
	transition: top 0.2s ease, font-size 0.2s ease, padding 0.2s ease;
}

.petcover-chk__label .required {
	color: #c0392b;
}

.petcover-chk__field:focus-within .petcover-chk__label,
.petcover-chk__field:has(.petcover-chk__input:not(:placeholder-shown)) .petcover-chk__label {
	top: 0;
	padding: 0;
	font-size: 12px;
}

.petcover-chk__underline {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--pc-chk-line);
	pointer-events: none;
	transition: background-color 0.2s ease;
}

.petcover-chk__field:focus-within .petcover-chk__underline {
	background: var(--pc-chk-accent);
}

/* ----- Phone input (+48 prefix) ----- */
.petcover-chk__phone-wrap {
	position: relative;
}

.petcover-chk__phone-prefix {
	position: absolute;
	left: 6px;
	top: 50%;
	font: inherit;
	font-size: 16px;
	line-height: 1.5;
	color: var(--global-palette1);
	opacity: 0;
	transform: translate(-4px, -50%);
	transition: opacity 160ms ease, transform 160ms ease;
	pointer-events: none;
}

.petcover-chk__phone-wrap.is-prefix-visible .petcover-chk__phone-prefix,
.petcover-chk__phone-wrap:focus-within .petcover-chk__phone-prefix {
	opacity: 1;
	transform: translate(0, -50%);
}

.petcover-chk__phone-wrap .petcover-chk__input {
	padding-left: 3rem !important;
}

/* ----- Checkboxes (step 1) ----- */
.petcover-chk__consents-block {
	margin: 2rem 0 1.25rem;
}

.petcover-chk__check {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin-bottom: 1rem;
	cursor: pointer;
	font-size: 0.9375rem;
	color: var(--pc-chk-ink);
}

.petcover-chk__consents-block > .petcover-chk__check {
	margin-left: 20px;
}

.petcover-chk__check > span {
	font-weight: 600;
	color: var(--global-palette1);
}

.petcover-chk__check input {
	margin-top: 0.2rem;
	width: 1.05rem;
	height: 1.05rem;
	accent-color: var(--pc-chk-ink);
	flex-shrink: 0;
}

.petcover-chk__consent-item {
	display: block;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(26, 61, 46, 0.12);
}

.petcover-chk__consent-item:last-child {
	border-bottom: none;
}

.petcover-chk__consent-item .description {
	margin-top: 0.35rem;
	font-size: 0.8125rem;
	color: var(--pc-chk-muted);
	line-height: 1.4;
}

/* ----- Buttons ----- */
.petcover-chk__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.petcover-chk__actions--between {
	justify-content: space-between;
	align-items: center;
}

.petcover-chk__actions--between {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	gap: 32px;
	flex-wrap: nowrap;
	margin-top: 6rem;
}

#petcover-step-back-out,
#petcover-step-to-summary {
	width: 50%;
	border-width: 1px;
	border-style: solid;
}

#petcover-step-back-out {
	background: transparent;
	font-weight: 400;
}

#petcover-step-back-out:hover,
#petcover-step-back-out:active,
#petcover-step-back-out:focus,
#petcover-step-back-out:focus-visible {
	background: transparent;
	color: inherit;
	border-color: inherit;
	outline: none;
	box-shadow: none;
	transition: none;
}

.petcover-chk__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.35rem;
	border-radius: var(--pc-chk-radius-sm);
	font: inherit;
	font-weight: 600;
	font-size: 0.9375rem;
	cursor: pointer;
	text-decoration: none;
	border: 2px solid transparent;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.petcover-chk__btn--primary {
	background: var(--pc-chk-ink);
	color: #fff;
	border-color: var(--pc-chk-ink);
}

.petcover-chk__btn--primary:hover {
	background: var(--pc-chk-ink-soft);
	border-color: var(--pc-chk-ink-soft);
	color: #fff;
}

.petcover-chk__btn--outline {
	background: var(--pc-chk-surface);
	color: var(--pc-chk-ink);
	border-color: var(--pc-chk-ink);
}

.petcover-chk__btn--outline:hover {
	background: rgba(26, 61, 46, 0.06);
}

.petcover-chk__btn--ghost {
	background: transparent;
	color: var(--pc-chk-ink);
	border-color: var(--pc-chk-ink);
	margin-top: 0.5rem;
	font-weight: 600;
}

.petcover-chk__btn--ghost:hover {
	background: rgba(26, 61, 46, 0.06);
}

#petcover-scroll-to-consents.petcover-chk__btn {
	border-width: 1px;
	border-style: solid;
	border-color: var(--pc-chk-ink);
	font-weight: 400;
	font-size: 16px;
	padding: 10px 40px;
	transition: none;
}

#petcover-scroll-to-consents.petcover-chk__btn:hover,
#petcover-scroll-to-consents.petcover-chk__btn:active,
#petcover-scroll-to-consents.petcover-chk__btn:focus,
#petcover-scroll-to-consents.petcover-chk__btn:focus-visible {
	background: transparent;
	color: var(--pc-chk-ink);
	border-color: var(--pc-chk-ink);
	outline: none;
	box-shadow: none;
}

.petcover-chk__btn--cta {
	width: 100%;
	padding: 1rem 1.25rem;
	margin-top: 1.25rem;
	background: #f46108;
	color: #fff;
	border-color: #f46108;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.petcover-chk__btn--cta:hover {
	background: #f46108;
	border-color: #f46108;
	color: #fff;
}

/* ----- Step 2: cards ----- */
.petcover-chk__card {
	position: relative;
	background: var(--pc-chk-surface);
	border: var(--pc-chk-border);
	border-radius: var(--pc-chk-radius);
	padding: 50px;
	margin-bottom: 30px;
}

.petcover-chk__card-title--customer {
	margin-bottom: 0!important;
}

.petcover-chk__btn--edit {
	border-radius: 999px;
}

.petcover-chk__btn--edit:hover,
.petcover-chk__btn--edit:active,
.petcover-chk__btn--edit:focus,
.petcover-chk__btn--edit:focus-visible {
	background: #fff;
	color: var(--pc-chk-accent);
	border-color: var(--pc-chk-accent);
	outline: none;
	box-shadow: none;
	transition: none;
}

@media (max-width: 600px) {
	.petcover-chk__card {
		padding: 24px;
	}
}

.petcover-chk__card-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
}

.petcover-chk__card-title {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--pc-chk-ink);
}

.petcover-chk__card-title--customer {
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	margin-bottom: 0;
	letter-spacing: 0;
}

.petcover-chk__btn--edit {
	padding: 0.35rem 0.85rem;
	font-size: 0.8125rem;
	font-weight: 600;
	background: #fff;
	color: var(--pc-chk-accent);
	border: 2px solid var(--pc-chk-accent);
	border-radius: 999px;
	cursor: pointer;
}

.petcover-chk__btn--edit:hover,
.petcover-chk__btn--edit:active,
.petcover-chk__btn--edit:focus,
.petcover-chk__btn--edit:focus-visible {
	background: #fff;
	color: var(--pc-chk-accent);
	border-color: var(--pc-chk-accent);
	outline: none;
	box-shadow: none;
	transition: none;
}

.petcover-chk__dl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem 1.5rem;
	margin: 0;
	font-size: 0.9375rem;
}

.petcover-chk__dl--customer {
	column-gap: 0;
	row-gap: 1.25rem;
}

.petcover-chk__dl--customer .petcover-chk__dl-col--full {
	grid-column: 1 / -1;
}

.petcover-chk__dl--customer .petcover-chk__dl-item {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.petcover-chk__dl--customer .petcover-chk__dl-item dt {
	margin: 0;
	font-weight: 700;
	font-size: 16px;
	color: var(--pc-chk-ink);
}

.petcover-chk__dl--customer .petcover-chk__dl-item dt::after {
	content: ':';
}

.petcover-chk__dl--customer .petcover-chk__dl-item dd {
	margin: 0;
	font-size: 16px;
	color: var(--pc-chk-ink-soft);
}

.petcover-chk__dl--customer .petcover-chk__dl-item--stack {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}

.petcover-chk__dl--customer .petcover-chk__dl-item--stack dt::after {
	content: ':';
}

.petcover-chk__dl--customer .petcover-chk__dl-item--stack dd {
	margin-top: 0;
}

.petcover-chk__dl--customer .petcover-chk__dl-item-address {
	display: block!important;
}

.petcover-chk__dl--customer .petcover-chk__dl-item-address dd {
	white-space: pre-line;
}

@media (max-width: 600px) {
	.petcover-chk__dl {
		grid-template-columns: 1fr;
	}
}

.petcover-chk__dl dt {
	margin: 0;
	font-weight: 700;
	color: var(--pc-chk-ink);
}

.petcover-chk__dl dd {
	margin: 0.15rem 0 0;
	color: var(--pc-chk-ink-soft);
}

.petcover-chk__dl--single {
	grid-template-columns: 1fr;
}

.petcover-chk__dl--pet {
	gap: 0;
	font-size: 16px;
}

.petcover-chk__dl--pet > div {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.petcover-chk__dl--pet dt {
	margin: 0;
	font-weight: 700;
	font-size: 16px;
	color: var(--pc-chk-ink);
}

.petcover-chk__dl--pet dt::after {
	content: ':';
}

.petcover-chk__dl--pet dd {
	margin: 0;
	font-size: 16px;
	color: var(--pc-chk-ink-soft);
}

.petcover-chk__dl--dates {
	font-size: 16px;
	gap: 0;
}

.petcover-chk__dl--dates > div {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.petcover-chk__dl--dates dt {
	margin: 0;
	font-weight: 700;
	font-size: 16px;
	color: var(--pc-chk-ink);
}

.petcover-chk__dl--dates dt::after {
	content: ':';
}

.petcover-chk__dl--dates dd {
	margin: 0;
	font-size: 16px;
	color: var(--pc-chk-ink-soft);
}

.petcover-chk__pet-icon {
	display: inline-block;
	margin-right: 0.35rem;
	vertical-align: middle;
}

/* ----- Radio tiles (billing / payment) ----- */
.petcover-chk__group-label {
	display: block;
	margin: 1.5rem 0 0.65rem;
	font-size: 16px;
	color: var(--pc-chk-ink);
}

.petcover-chk__group-label--payment {
	margin-top: 30px;
}

.petcover-chk__tiles {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 0.25rem;
}

@media (max-width: 600px) {
	.petcover-chk__tiles {
		grid-template-columns: 1fr;
	}
}

.petcover-chk__tile {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.85rem 1rem;
	background: var(--pc-chk-surface);
	border: var(--pc-chk-border);
	border-radius: var(--pc-chk-radius-sm);
	cursor: pointer;
	font-size: 0.9375rem;
	transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.petcover-chk__tile:hover {
	box-shadow: 0 2px 8px rgba(26, 61, 46, 0.08);
}

.petcover-chk__tile--active {
	border-color: var(--pc-chk-ink);
	box-shadow: 0 0 0 1px var(--pc-chk-ink);
}

.petcover-chk__tile input {
	accent-color: var(--pc-chk-ink);
	width: 1.1rem;
	height: 1.1rem;
	flex-shrink: 0;
}

.petcover-chk__tile-body {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.petcover-chk__tile-tag {
	font-weight: 700;
	font-size: 0.8125rem;
	color: var(--pc-chk-ink);
}

.petcover-chk__payu {
	font-weight: 800;
	font-size: 0.75rem;
	letter-spacing: 0.02em;
	color: #0a5f2d;
}

.petcover-chk__payu span {
	color: #6bb52d;
}

/* ----- Totals ----- */
.petcover-chk__coupon {
	margin: 1.25rem 0 30px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 16px;
	padding-left: 20px;
	padding-right: 20px;
}

.petcover-chk__coupon-toggle {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 11px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
	color: inherit;
	text-align: left;
	width: fit-content;
}

.petcover-chk__coupon-toggle:hover,
.petcover-chk__coupon-toggle:focus,
.petcover-chk__coupon-toggle:active {
	opacity: 1;
	background: none;
	color: inherit;
	outline: none;
	box-shadow: none;
}

.petcover-chk__coupon-form:not([hidden]) {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.petcover-chk__coupon-input {
	flex: 1;
	min-width: 0;
	height: 40px;
	padding: 0 12px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: var(--pc-chk-radius-sm, 6px);
	font-size: 14px;
	background: #fff;
	outline: none;
	transition: border-color 0.15s;
}

.petcover-chk__coupon-input:focus {
	border-color: var(--global-palette1, #088f67);
}

.petcover-chk__coupon-btn {
	height: 40px;
	padding: 0 16px;
	background: none;
	border: 1px solid var(--global-palette1, #088f67);
	border-radius: var(--pc-chk-radius-sm, 6px);
	color: var(--global-palette1, #088f67);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background 0.15s, color 0.15s;
}

.petcover-chk__coupon-btn:hover:not(:disabled) {
	background: var(--global-palette1, #088f67);
	color: #fff;
}

.petcover-chk__coupon-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.petcover-chk__coupon-error {
	color: var(--pc-chk-error, #c0392b);
	font-size: 12px;
	margin: 2px 0 0;
	width: 100%;
}

.petcover-chk__coupon-list:not([hidden]) {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.petcover-chk__coupon-applied {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.petcover-chk__coupon-applied-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.petcover-chk__coupon-code {
	font-size: 11px;
	font-weight: 700;
}

.petcover-chk__coupon-remove {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 11px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
	color: inherit;
}

.petcover-chk__coupon-remove:hover,
.petcover-chk__coupon-remove:focus,
.petcover-chk__coupon-remove:active {
	opacity: 1;
	color: inherit;
	background: none;
	box-shadow: none;
	outline: none;
}

.petcover-chk__coupon-discount {
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
}

.petcover-chk__total-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 0.75rem;
	padding: 15px 20px;
	background: rgba(8, 143, 103, 0.24);
	border-radius: var(--pc-chk-radius-sm);
	font-weight: 700;
	color: var(--global-palette1);
	font-size: 16px;
}

.petcover-chk__total-bar * {
	color: var(--global-palette1);
}

#petcover-chk-pay-footnote.petcover-chk__footnote {
	font-size: 12px;
	margin-top: 5px;
}

#petcover-step-back-to-form {
	display: none !important;
}

.petcover-chk__row-price {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	font-size: 16px;
	color: var(--pc-chk-ink-soft);
	padding-left: 20px;
	padding-right: 20px;
}

.petcover-chk__yearly-pay-discount-mount {
	margin: 0;
	padding: 0;
}

/* Ta sama przerwa co `.petcover-chk__coupon` (1.25rem) — równy odstęp: koszt ↔ rabat roczny ↔ kod. */
.petcover-chk__row-price--yearly-discount {
	margin-top: 1.25rem;
	align-items: center;
}

.petcover-chk--loading {
	opacity: 0.55;
	pointer-events: none;
}

/* ----- Checkout pricing refresh (coupon / billing period) ----- */
.petcover-chk__pricing-wrap {
	position: relative;
}

.petcover-chk__pricing-loading {
	display: none;
	position: absolute;
	inset: 0;
	z-index: 5;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.42);
	backdrop-filter: blur(1px);
	border-radius: var(--pc-chk-radius-sm);
	text-align: center;
}

.petcover-chk__pricing-wrap--loading .petcover-chk__pricing-loading {
	display: flex;
}

.petcover-chk__pricing-wrap--loading .petcover-chk__pricing-body {
	pointer-events: none;
	user-select: none;
}

.petcover-chk__pricing-spinner {
	width: 28px;
	height: 28px;
	box-sizing: border-box;
	border: 3px solid rgba(26, 61, 46, 0.18);
	border-top-color: var(--pc-chk-accent);
	border-radius: 50%;
	animation: petcover-chk-pricing-spin 0.75s linear infinite;
}

@keyframes petcover-chk-pricing-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.petcover-chk__pricing-loading-text {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--pc-chk-ink-soft);
}

/* ----- Statyczne zgody (jak regulations.php w motywie) ----- */
.petcover-chk__regulations-detail {
	margin-top: 1rem;
	padding-left: 0.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-left: 20px;
}

.petcover-chk__regulations-detail--collapsed {
	display: none;
}

.petcover-chk__reg-label {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 0.65rem;
	margin: 0;
	cursor: pointer;
	font-size: 0.9375rem;
	color: var(--pc-chk-ink);
}

.petcover-chk__reg-cb {
	margin-top: 0.35rem;
	flex-shrink: 0;
	width: 1.05rem;
	height: 1.05rem;
	accent-color: var(--pc-chk-ink);
}

.petcover-chk__reg-text {
	flex: 1;
	line-height: 1.45;
}

.petcover-chk__reg-text,
.petcover-chk__reg-text * {
	font-weight: 400;
	color: var(--global-palette1);
}

.petcover-chk__reg-text p {
	margin: 0;
}

.petcover-chk__req-star {
	color: #c0392b;
	font-weight: 600;
}

/* PayU bootstrap: #payu-widget (inline iframe mount) */
.petcover-chk__payu-widget-host {
	min-height: 280px;
	overflow: hidden;
}

.petcover-chk__payu-widget-host iframe {
	border-radius: 0 !important;
}

.petcover-chk__payu-modal-widget-hint {
	margin: 0;
	font-size: 0.8125rem;
	color: #666;
	text-align: center;
	line-height: 1.4;
}

/* PayU card payment modal */
.petcover-chk__payu-modal {
	--pc-payu-lime: #a6ce39;
	--pc-payu-lime-dark: #8fb32e;
	--pc-payu-grey: #f5f5f5;
	--pc-payu-ink: #3d3d3d;

	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	box-sizing: border-box;
}

.petcover-chk__payu-modal[hidden] {
	display: none !important;
}

.petcover-chk__payu-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(26, 61, 46, 0.45);
	backdrop-filter: blur(3px);
}

.petcover-chk__payu-modal-panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 420px;
	max-height: min(92vh, 640px);
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 14px;
	box-shadow:
		0 24px 48px rgba(0, 0, 0, 0.18),
		0 0 0 1px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	color: var(--pc-payu-ink);
}

.petcover-chk__payu-modal-close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	z-index: 2;
	width: 2.25rem;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: #888;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.petcover-chk__payu-modal-close:hover {
	background: rgba(0, 0, 0, 0.06);
	color: #333;
}

.petcover-chk__payu-modal-header {
	flex-shrink: 0;
	padding: 1.35rem 1.35rem 1rem;
	padding-right: 2.75rem;
	background: #fff;
}

.petcover-chk__payu-modal-title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--pc-payu-ink);
}

.petcover-chk__payu-modal-title strong {
	font-weight: 700;
}

.petcover-chk__payu-modal-subline {
	margin: 0.65rem 0 0;
	font-size: 0.9375rem;
	color: #555;
	line-height: 1.4;
}

.petcover-chk__payu-modal-amount-strong {
	color: var(--pc-payu-lime);
	font-weight: 700;
}

.petcover-chk__payu-modal-amount-note {
	font-weight: 400;
	color: #777;
	font-size: 0.875rem;
}

.petcover-chk__payu-modal-fields {
	flex-shrink: 0;
	padding: 1rem 1.35rem 1.25rem;
	background: var(--pc-payu-grey);
	border-top: 1px solid rgba(0, 0, 0, 0.04);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* PayU iframes / inner wrappers */
.petcover-chk__payu-modal-fields iframe {
	border-radius: 0 !important;
}

.petcover-chk__payu-modal-body {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: 1.15rem 1.35rem 1.25rem;
	background: #fff;
}

.petcover-chk__payu-modal-consent {
	margin: 0 0 1rem;
	font-size: 0.78rem;
	font-style: italic;
	color: #777;
	line-height: 1.45;
	text-align: center;
}

.petcover-chk__payu-modal-reg {
	color: #555;
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

.petcover-chk__payu-modal-reg:hover {
	color: var(--pc-payu-ink);
}

.petcover-chk__payu-modal-compliance {
	margin: 0.85rem 0 0;
	font-size: 0.72rem;
	color: #888;
	line-height: 1.4;
	text-align: center;
}

.petcover-chk__payu-modal-compliance a {
	color: #5a5a5a;
	text-decoration: underline;
}

.petcover-chk__payu-modal-footer {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	flex-wrap: wrap;
	padding: 0.65rem 1rem;
	background: var(--pc-payu-lime);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 500;
}

.petcover-chk__payu-modal-footer-logo {
	font-weight: 800;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
}

.petcover-chk__payu-modal-footer-logo span {
	font-weight: 800;
	opacity: 0.95;
}

/* ----- Validation modal (step gating) ----- */
.petcover-chk__form-modal {
	position: fixed;
	inset: 0;
	z-index: 100010;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.petcover-chk__form-modal[hidden] {
	display: none !important;
}

.petcover-chk__form-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.petcover-chk__form-modal-panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 720px;
	background: #fff;
	border-radius: 20px;
	padding: 50px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
	color: var(--pc-chk-ink);
}

@media (max-width: 600px) {
	.petcover-chk__form-modal-panel {
		padding: 24px;
	}
}

.petcover-chk__form-modal-title {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--pc-chk-ink);
	text-align: center;
}

.petcover-chk__form-modal-detail {
	margin: 1rem 0 2rem;
	font-size: 1rem;
	font-weight: 400;
	color: var(--pc-chk-ink);
	text-align: center;
}

.petcover-chk__form-modal-close-btn {
	min-width: 240px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.petcover-chk--modal-open {
	overflow: hidden;
}
