.lpbt-wrap {
	--lpbt-green: #27894b;
	--lpbt-green-dark: #1e6839;
	--lpbt-green-soft: #eaf5ed;
	--lpbt-ink: #24342a;
	--lpbt-muted: #748176;
	--lpbt-border: #e1e9e1;
	color: var(--lpbt-ink);
	max-width: 1180px;
	margin: 36px auto;
	padding: 0 20px;
	min-height: 60vh;
}

.lpbt-checkout-page {
	max-width: 1220px;
	margin-top: 28px;
	margin-bottom: 48px;
	padding: clamp(22px, 4vw, 46px);
	border: 1px solid #e9efe8;
	border-radius: 24px;
	background: linear-gradient(145deg, #f7faf5 0%, #f1f7f0 100%);
}

.lpbt-checkout-heading {
	margin: 0 0 28px;
}

.lpbt-eyebrow {
	margin: 0 0 8px;
	color: var(--lpbt-green);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .13em;
}

.lpbt-checkout-heading h1,
.lpbt-empty-state h1 {
	margin: 0;
	color: var(--lpbt-ink);
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 750;
	letter-spacing: -.035em;
	line-height: 1.2;
}

.lpbt-checkout-heading > p:last-child,
.lpbt-summary-heading > p:last-child {
	margin: 9px 0 0;
	color: var(--lpbt-muted);
	font-size: 14px;
}

.lpbt-trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 10px;
	margin: -8px 0 25px;
}

.lpbt-trust-card {
	display: flex;
	min-width: 0;
	min-height: 76px;
	align-items: flex-start;
	gap: 10px;
	padding: 12px;
	border: 1px solid #dfeadf;
	border-radius: 14px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 5px 16px rgba(34, 74, 43, .035);
}

.lpbt-trust-icon {
	display: inline-grid;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid #d8eadb;
	border-radius: 11px;
	background: var(--lpbt-green-soft);
	color: var(--lpbt-green-dark);
}

.lpbt-trust-icon svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.lpbt-trust-copy {
	display: grid;
	min-width: 0;
	gap: 4px;
}

.lpbt-trust-copy strong {
	color: #2c4934;
	font-size: 12px;
	font-weight: 750;
	line-height: 1.35;
}

.lpbt-trust-copy small {
	color: var(--lpbt-muted);
	font-size: 10.5px;
	line-height: 1.4;
}

.lpbt-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(280px, .8fr);
	align-items: start;
	gap: 24px;
}

.lpbt-form-card,
.lpbt-summary {
	min-width: 0;
	border: 1px solid var(--lpbt-border);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(34, 74, 43, .07);
}

.lpbt-form-card {
	margin: 0;
	padding: clamp(20px, 3vw, 34px);
}

.lpbt-form-section + .lpbt-form-section {
	margin-top: 25px;
	padding-top: 24px;
	border-top: 1px solid #edf1ec;
}

.lpbt-section-heading {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	margin-bottom: 19px;
}

.lpbt-step {
	display: inline-flex;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border-radius: 11px;
	background: var(--lpbt-green-soft);
	color: var(--lpbt-green-dark);
	font-size: 12px;
	font-weight: 800;
}

.lpbt-section-heading h2,
.lpbt-summary-heading h2 {
	margin: 0;
	color: var(--lpbt-ink);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
}

.lpbt-section-heading p {
	margin: 3px 0 0;
	color: var(--lpbt-muted);
	font-size: 13px;
}

.lpbt-fields-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 18px;
}

.lpbt-wrap label {
	display: block;
	margin: 15px 0;
	color: #39473c;
	font-size: 13px;
	font-weight: 650;
}

