.adp-checkout-shortcode {
	--adp-checkout-primary: #5f7446;
	--adp-checkout-primary-hover: #4d5f39;
	--adp-checkout-primary-soft: #eef3e8;
	--adp-checkout-surface: #ffffff;
	--adp-checkout-surface-soft: #f7f7f2;
	--adp-checkout-background: #f6f5ef;
	--adp-checkout-border: #e5e3da;
	--adp-checkout-border-strong: #d9d4c7;
	--adp-checkout-text: #1f1f1a;
	--adp-checkout-muted: #6f756b;
	--adp-checkout-shadow: 0 24px 56px rgba(31, 31, 26, 0.07);
	--adp-checkout-radius-xl: 32px;
	--adp-checkout-radius-lg: 24px;
	--adp-checkout-radius-md: 18px;
	--adp-checkout-radius-sm: 14px;
	color: var(--adp-checkout-text);
}

.adp-checkout-shortcode,
.adp-checkout-shortcode * {
	box-sizing: border-box;
}

.adp-checkout-shortcode {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 32px 20px 72px;
}

.adp-checkout-shortcode__shell {
	display: grid;
	gap: 24px;
}

.adp-checkout-shortcode__brand {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.adp-checkout-shortcode__brand-logo {
	display: block;
	width: auto;
	max-width: 180px;
	max-height: 62px;
	height: auto;
}

.adp-checkout-shortcode__brand-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border: 1px solid var(--adp-checkout-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--adp-checkout-text);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.adp-checkout {
	display: grid;
	gap: 22px;
	margin: 0;
}

.adp-checkout__header {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.adp-checkout__eyebrow,
.adp-checkout__section-kicker,
.adp-checkout__panel-eyebrow,
.adp-checkout__subsection-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--adp-checkout-primary-soft);
	color: var(--adp-checkout-primary);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.adp-checkout__eyebrow,
.adp-checkout__panel-eyebrow,
.adp-checkout__section-kicker,
.adp-checkout__subsection-kicker {
	display: none !important;
}

.adp-checkout__header h2 {
	margin: 14px 0 10px;
	font-size: clamp(32px, 4vw, 46px);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.adp-checkout__header p {
	margin: 0;
	color: var(--adp-checkout-muted);
	font-size: 16px;
	line-height: 1.75;
}

.adp-checkout__stepper {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 920px;
	margin: 0 auto;
}

.adp-checkout__step {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 12px;
	padding: 0 16px;
	border: 0;
	background: transparent;
	color: var(--adp-checkout-text);
	cursor: pointer;
	text-align: center;
}

.adp-checkout__step::before {
	content: "";
	position: absolute;
	top: 18px;
	left: calc(-50% + 22px);
	width: calc(100% - 44px);
	height: 2px;
	background: var(--adp-checkout-border-strong);
}

.adp-checkout__step:first-child::before {
	display: none;
}

.adp-checkout__step-number {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 3px solid var(--adp-checkout-border-strong);
	border-radius: 50%;
	background: var(--adp-checkout-surface);
	color: transparent;
	flex: 0 0 auto;
}

.adp-checkout__step.is-active .adp-checkout__step-number,
.adp-checkout__step.is-complete .adp-checkout__step-number {
	border-color: var(--adp-checkout-primary);
	background: var(--adp-checkout-primary);
}

.adp-checkout__step-text {
	display: grid;
	gap: 6px;
	justify-items: center;
}

.adp-checkout__step-meta {
	color: var(--adp-checkout-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
}

.adp-checkout__step-label {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.24;
}

.adp-checkout__notice {
	padding: 14px 18px;
	border: 1px solid rgba(165, 83, 55, 0.16);
	border-radius: var(--adp-checkout-radius-sm);
	background: #f8ede8;
	color: #8d4e36;
	font-size: 14px;
	line-height: 1.6;
}

.adp-checkout__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
	gap: 28px;
	align-items: start;
}

.adp-checkout__main,
.adp-checkout__sidebar {
	min-width: 0;
}

.adp-checkout__main {
	display: grid;
	gap: 20px;
}

.adp-checkout__sidebar-card,
.adp-checkout__address-section,
.adp-checkout__delivery-overview,
.adp-checkout__card {
	border: 1px solid var(--adp-checkout-border);
	border-radius: var(--adp-checkout-radius-xl);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 248, 243, 0.98) 100%);
	box-shadow: var(--adp-checkout-shadow);
}

.adp-checkout__sidebar-card {
	position: sticky;
	top: 20px;
	padding: 22px;
}