.lpbt-wrap input,
.lpbt-wrap select,
.lpbt-wrap textarea {
	display: block;
	width: 100%;
	min-height: 48px;
	margin-top: 7px;
	padding: 11px 13px;
	border: 1px solid #d5dfd5;
	border-radius: 10px;
	outline: none;
	background: #fff;
	color: var(--lpbt-ink);
	font: inherit;
	font-size: 14px;
	box-sizing: border-box;
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.lpbt-wrap textarea {
	min-height: 112px;
	resize: vertical;
}

.lpbt-wrap input[type="hidden"] {
	display: none !important;
}

.lpbt-wrap input::placeholder,
.lpbt-wrap textarea::placeholder {
	color: #a1aca2;
	font-weight: 400;
}

.lpbt-wrap input:focus,
.lpbt-wrap select:focus,
.lpbt-wrap textarea:focus {
	border-color: var(--lpbt-green);
	box-shadow: 0 0 0 3px rgba(39, 137, 75, .12);
}

.lpbt-wrap input[readonly],
.lpbt-wrap input:disabled,
.lpbt-wrap select:disabled {
	background: #f3f6f2;
	color: #788378;
	cursor: not-allowed;
}

.lpbt-wrap button,
.lpbt-pay-link {
	min-height: 46px;
	margin: 10px 0;
	padding: 12px 18px;
	border: 1px solid var(--lpbt-green);
	border-radius: 10px;
	background: var(--lpbt-green);
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.lpbt-wrap button:hover:not(:disabled),
.lpbt-pay-link:hover {
	transform: translateY(-1px);
	border-color: var(--lpbt-green-dark);
	background: var(--lpbt-green-dark);
	color: #fff;
	box-shadow: 0 7px 16px rgba(30, 104, 57, .16);
}

.lpbt-wrap button:focus-visible,
.lpbt-pay-link:focus-visible {
	outline: 3px solid rgba(39, 137, 75, .28);
	outline-offset: 2px;
}

.lpbt-wrap button:disabled {
	border-color: #cad6ca;
	background: #cad6ca;
	color: #f8faf8;
	cursor: not-allowed;
}

.lpbt-field-note {
	display: block;
	margin: 7px 0 0;
	color: var(--lpbt-muted);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.45;
}

.lpbt-wrap input.lpbt-invalid,
.lpbt-wrap select.lpbt-invalid,
.lpbt-wrap textarea.lpbt-invalid {
	border-color: #c62828 !important;
	background: #fffafa;
	box-shadow: 0 0 0 3px rgba(198, 40, 40, .1) !important;
}

.lpbt-validation-error {
	display: block;
	margin: 6px 0 0;
	color: #b42318;
	font-size: 12px;
	font-weight: 650;
	line-height: 1.45;
}

.lpbt-group-error[hidden] {
	display: none !important;
}

.lpbt-accordion-toggle.lpbt-invalid {
	border-color: #c62828 !important;
	box-shadow: 0 0 0 3px rgba(198, 40, 40, .1);
}

.lpbt-shipping-section #lpbt-calculate.lpbt-invalid {
	border-color: #c62828 !important;
	background: #fff1f0;
	color: #a51d18;
}

.lpbt-warehouse-fieldset {
	min-width: 0;
	margin: 15px 0 20px;
	padding: 0;
	border: 0;
}

.lpbt-warehouse-fieldset legend {
	margin-bottom: 5px;
	padding: 0;
	color: #39473c;
	font-size: 13px;
	font-weight: 650;
}

.lpbt-warehouse-fieldset > .lpbt-field-note {
	margin-top: 0;
	margin-bottom: 10px;
}

.lpbt-origin-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.lpbt-accordion {
	margin: 14px 0;
}

.lpbt-wrap button.lpbt-accordion-toggle {
	display: flex;
	width: 100%;
	min-height: 58px;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 0;
	padding: 11px 14px;
	border: 1px solid #d5dfd5;
	background: #fff;
	color: var(--lpbt-ink);
	text-align: left;
	box-shadow: none;
}

.lpbt-wrap button.lpbt-accordion-toggle:hover:not(:disabled) {
	transform: none;
	border-color: #b9d1bd;
	background: #fbfdfb;
	color: var(--lpbt-ink);
	box-shadow: none;
}

.lpbt-wrap button.lpbt-accordion-toggle:disabled {
	border-color: #e1e7e0;
	background: #f5f7f4;
	color: #879188;
}

.lpbt-accordion-copy,
.lpbt-option-copy {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.lpbt-payment-brand {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 12px;
}

.lpbt-payment-logo {
	display: block;
	flex: 0 0 64px;
	width: 64px;
	height: 34px;
	object-fit: contain;
	object-position: center;
}

#lpbt-payment-current {
	display: flex;
	align-items: center;
	gap: 8px;
}

.lpbt-payment-current-logo {
	display: block;
	flex: 0 0 42px;
	width: 42px;
	height: 24px;
	object-fit: contain;
}

.lpbt-accordion-copy small {
	color: var(--lpbt-muted);
	font-size: 11px;
	font-weight: 500;
}

.lpbt-accordion-copy strong {
	color: #34443a;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

.lpbt-accordion-chevron {
	flex: 0 0 10px;
	width: 10px;
	height: 10px;
	margin-right: 3px;
	border-right: 2px solid #728075;
	border-bottom: 2px solid #728075;
	transform: rotate(45deg) translateY(-2px);
	transition: transform .18s ease;
}

.lpbt-accordion-toggle[aria-expanded="true"] .lpbt-accordion-chevron {
	transform: rotate(225deg) translate(-2px, -1px);
}

.lpbt-choice-panel[hidden] {
	display: none !important;
}

.lpbt-choice-panel {
	display: grid;
	max-height: 320px;
	gap: 8px;
	margin-top: 9px;
	padding: 2px 4px 2px 1px;
	overflow-y: auto;
}

.lpbt-wrap button.lpbt-choice-option {
	display: flex;
	width: 100%;
	min-height: 58px;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid #dfe7de;
	background: #fff;
	color: var(--lpbt-ink);
	text-align: left;
	box-shadow: none;
}

.lpbt-wrap button.lpbt-choice-option:hover:not(:disabled) {
	transform: none;
	border-color: #a9cbae;
	background: #f8fcf8;
	color: var(--lpbt-ink);
	box-shadow: none;
}

.lpbt-wrap button.lpbt-choice-option.is-selected {
	border-color: var(--lpbt-green);
	background: #f4faf5;
	box-shadow: inset 0 0 0 1px var(--lpbt-green);
}

.lpbt-option-copy strong {
	color: #34443a;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
}

.lpbt-option-copy small {
	color: var(--lpbt-muted);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.4;
}

.lpbt-option-mark {
	display: inline-flex;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	align-items: center;
	justify-content: center;
	border: 1.5px solid #c8d4c8;
	border-radius: 50%;
}

.lpbt-option-mark::after {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lpbt-green);
	content: "";
	transform: scale(0);
	transition: transform .15s ease;
}

.lpbt-choice-option.is-selected .lpbt-option-mark {
	border-color: var(--lpbt-green);
}

.lpbt-choice-option.is-selected .lpbt-option-mark::after {
	transform: scale(1);
}

.lpbt-shipping-actions {
	display: flex;
	align-items: stretch;
	gap: 12px;
	margin: 10px 0;
}

.lpbt-wrap .lpbt-shipping-actions > button {
	flex: 0 0 170px;
	width: 170px;
	height: 48px;
	min-height: 48px;
	margin: 0;
}

.lpbt-wrap .lpbt-shipping-actions > button.lpbt-voucher-card {
	flex-basis: 155px;
	width: 155px;
	gap: 5px;
	justify-content: space-between;
	padding: 6px 8px;
	border-style: solid;
}

.lpbt-voucher-copy {
	display: grid;
	min-width: 0;
	gap: 1px;
	line-height: 1.15;
}

.lpbt-voucher-copy .lpbt-voucher-name {
	color: #175c31;
	font-size: 10px;
	font-weight: 750;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lpbt-voucher-copy strong {
	color: #175c31;
	font-size: 12px;
	font-weight: 750;
	white-space: nowrap;
}

.lpbt-voucher-card:not(.is-selected) .lpbt-voucher-copy .lpbt-voucher-name,
.lpbt-voucher-card:not(.is-selected) .lpbt-voucher-copy strong {
	color: var(--lpbt-muted);
}

.lpbt-voucher-card .lpbt-voucher-check {
	color: #27894b;
	font-size: 14px;
	font-weight: 850;
}

.lpbt-voucher-card:not(.is-selected) .lpbt-voucher-check {
	opacity: 0;
}

.lpbt-shipping-section #lpbt-calculate {
	min-width: 165px;
	border-color: #d6e8da;
	background: var(--lpbt-green-soft);
	color: var(--lpbt-green-dark);
}

.lpbt-shipping-section #lpbt-calculate:hover {
	border-color: #b6d6bd;
	background: #def0e2;
	color: var(--lpbt-green-dark);
	box-shadow: none;
}