.adp-checkout__address-section,
.adp-checkout__delivery-overview,
.adp-checkout__card {
	padding: 26px;
}

.adp-checkout__section-heading,
.adp-checkout__panel-header,
.adp-checkout__subsection {
	display: grid;
	gap: 8px;
}

.adp-checkout__section-heading {
	margin-bottom: 18px;
}

.adp-checkout__section-heading h3,
.adp-checkout__panel-title {
	margin: 0;
	font-size: 31px;
	line-height: 1.14;
	letter-spacing: -0.03em;
}

.adp-checkout__section-heading p,
.adp-checkout__panel-description,
.adp-checkout__subsection-description {
	margin: 0;
	color: var(--adp-checkout-muted);
	font-size: 14px;
	line-height: 1.7;
}

.adp-checkout__subsection {
	margin: 2px 0 14px;
}

.adp-checkout__subsection-title {
	margin: 0;
	font-size: 19px;
	line-height: 1.3;
}

.adp-checkout__panel + .adp-checkout__panel {
	margin-top: 16px;
}

.adp-checkout__panel-body {
	display: grid;
	gap: 16px;
}

.adp-checkout__panel-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 24px;
}

.adp-checkout__primary-button,
.adp-checkout__secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border-radius: 16px;
	font-size: 14px;
	font-weight: 700;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.adp-checkout__primary-button {
	border: 0;
	background: linear-gradient(135deg, var(--adp-checkout-primary) 0%, #728957 100%);
	color: #ffffff;
	box-shadow: 0 14px 30px rgba(95, 116, 70, 0.2);
}

.adp-checkout__primary-button:hover,
.adp-checkout__primary-button:focus-visible {
	background: linear-gradient(135deg, var(--adp-checkout-primary-hover) 0%, #62784a 100%);
	outline: none;
	transform: translateY(-1px);
}

.adp-checkout__secondary-button {
	border: 1px solid var(--adp-checkout-border);
	background: #ffffff;
	color: var(--adp-checkout-primary);
}

.adp-checkout__secondary-button:hover,
.adp-checkout__secondary-button:focus-visible {
	border-color: rgba(95, 116, 70, 0.32);
	background: var(--adp-checkout-primary-soft);
	outline: none;
	transform: translateY(-1px);
}

.adp-checkout__payment-helper,
.adp-checkout__payment-panel-copy-description {
	margin: 0;
	color: var(--adp-checkout-muted);
	font-size: 13px;
	line-height: 1.7;
}

.adp-checkout__payment-panel-copy {
	padding: 18px 20px;
	border: 1px dashed var(--adp-checkout-border-strong);
	border-radius: var(--adp-checkout-radius-md);
	background: var(--adp-checkout-surface-soft);
}

.adp-checkout__payment-panel-copy-title {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.3;
}

.adp-checkout__delivery-overview-head,
.adp-checkout__review-summary-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.adp-checkout__delivery-overview-head strong,
.adp-checkout__review-summary-head strong {
	font-size: 17px;
	line-height: 1.3;
}

.adp-checkout__delivery-overview-head span,
.adp-checkout__review-summary-head span,
.adp-checkout__delivery-overview-note,
.adp-checkout__review-summary-note {
	color: var(--adp-checkout-muted);
	font-size: 13px;
	line-height: 1.65;
}

.adp-checkout__delivery-overview-note,
.adp-checkout__review-summary-note {
	margin: 14px 0 0;
}

.adp-checkout__delivery-overview-grid,
.adp-checkout__review-summary-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.adp-checkout__delivery-overview-grid > div,
.adp-checkout__review-summary-grid > div {
	min-width: 0;
	padding: 15px 16px;
	border: 1px solid rgba(229, 227, 218, 0.9);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.9);
}

.adp-checkout__delivery-overview-grid > div:first-child,
.adp-checkout__review-summary-grid > div:first-child {
	grid-column: 1 / -1;
}

.adp-checkout__delivery-overview-grid span,
.adp-checkout__review-summary-grid span {
	display: block;
	margin-bottom: 6px;
	color: var(--adp-checkout-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.adp-checkout__delivery-overview-grid strong,
.adp-checkout__review-summary-grid strong {
	display: block;
	font-size: 14px;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.adp-checkout__overview-link {
	color: var(--adp-checkout-primary);
	font-weight: 700;
	text-decoration: none;
}

.adp-checkout__overview-link:hover,
.adp-checkout__overview-link:focus-visible {
	color: var(--adp-checkout-primary-hover);
	text-decoration: underline;
	outline: none;
}

.adp-checkout-shortcode .woocommerce-info,
.adp-checkout-shortcode .woocommerce-error,
.adp-checkout-shortcode .woocommerce-message {
	margin: 0 0 16px;
	padding: 16px 18px;
	border: 1px solid var(--adp-checkout-border);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 12px 24px rgba(31, 31, 26, 0.04);
}

.adp-checkout-form .adp-checkout__legacy-heading,
.adp-checkout-form .adp-checkout__legacy-container,
.adp-checkout-form .adp-checkout-hidden,
.adp-checkout-form #ship-to-different-address {
	display: none !important;
}

.adp-checkout-form .adp-checkout__panel .col-1,
.adp-checkout-form .adp-checkout__panel .col-2,
.adp-checkout-form .adp-checkout__panel .woocommerce-billing-fields,
.adp-checkout-form .adp-checkout__panel .woocommerce-shipping-fields {
	float: none;
	width: 100%;
	max-width: none;
}

.adp-checkout-form .adp-checkout__panel .woocommerce-billing-fields > h3,
.adp-checkout-form .adp-checkout__panel .woocommerce-shipping-fields > h3 {
	display: none;
}

.adp-checkout-form .adp-checkout__panel .form-row {
	margin-bottom: 16px;
}

.adp-checkout-form .adp-checkout__panel label {
	display: block;
	margin-bottom: 8px;
	color: var(--adp-checkout-text);
	font-size: 13px;
	font-weight: 700;
}

.adp-checkout-form .adp-checkout__panel .input-text,
.adp-checkout-form .adp-checkout__panel select,
.adp-checkout-form .adp-checkout__panel textarea,
.adp-checkout-shortcode .select2-container--default .select2-selection--single {
	width: 100%;
	min-height: 52px;
	border: 1px solid var(--adp-checkout-border);
	border-radius: 16px;
	background: #ffffff;
	color: var(--adp-checkout-text);
	box-shadow: inset 0 1px 2px rgba(31, 31, 26, 0.02);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.adp-checkout-form .adp-checkout__panel textarea {
	min-height: 136px;
	padding-top: 16px;
	resize: vertical;
}

.adp-checkout-form .adp-checkout__panel .input-text:focus,
.adp-checkout-form .adp-checkout__panel select:focus,
.adp-checkout-form .adp-checkout__panel textarea:focus,
.adp-checkout-shortcode .select2-container--default.select2-container--focus .select2-selection--single,
.adp-checkout-shortcode .select2-container--default.select2-container--open .select2-selection--single {
	border-color: rgba(95, 116, 70, 0.4);
	box-shadow: 0 0 0 4px rgba(95, 116, 70, 0.12);
	outline: none;
}

.adp-checkout-form .adp-checkout__panel .woocommerce-input-wrapper,
.adp-checkout-shortcode .select2-container {
	display: block;
	width: 100% !important;
}

.adp-checkout-shortcode .select2-container--default .select2-selection--single {
	display: flex;
	align-items: center;
	padding: 0 14px;
}

.adp-checkout-shortcode .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 1.4;
	padding: 0;
	color: var(--adp-checkout-text);
}

.adp-checkout-shortcode .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	right: 10px;
}

.adp-checkout-form .adp-checkout__panel .form-row-wide,
.adp-checkout-form .adp-checkout__panel .form-row-first,
.adp-checkout-form .adp-checkout__panel .form-row-last {
	width: 100%;
}

.adp-checkout-form .adp-checkout__order-review {
	display: grid;
	gap: 18px;
}

.adp-checkout-form .adp-checkout__order-review .shop_table,
.adp-checkout-form .adp-checkout__order-review #payment {
	margin: 0;
	border: 1px solid var(--adp-checkout-border);
	border-radius: 22px;
	overflow: hidden;
	background: #ffffff;
}

.adp-checkout-form .adp-checkout__order-review .shop_table {
	border-collapse: separate;
	border-spacing: 0;
}

.adp-checkout-form .adp-checkout__order-review .shop_table thead th {
	padding: 16px 18px;
	border-bottom: 1px solid var(--adp-checkout-border);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--adp-checkout-muted);
}

.adp-checkout-form .adp-checkout__order-review .shop_table tbody td,
.adp-checkout-form .adp-checkout__order-review .shop_table tfoot th,
.adp-checkout-form .adp-checkout__order-review .shop_table tfoot td {
	padding: 14px 18px;
	border-top: 1px solid var(--adp-checkout-border);
	font-size: 14px;
}

.adp-checkout-form .adp-checkout__order-review .shop_table tbody tr:first-child td,
.adp-checkout-form .adp-checkout__order-review .shop_table tfoot tr:first-child th,
.adp-checkout-form .adp-checkout__order-review .shop_table tfoot tr:first-child td {
	border-top: 0;
}

.adp-checkout-form .adp-checkout__order-review .product-name {
	color: var(--adp-checkout-text);
	font-weight: 600;
}

.adp-checkout-form .adp-checkout__order-review .product-total,
.adp-checkout-form .adp-checkout__order-review .order-total td,
.adp-checkout-form .adp-checkout__order-review .order-total th {
	font-weight: 700;
}

.adp-checkout-form .adp-checkout__order-review #payment {
	padding: 0;
	background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.adp-checkout-form .adp-checkout__order-review #payment ul.payment_methods {
	margin: 0;
	padding: 18px 20px 14px;
	border-bottom: 1px solid var(--adp-checkout-border);
}