@media (max-width: 480px) {
	.lpbt-shipping-actions { gap: 8px; }
	.lpbt-shipping-actions #lpbt-calculate { min-width: 0; }
	.lpbt-wrap .lpbt-shipping-actions > button { flex: 1 1 0; width: auto; min-width: 0; padding-left: 8px; padding-right: 8px; }
	.lpbt-wrap .lpbt-shipping-actions > button.lpbt-voucher-card { flex: 1 1 0; width: auto; padding: 5px; }
	.lpbt-voucher-copy .lpbt-voucher-name { font-size: 10px; }
	.lpbt-voucher-copy strong { font-size: 11px; }
	.lpbt-voucher-card .lpbt-voucher-check { display: none; }
}

.lpbt-form-card #lpbt-submit {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	margin-top: 18px;
	padding: 14px 18px;
	font-size: 15px;
}

.lpbt-submit-note {
	margin: 9px 0 0;
	color: var(--lpbt-muted);
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

#lpbt-feedback {
	min-height: 20px;
	margin: 3px 0 8px;
	color: var(--lpbt-muted);
	font-size: 13px;
	line-height: 1.5;
}

.lpbt-helper {
	margin: -4px 0 0;
	color: var(--lpbt-muted);
	font-size: 12px;
}

.lpbt-summary {
	position: sticky;
	top: 24px;
	padding: 25px;
}

.lpbt-summary-heading {
	margin-bottom: 20px;
	padding-bottom: 17px;
	border-bottom: 1px solid #edf1ec;
}

.lpbt-summary-heading .lpbt-eyebrow {
	margin-bottom: 6px;
}

.lpbt-summary-heading > p:last-child {
	font-size: 12px;
}

.lpbt-order-items {
	display: grid;
	gap: 15px;
}