.adp-checkout-form .adp-checkout__order-review #payment ul.payment_methods li {
	margin-bottom: 12px;
}

.adp-checkout-form .adp-checkout__order-review #payment ul.payment_methods li:last-child {
	margin-bottom: 0;
}

.adp-checkout-form .adp-checkout__order-review #payment div.payment_box {
	margin: 10px 0 0;
	padding: 14px 16px;
	border-radius: 14px;
	background: var(--adp-checkout-primary-soft);
	color: var(--adp-checkout-text);
}

.adp-checkout-form .adp-checkout__order-review #payment .form-row.place-order {
	margin: 0;
	padding: 18px 20px 20px;
}

.adp-checkout-form .adp-checkout__order-review #payment #place_order {
	float: none;
	width: 100%;
	min-height: 54px;
	border: 0;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--adp-checkout-primary) 0%, #718955 100%);
	box-shadow: 0 16px 30px rgba(95, 116, 70, 0.22);
}

.adp-checkout-form .adp-checkout__order-review #payment #place_order:hover,
.adp-checkout-form .adp-checkout__order-review #payment #place_order:focus-visible {
	background: linear-gradient(135deg, var(--adp-checkout-primary-hover) 0%, #607548 100%);
	outline: none;
}

.adp-checkout-form .adp-checkout__order-review #payment .place-order .woocommerce-terms-and-conditions-wrapper,
.adp-checkout-form .adp-checkout__order-review #payment .place-order .payment_method_paypal {
	margin-bottom: 14px;
}

.adp-checkout-shortcode .adp-checkout__address-selector .adp-region-selector,
.adp-checkout-shortcode .adp-checkout__address-selector .adp-region-selector__modal-card,
.adp-checkout-shortcode .adp-checkout__address-selector .adp-region-selector__shell {
	max-width: none;
}

.adp-checkout-shortcode .adp-checkout__address-selector .adp-region-selector__summary {
	border-radius: 22px;
}

@media (min-width: 860px) {
	.adp-checkout-form .adp-checkout__panel .form-row-first,
	.adp-checkout-form .adp-checkout__panel .form-row-last {
		width: calc(50% - 8px);
	}

	.adp-checkout-form .adp-checkout__panel .form-row-first {
		float: left;
	}

	.adp-checkout-form .adp-checkout__panel .form-row-last {
		float: right;
	}
}

@media (max-width: 1080px) {
	.adp-checkout__layout {
		grid-template-columns: 1fr;
	}

	.adp-checkout__sidebar-card {
		position: static;
	}
}

@media (max-width: 860px) {
	.adp-checkout-shortcode {
		padding: 24px 16px 56px;
	}

	.adp-checkout__stepper,
	.adp-checkout__delivery-overview-grid,
	.adp-checkout__review-summary-grid {
		grid-template-columns: 1fr;
	}

	.adp-checkout__step {
		padding: 0 8px;
	}

	.adp-checkout__step-label {
		font-size: 16px;
	}

	.adp-checkout__panel-footer {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.adp-checkout__primary-button,
	.adp-checkout__secondary-button {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.adp-checkout-shortcode__brand-logo {
		max-width: 148px;
		max-height: 52px;
	}

	.adp-checkout__header h2,
	.adp-checkout__section-heading h3,
	.adp-checkout__panel-title {
		font-size: 26px;
	}

	.adp-checkout__address-section,
	.adp-checkout__delivery-overview,
	.adp-checkout__card,
	.adp-checkout__sidebar-card {
		padding: 20px;
		border-radius: 24px;
	}

	.adp-checkout__stepper {
		gap: 10px;
	}

	.adp-checkout__step::before {
		display: none;
	}

	.adp-checkout__step-number {
		width: 34px;
		height: 34px;
	}
}