.lpbt-order-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.lpbt-item-name {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.lpbt-item-name strong {
	color: #34443a;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.45;
	word-break: break-word;
}

.lpbt-item-name small,
.lpbt-item-name span {
	color: var(--lpbt-muted);
	font-size: 12px;
}

.lpbt-item-price {
	flex: 0 0 auto;
	color: #34443a;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.lpbt-totals {
	display: grid;
	gap: 12px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid #edf1ec;
}

.lpbt-totals [hidden] {
	display: none !important;
}

.lpbt-total-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	color: #68756a;
	font-size: 13px;
}

.lpbt-total-row strong {
	color: #35453a;
	font-size: 13px;
	font-weight: 700;
	text-align: right;
}

.lpbt-total-row.lpbt-grand-total {
	margin-top: 3px;
	padding-top: 15px;
	border-top: 1px dashed #dce6dc;
	color: var(--lpbt-ink);
	font-size: 14px;
	font-weight: 700;
}

.lpbt-total-row.lpbt-grand-total strong {
	color: var(--lpbt-green);
	font-size: 18px;
	font-weight: 800;
}

.lpbt-summary-note {
	display: flex;
	gap: 8px;
	margin: 19px 0 0;
	padding: 11px 12px;
	border-radius: 10px;
	background: #f2f8f2;
	color: #637467;
	font-size: 11px;
	line-height: 1.5;
}

.lpbt-summary-note span {
	color: var(--lpbt-green);
	font-weight: 800;
}

.lpbt-message {
	margin: 16px 0;
	padding: 14px 16px;
	border: 1px solid #f0d8bd;
	border-left: 4px solid #d98a3f;
	border-radius: 10px;
	background: #fff8ee;
	color: #76502d;
	font-size: 14px;
}

.lpbt-empty-state {
	max-width: 620px;
	margin: 36px auto;
	padding: 52px 24px;
	border: 1px solid var(--lpbt-border);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(34, 74, 43, .07);
	text-align: center;
}

.lpbt-empty-icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 17px;
	background: var(--lpbt-green-soft);
	color: var(--lpbt-green);
	font-size: 22px;
	font-weight: 800;
}

.lpbt-empty-state > p:last-child {
	margin: 10px 0 0;
	color: var(--lpbt-muted);
}

.lpbt-track-wrap {
	max-width: 960px;
	padding: clamp(20px, 4vw, 42px);
	border: 1px solid #e1ece2;
	border-radius: 24px;
	background: linear-gradient(145deg, #f8fcf8 0%, #eff8f1 100%);
}

.lpbt-track-heading {
	margin-bottom: 23px;
}

.lpbt-track-eyebrow {
	display: block;
	color: var(--lpbt-green-dark);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .13em;
}

.lpbt-track-heading h1 {
	margin: 7px 0 8px;
	color: #183f28;
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 800;
	line-height: 1.2;
}

.lpbt-track-heading p {
	margin: 0;
	color: #657768;
	font-size: 14px;
}

.lpbt-track-form,
.lpbt-track-result {
	padding: clamp(19px, 3vw, 30px);
	border: 1px solid #dce9dd;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(27, 80, 42, .05);
}

.lpbt-track-form label {
	margin: 0 0 10px;
	color: #274734;
	font-size: 14px;
	font-weight: 750;
}

.lpbt-track-form-row {
	display: flex;
	align-items: stretch;
	gap: 12px;
}

.lpbt-track-form-row input {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.lpbt-wrap .lpbt-track-form-row button {
	flex: 0 0 auto;
	margin: 0;
	white-space: nowrap;
}

.lpbt-track-form > p {
	margin: 11px 0 0;
	color: var(--lpbt-muted);
	font-size: 12px;
}

.lpbt-track-result {
	margin-top: 20px;
}

.lpbt-track-result-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e7eee7;
}

.lpbt-track-result-head h2 {
	margin: 7px 0;
	color: #193f29;
	font-size: clamp(21px, 3vw, 27px);
	font-weight: 800;
	overflow-wrap: anywhere;
}

.lpbt-track-result-head p {
	margin: 0;
	color: var(--lpbt-muted);
	font-size: 13px;
}

.lpbt-track-head-badge {
	flex: 0 0 auto;
	padding: 7px 12px;
	border: 1px solid #d6e8d9;
	border-radius: 999px;
	background: #f0faf2;
	color: #23613a;
	font-size: 12px;
	font-weight: 800;
}

.lpbt-track-head-badge.is-waiting { border-color: #f0dba6; background: #fff9e9; color: #87601b; }
.lpbt-track-head-badge.is-danger { border-color: #efcbc7; background: #fff4f2; color: #9c3e34; }

.lpbt-track-status-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 21px 0;
}

.lpbt-track-status-card {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	padding: 17px;
	border: 1px solid #cee7d3;
	border-radius: 14px;
	background: #f1faf3;
}

.lpbt-track-status-card.is-waiting { border-color: #f1dfb5; background: #fffaf0; }
.lpbt-track-status-card.is-danger { border-color: #efcfca; background: #fff5f3; }

.lpbt-track-status-mark {
	display: grid;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: #d6f0dd;
	color: #237644;
	font-size: 18px;
	font-weight: 900;
}

.lpbt-track-status-mark::before { content: "✓"; }
.lpbt-track-status-card.is-waiting .lpbt-track-status-mark { background: #fff0cb; color: #9b6a13; }
.lpbt-track-status-card.is-waiting .lpbt-track-status-mark::before { content: "…"; }
.lpbt-track-status-card.is-danger .lpbt-track-status-mark { background: #fce0dc; color: #b14b40; }
.lpbt-track-status-card.is-danger .lpbt-track-status-mark::before { content: "!"; }

.lpbt-track-status-card small {
	display: block;
	margin-bottom: 3px;
	color: #607366;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .11em;
}

.lpbt-track-status-card strong {
	display: block;
	color: #245337;
	font-size: 15px;
	line-height: 1.3;
}

.lpbt-track-status-card.is-waiting strong { color: #76591d; }
.lpbt-track-status-card.is-danger strong { color: #963b33; }

.lpbt-track-details h3,
.lpbt-track-timeline h3 {
	margin: 0 0 12px;
	color: #254e34;
	font-size: 17px;
}

.lpbt-track-details dl { margin: 0; }
.lpbt-track-details dl > div {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 11px 0;
	border-bottom: 1px solid #edf1ed;
	font-size: 14px;
}

.lpbt-track-details dt { color: #68776b; }
.lpbt-track-details dd { margin: 0; color: #273c2c; font-weight: 700; text-align: right; overflow-wrap: anywhere; }
.lpbt-track-details .lpbt-track-amount { color: #1c7b3b; font-size: 18px; font-weight: 850; }
.lpbt-track-waybill { letter-spacing: .04em; }

.lpbt-track-courier-link,
.lpbt-track-pay-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 19px;
	padding: 11px 16px;
	border: 1px solid #227d43;
	border-radius: 10px;
	background: #227d43;
	color: #fff;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}

.lpbt-track-courier-link:hover,
.lpbt-track-courier-link:focus-visible,
.lpbt-track-pay-link:hover,
.lpbt-track-pay-link:focus-visible { background: #1a6335; color: #fff; }

.lpbt-track-timeline { margin-top: 24px; padding-top: 20px; border-top: 1px solid #e7eee7; }
.lpbt-track-history { margin: 0 0 0 7px; padding: 0 0 0 20px; border-left: 2px solid #dcebdd; list-style: none; }
.lpbt-track-history li { position: relative; margin: 0; padding: 0 0 18px; color: #344c3a; font-size: 13px; }
.lpbt-track-history li:last-child { padding-bottom: 0; }
.lpbt-track-history li::before { position: absolute; top: 3px; left: -27px; width: 11px; height: 11px; border: 2px solid #fff; border-radius: 50%; background: #2b9150; box-shadow: 0 0 0 1px #9acda7; content: ""; }
.lpbt-track-history strong, .lpbt-track-history small, .lpbt-track-history span { display: block; }
.lpbt-track-history strong { font-size: 14px; }
.lpbt-track-history small { margin-top: 3px; color: #718074; }
.lpbt-track-history span { margin-top: 5px; color: #617365; }

.lpbt-track-notice { margin: 19px 0 0; padding: 13px 15px; border: 1px solid #dcebdd; border-radius: 10px; background: #f5faf5; color: #49634f; font-size: 13px; line-height: 1.5; }

@media (max-width: 640px) {
	.lpbt-track-form-row { flex-direction: column; }
	.lpbt-wrap .lpbt-track-form-row button { width: 100%; }
	.lpbt-track-status-grid { grid-template-columns: minmax(0, 1fr); }
	.lpbt-track-result-head { flex-direction: column; }
	.lpbt-track-details dl > div { align-items: flex-start; flex-direction: column; gap: 3px; }
	.lpbt-track-details dd { text-align: left; }
}

.lpbt-pay-link {
	display: inline-flex;
	align-items: center;
}

@media (max-width: 820px) {
	.lpbt-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.lpbt-summary {
		position: static;
		order: -1;
	}
}

@media (max-width: 560px) {
	.lpbt-wrap {
		margin: 18px auto;
		padding-right: 12px;
		padding-left: 12px;
	}

	.lpbt-checkout-page {
		margin-top: 14px;
		margin-bottom: 28px;
		padding: 18px 13px;
		border-radius: 17px;
	}

	.lpbt-checkout-heading {
		margin: 4px 5px 20px;
	}

	.lpbt-form-card {
		padding: 19px 16px;
		border-radius: 15px;
	}

	.lpbt-summary {
		padding: 19px 17px;
		border-radius: 15px;
	}

	.lpbt-section-heading h2,
	.lpbt-summary-heading h2 {
		font-size: 17px;
	}

	.lpbt-fields-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.lpbt-trust-grid {
		grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
		gap: 8px;
	}

	.lpbt-trust-card {
		min-height: 70px;
		gap: 8px;
		padding: 10px;
	}

	.lpbt-trust-icon {
		flex-basis: 30px;
		width: 30px;
		height: 30px;
		border-radius: 10px;
	}

	.lpbt-trust-icon svg {
		width: 17px;
		height: 17px;
	}

	.lpbt-origin-options {
		gap: 8px;
	}

	.lpbt-wrap button.lpbt-choice-option {
		padding: 11px 10px;
	}
}

/* Direct payment page */
.lpbt-payment-view { max-width: 1100px; margin: 0 auto; }
.lpbt-paypage-brand { display: flex; align-items: center; gap: 20px; padding-bottom: 25px; border-bottom: 1px solid #dce9de; }
.lpbt-paypage-brand img { display: block; width: 150px; max-height: 78px; object-fit: contain; object-position: left center; }
.lpbt-paypage-brand div { display: grid; gap: 3px; }
.lpbt-paypage-brand span, .lpbt-payment-card-title small, .lpbt-payment-kicker { color: #378c55; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.lpbt-paypage-brand strong { color: #20442c; font-size: clamp(15px, 2vw, 20px); letter-spacing: .015em; }
.lpbt-paypage-brand a { color: #5c7662; font-size: 13px; text-decoration: none; }
.lpbt-payment-hero { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 30px 0 25px; }
.lpbt-payment-hero h1 { margin: 7px 0 9px; color: #193d27; font-size: clamp(27px, 3vw, 38px); line-height: 1.17; letter-spacing: -.035em; }
.lpbt-payment-hero-title { display: flex; align-items: center; gap: 14px; }
.lpbt-verified-icon { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: #258845; box-shadow: 0 0 0 5px #e8f6eb; }
.lpbt-verified-icon svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.lpbt-payment-hero p { max-width: 620px; margin: 0; color: #64766a; font-size: 15px; line-height: 1.6; }
.lpbt-payment-status { display: inline-flex; flex: 0 0 auto; align-items: center; padding: 8px 13px; border: 1px solid #f0deae; border-radius: 999px; background: #fff8e7; color: #805c10; font-size: 12px; font-weight: 750; }
.lpbt-payment-status.is-paid { border-color: #bfe0c5; background: #eaf7ed; color: #246e3f; }
.lpbt-payment-alert { margin: 0 0 20px; padding: 14px 17px; border: 1px solid #edd5a5; border-radius: 12px; background: #fff9eb; color: #765815; font-size: 14px; line-height: 1.55; }
.lpbt-payment-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(310px, .85fr); gap: 20px; align-items: start; }
.lpbt-payment-card { min-width: 0; padding: clamp(20px, 3vw, 31px); border: 1px solid #dae7db; border-radius: 20px; background: #fff; box-shadow: 0 12px 35px rgba(23, 72, 37, .055); }
.lpbt-payment-card-title { display: flex; align-items: center; gap: 13px; margin-bottom: 23px; }
.lpbt-payment-card-title > span { display: grid; flex: 0 0 34px; height: 34px; place-items: center; border-radius: 11px; background: #e8f5eb; color: #227c43; font-size: 12px; font-weight: 850; }
.lpbt-payment-card-title h2 { margin: 2px 0 0; color: #213c2a; font-size: 20px; }
.lpbt-payment-code { padding: 17px 19px; border: 1px solid #a6d5b2; border-radius: 14px; background: #f3fbf5; }
.lpbt-payment-code small { display: block; margin-bottom: 8px; color: #5c7463; font-size: 12px; }
.lpbt-payment-code > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.lpbt-payment-code strong { overflow-wrap: anywhere; color: #174e2a; font-size: clamp(21px, 3vw, 30px); letter-spacing: .035em; }
.lpbt-copy-button { flex: 0 0 auto; padding: 8px 13px; border: 1px solid #b8d8c0; border-radius: 9px; background: #fff; color: #176536; font: inherit; font-size: 12px; font-weight: 750; cursor: pointer; }
.lpbt-copy-button:hover, .lpbt-copy-button:focus-visible { border-color: #2d8a4c; background: #e8f5eb; }
.lpbt-payment-qr { display: grid; justify-items: center; padding: 16px; border: 1px solid #c9e3cf; border-radius: 15px; background: #f8fcf8; }
.lpbt-payment-qr img { display: block; width: min(100%, 270px); height: auto; aspect-ratio: 1; object-fit: contain; background: white; }
.lpbt-payment-qr p { margin: 10px 0 0; color: #637269; font-size: 13px; text-align: center; }
.lpbt-payment-deadline { display: flex; justify-content: space-between; gap: 10px; margin-top: 16px; padding: 14px 0; border-bottom: 1px solid #e6eee7; color: #637269; font-size: 13px; }
.lpbt-payment-deadline strong { color: #b35a30; text-align: right; }
.lpbt-payment-timer { display: grid; justify-items: center; gap: 5px; margin-top: 16px; padding: 17px 14px; border: 1px solid #b5daba; border-radius: 14px; background: linear-gradient(135deg, #edf8ef, #f8fcf7); text-align: center; }
.lpbt-payment-timer > span { color: #287b44; font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.lpbt-payment-timer > strong { color: #185f34; font-size: clamp(32px, 5vw, 49px); font-variant-numeric: tabular-nums; font-weight: 800; letter-spacing: .035em; line-height: 1.15; }
.lpbt-payment-timer > small { color: #688371; font-size: 12px; }
.lpbt-payment-timer #lpbt-payment-now { color: #2e6340; font-size: clamp(16px, 2vw, 19px); font-variant-numeric: tabular-nums; font-weight: 700; }
.lpbt-payment-howto h3 { margin: 22px 0 10px; color: #263c2b; font-size: 16px; }
.lpbt-payment-howto ol { margin: 0; padding-left: 21px; color: #516457; font-size: 14px; line-height: 1.75; }
.lpbt-payment-howto li + li { margin-top: 6px; }
.lpbt-payment-success { padding: 18px; border-radius: 13px; background: #ecf7ef; color: #246e3f; line-height: 1.55; }
.lpbt-paid-invoice-code { margin-top: 16px; padding: 19px; border: 1px solid #9fcfac; border-radius: 14px; background: #f7fcf8; }
.lpbt-paid-invoice-code > span { display: block; color: #3c8050; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.lpbt-paid-invoice-code > div { display: flex; align-items: center; gap: 12px; margin-top: 9px; }
.lpbt-paid-invoice-code input { min-width: 0; flex: 1; border: 0; padding: 0; background: transparent; color: #174e2a; font: inherit; font-size: clamp(24px, 4vw, 38px); font-weight: 850; letter-spacing: .065em; }
.lpbt-paid-invoice-code input:focus { outline: 2px solid #70b682; outline-offset: 3px; }
.lpbt-paid-invoice-code small { display: block; margin-top: 9px; color: #63786a; font-size: 12px; }
.lpbt-payment-summary-row, .lpbt-payment-item { display: flex; justify-content: space-between; gap: 15px; padding: 10px 0; color: #607166; font-size: 13px; }
.lpbt-payment-summary-row strong, .lpbt-payment-item strong { flex: 0 0 auto; color: #243b2b; text-align: right; }
.lpbt-payment-item { border-bottom: 1px solid #edf2ee; color: #314a38; }
.lpbt-payment-item span { min-width: 0; }
.lpbt-payment-item small { display: block; margin-top: 4px; color: #7d8e81; }
.lpbt-payment-grand-total { display: flex; justify-content: space-between; gap: 12px; margin-top: 12px; padding: 18px 0; border-top: 2px solid #d7e9db; color: #23422d; font-size: 15px; font-weight: 800; }
.lpbt-payment-grand-total strong { color: #188144; font-size: 21px; text-align: right; }
.lpbt-payment-note { margin: 4px 0 17px; color: #708173; font-size: 12px; line-height: 1.55; }
.lpbt-payment-refresh, .lpbt-payment-track { display: flex; align-items: center; justify-content: center; min-height: 43px; border-radius: 10px; font-size: 13px; font-weight: 750; text-align: center; text-decoration: none; }
.lpbt-payment-refresh { background: #258845; color: #fff; }
.lpbt-payment-refresh:hover, .lpbt-payment-refresh:focus-visible { background: #1b6936; color: #fff; }
.lpbt-payment-paid-button { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 45px; border-radius: 10px; background: #258845; color: #fff; font-size: 14px; font-weight: 800; }
.lpbt-payment-paid-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.lpbt-payment-paid-button span { font-size: 11px; font-weight: 600; opacity: .88; }
.lpbt-paid-help { margin: 11px 0 0; color: #607166; font-size: 13px; line-height: 1.55; }
.lpbt-paid-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.lpbt-paid-actions a { min-width: 0; min-height: 56px; padding: 8px; line-height: 1.3; }
.lpbt-paid-actions .lpbt-payment-track { margin: 0; border: 1px solid #c7dfcd; background: #f6fbf7; }
.lpbt-paid-actions .lpbt-payment-whatsapp span { display: grid; gap: 1px; }
.lpbt-paid-actions .lpbt-payment-whatsapp small { font-size: 11px; font-weight: 600; }
.lpbt-payment-whatsapp { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 43px; border-radius: 10px; background: #e7f8ee; color: #167a42; font-size: 13px; font-weight: 750; text-decoration: none; }
.lpbt-payment-whatsapp:hover, .lpbt-payment-whatsapp:focus-visible { background: #d7f1e1; color: #126134; }
.lpbt-payment-whatsapp svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.lpbt-payment-refresh[aria-disabled="true"] { opacity: .7; pointer-events: none; }
.lpbt-payment-check-message { min-height: 1.4em; margin: 8px 0 0; color: #266044; font-size: 12px; line-height: 1.4; }
.lpbt-payment-check-message.is-error { color: #a33d30; }
.lpbt-payment-track { margin-top: 9px; color: #277d42; }
.lpbt-payment-track:hover, .lpbt-payment-track:focus-visible { color: #185a30; }
.lpbt-invoice-section { max-width: 900px; margin: 32px auto 0; }
.lpbt-invoice-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 15px; }
.lpbt-invoice-toolbar small { color: #2c8b4b; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.lpbt-invoice-toolbar h2 { margin: 4px 0; color: #1d452b; font-size: 24px; }
.lpbt-invoice-toolbar p { margin: 0; color: #66776b; font-size: 13px; }
.lpbt-invoice-print { flex: 0 0 auto; padding: 12px 18px; border: 0; border-radius: 10px; background: #258845; color: #fff; font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; }
.lpbt-invoice-print:hover, .lpbt-invoice-print:focus-visible { background: #1b6936; color: #fff; }
.lpbt-invoice-sheet { padding: clamp(20px, 4vw, 36px); border: 1px solid #d8e6d9; border-radius: 20px; background: linear-gradient(135deg, #fff, #fbfff9); color: #263b2b; box-shadow: 0 12px 35px rgba(23, 72, 37, .055); }
.lpbt-invoice-header { display: grid; justify-items: center; gap: 3px; padding-bottom: 19px; border-bottom: 3px solid #2e8b50; text-align: center; }
.lpbt-invoice-header img { display: block; width: 105px; max-height: 76px; margin-bottom: 7px; object-fit: contain; }
.lpbt-invoice-header h2 { margin: 0; color: #22543d; font-size: 30px; font-weight: 900; letter-spacing: .09em; }
.lpbt-invoice-header strong { color: #254e34; font-size: 13px; }
.lpbt-invoice-header span { color: #6f7d70; font-size: 12px; }
.lpbt-invoice-customer { margin: 21px 0; padding: 15px 18px; border: 1px solid #c8e5d0; border-radius: 14px; background: #eff9f1; }
.lpbt-invoice-customer p, .lpbt-invoice-meta p { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 10px; margin: 7px 0; font-size: 13px; line-height: 1.5; }
.lpbt-invoice-customer strong, .lpbt-invoice-meta strong { color: #285b39; }
.lpbt-invoice-customer span, .lpbt-invoice-meta span { min-width: 0; overflow-wrap: anywhere; }
.lpbt-invoice-table-wrap { overflow-x: auto; }
.lpbt-invoice-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.lpbt-invoice-table th { padding: 11px 12px; background: #2f855a; color: #fff; text-align: left; white-space: nowrap; }
.lpbt-invoice-table td { padding: 12px; border-bottom: 1px solid #dfe9e0; background: #fff; vertical-align: top; }
.lpbt-invoice-table th:not(:first-child), .lpbt-invoice-table td:not(:first-child) { text-align: right; }
.lpbt-invoice-totals { width: min(100%, 360px); margin: 21px 0 21px auto; padding: 15px 17px; border: 1px solid #c8e5d0; border-radius: 14px; background: #fff; }
.lpbt-invoice-totals > div { display: flex; justify-content: space-between; gap: 16px; margin: 9px 0; font-size: 13px; }
.lpbt-invoice-totals strong { flex: 0 0 auto; text-align: right; }
.lpbt-invoice-totals .lpbt-invoice-total-final { margin-bottom: 0; padding-top: 12px; border-top: 2px solid #2f855a; color: #22543d; font-size: 17px; font-weight: 850; }
.lpbt-invoice-meta { padding: 15px 18px; border-radius: 14px; background: #eff9f1; }
.lpbt-invoice-footer { margin-top: 20px; padding-top: 15px; border-top: 1px solid #dce9de; color: #69786d; font-size: 12px; line-height: 1.6; text-align: center; }

@media (max-width: 760px) {
  .lpbt-payment-layout { grid-template-columns: minmax(0, 1fr); }
  .lpbt-payment-summary { order: -1; }
}

@media (max-width: 560px) {
  .lpbt-paypage-brand { align-items: flex-start; flex-direction: column; gap: 11px; }
  .lpbt-paypage-brand img { width: 130px; max-height: 66px; }
  .lpbt-payment-hero { flex-direction: column; padding-top: 24px; }
  .lpbt-payment-card { padding: 20px 17px; }
  .lpbt-payment-deadline { flex-direction: column; gap: 3px; }
  .lpbt-payment-deadline strong { text-align: left; }
  .lpbt-paid-invoice-code > div, .lpbt-invoice-toolbar { align-items: stretch; flex-direction: column; }
  .lpbt-paid-invoice-code input { width: 100%; }
  .lpbt-invoice-customer p, .lpbt-invoice-meta p { grid-template-columns: minmax(0, 1fr); gap: 1px; }
}
