/* 注册页整体卡片：白底、细边框、圆角、轻阴影 */
.ces-register {
	max-width: 620px;
	margin: 0 auto;
	padding: 28px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ces-register__head {
	text-align: center;
	margin-bottom: 24px;
}

.ces-register__head h2 {
	margin: 0 0 8px;
	font-size: 24px;
	line-height: 1.3;
}

.ces-register__head p {
	margin: 0;
	color: #6b7280;
	font-size: 14px;
}

.ces-register--logged-in {
	text-align: center;
	padding: 40px 28px;
}

.ces-register--logged-in p {
	margin: 0 0 16px;
}

.ces-field {
	margin-bottom: 16px;
}

.ces-label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
}

/* 输入框、下拉框等表单通用控件 */
.ces-input {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #ffffff;
	color: #111827;
	font-size: 15px;
	line-height: 1.4;
}

.ces-input:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.ces-input-row {
	display: flex;
	gap: 8px;
}

.ces-input-row .ces-input {
	flex: 1 1 auto;
	min-width: 0;
}

.ces-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

/* 性别等单选按钮组 */
.ces-options {
	display: flex;
	gap: 8px;
}

.ces-option {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
}

.ces-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ces-option span {
	display: block;
	text-align: center;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #f9fafb;
	color: #374151;
	font-size: 14px;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.ces-option:hover span {
	border-color: #9ca3af;
}

.ces-option input:checked + span,
.ces-option.is-active span {
	border-color: #2563eb;
	background: #eff6ff;
	color: #2563eb;
	font-weight: 600;
}

.ces-option input:focus-visible + span {
	outline: 2px solid #2563eb;
	outline-offset: 2px;
}

/* 通用按钮：发送验证码、提交注册 */
.ces-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s ease, opacity 0.15s ease;
}

.ces-btn--code {
	flex: 0 0 auto;
	padding: 0 14px;
	background: #111827;
	color: #ffffff;
	white-space: nowrap;
}

.ces-btn--code:hover {
	background: #1f2937;
}

.ces-btn--code:disabled {
	background: #9ca3af;
	cursor: not-allowed;
}

.ces-btn--submit {
	width: 100%;
	padding: 12px;
	background: #2563eb;
	color: #ffffff;
	font-size: 16px;
}

.ces-btn--submit:hover {
	background: #1d4ed8;
}

.ces-btn--submit:disabled {
	background: #93c5fd;
	cursor: not-allowed;
}

/* 页面内提示条：错误与成功两种状态 */
.ces-notice {
	padding: 10px 12px;
	margin-bottom: 16px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.5;
}

.ces-notice.error {
	background: #fef2f2;
	border-color: #fecaca;
	color: #b91c1c;
}

.ces-notice.success {
	background: #ecfdf5;
	border-color: #a7f3d0;
	color: #047857;
}

.ces-login-link {
	margin: 16px 0 0;
	text-align: center;
	font-size: 14px;
	color: #6b7280;
}

.ces-login-link a {
	color: #2563eb;
	text-decoration: none;
}

.ces-login-link a:hover {
	text-decoration: underline;
}

.login .ces-login-register,
.ces-woo-register {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
	text-align: center;
}

.login .ces-login-register-btn,
.ces-woo-register-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 9px 12px;
	border: 1px solid #2563eb;
	border-radius: 4px;
	background: #ffffff;
	color: #2563eb;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	box-sizing: border-box;
}

.login .ces-login-register-btn:hover,
.ces-woo-register-btn:hover {
	background: #eff6ff;
}

/* 我的账户登录表单：对齐注册页卡片风格 */
.woocommerce form.woocommerce-form-login {
	max-width: 620px;
	margin: 0 auto 32px;
	padding: 28px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	box-sizing: content-box;
}

.woocommerce h2:has(+ form.woocommerce-form-login) {
	max-width: 620px;
	margin: 0 auto 18px;
	text-align: center;
	font-size: 24px;
	line-height: 1.3;
}

.woocommerce form.woocommerce-form-login .woocommerce-form-row {
	margin: 0 0 16px;
	padding: 0;
}

.woocommerce form.woocommerce-form-login label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	line-height: 21.7px;
}

.woocommerce form.woocommerce-form-login input.input-text {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #ffffff;
	color: #111827;
	font-family: Arial, sans-serif;
	font-size: 15px;
	line-height: 1.4;
}

.woocommerce form.woocommerce-form-login input.input-text:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.woocommerce form.woocommerce-form-login .form-row:not(.form-row-wide) {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0;
}

.woocommerce form.woocommerce-form-login .woocommerce-form__label-for-checkbox {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}

.woocommerce form.woocommerce-form-login .button {
	width: 100%;
	padding: 12px;
	background: #2563eb;
	border: 0;
	border-radius: 6px;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	cursor: pointer;
	text-align: center;
	margin: 0;
}

.woocommerce form.woocommerce-form-login .button:hover {
	background: #1d4ed8;
}

.woocommerce form.woocommerce-form-login .lost_password {
	margin: 16px 0 0;
	text-align: center;
	font-size: 14px;
}

.woocommerce form.woocommerce-form-login .lost_password a {
	color: #2563eb;
	text-decoration: none;
}

/* 我的账户：左侧导航卡片与右侧内容卡片 */
.woocommerce .woocommerce-MyAccount-navigation {
	float: left;
	width: 240px;
	box-sizing: border-box;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	padding: 8px 0;
}

.woocommerce .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce .woocommerce-MyAccount-navigation li {
	margin: 0;
	border-bottom: 1px solid #f3f4f6;
}

.woocommerce .woocommerce-MyAccount-navigation li:last-child {
	border-bottom: 0;
}

.woocommerce .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 12px 18px;
	color: #374151;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}

.woocommerce .woocommerce-MyAccount-navigation a:hover {
	background: #f9fafb;
	color: #1f2937;
}

.woocommerce .woocommerce-MyAccount-navigation li.is-active a {
	background: #eff6ff;
	color: #2563eb;
	font-weight: 600;
	box-shadow: inset 3px 0 0 #2563eb;
}

.woocommerce .woocommerce-MyAccount-content {
	float: left;
	width: calc(100% - 264px);
	margin-left: 24px;
	box-sizing: border-box;
	min-height: 320px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	padding: 28px;
	color: #111827;
	font-size: 15px;
	line-height: 1.6;
}

.woocommerce .woocommerce-MyAccount-content h2,
.woocommerce .woocommerce-MyAccount-content h3 {
	margin: 0 0 16px;
	color: #111827;
	font-family: Cardo, serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}

.woocommerce .woocommerce-MyAccount-content p {
	margin: 0 0 16px;
}

.woocommerce .woocommerce-MyAccount-content a {
	color: #2563eb;
	text-decoration: none;
}

.woocommerce .woocommerce-MyAccount-content a:hover {
	text-decoration: underline;
}

.woocommerce .woocommerce-MyAccount-content .button,
.woocommerce .woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce .woocommerce-EditAccountForm .button,
.woocommerce .woocommerce-EditAccountForm .woocommerce-Button {
	display: inline-block;
	padding: 10px 18px;
	background: #2563eb;
	border: 0;
	border-radius: 6px;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: normal;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.woocommerce .woocommerce-MyAccount-content .button:hover,
.woocommerce .woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce .woocommerce-EditAccountForm .button:hover,
.woocommerce .woocommerce-EditAccountForm .woocommerce-Button:hover {
	background: #1d4ed8;
	color: #ffffff;
}

.woocommerce .woocommerce-MyAccount-content form .woocommerce-form-row {
	margin: 0 0 16px;
	padding: 0;
}

.woocommerce .woocommerce-MyAccount-content form label {
	display: block;
	margin-bottom: 8px;
	color: #111827;
	font-size: 14px;
	font-weight: 600;
	line-height: 21.7px;
}

.woocommerce .woocommerce-MyAccount-content form input.input-text,
.woocommerce .woocommerce-MyAccount-content form select,
.woocommerce .woocommerce-EditAddressForm input.input-text,
.woocommerce .woocommerce-EditAddressForm select {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #ffffff;
	color: #111827;
	font-family: Arial, sans-serif;
	font-size: 15px;
	line-height: 1.4;
}

.woocommerce .woocommerce-MyAccount-content form input.input-text:focus,
.woocommerce .woocommerce-MyAccount-content form select:focus,
.woocommerce .woocommerce-EditAddressForm input.input-text:focus,
.woocommerce .woocommerce-EditAddressForm select:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.woocommerce .woocommerce-EditAccountForm fieldset {
	margin: 24px 0 32px;
	padding: 20px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-sizing: border-box;
}

.woocommerce .woocommerce-EditAccountForm legend {
	padding: 6px 12px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	color: #111827;
	font-family: Cardo, serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

.woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce .woocommerce-Addresses {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 0;
}

.woocommerce .woocommerce-MyAccount-content .woocommerce .woocommerce-Address {
	box-sizing: border-box;
	margin: 0;
	padding: 20px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
}

.woocommerce .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 12px;
}

.woocommerce .woocommerce-Address-title h2 {
	margin: 0;
	font-size: 18px;
}

.woocommerce .woocommerce-Address-title .edit {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.woocommerce .woocommerce-Address address {
	color: #6b7280;
	font-size: 14px;
	font-style: normal;
	line-height: 1.7;
}

.woocommerce .woocommerce-MyAccount-content .wc-block-components-notice-banner {
	margin-bottom: 16px;
	padding: 12px 16px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 6px;
	color: #1e40af;
	font-size: 14px;
	line-height: 1.6;
}

.woocommerce .woocommerce-MyAccount-content .wc-block-components-notice-banner a {
	color: #1d4ed8;
	font-weight: 600;
}

.woocommerce .woocommerce-MyAccount-content .woocommerce-message,
.woocommerce .woocommerce-MyAccount-content .woocommerce-info {
	margin-bottom: 16px;
	/* padding: 12px 16px; */
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: 6px;
	color: #047857;
	font-size: 14px;
}

.woocommerce .woocommerce-MyAccount-content .woocommerce-error {
	margin-bottom: 16px;
	padding: 12px 16px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 6px;
	color: #b91c1c;
	font-size: 14px;
}

.woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table,
.woocommerce .woocommerce-MyAccount-content .woocommerce-table--order-downloads {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 16px;
}

.woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th,
.woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td,
.woocommerce .woocommerce-MyAccount-content .woocommerce-table--order-downloads th,
.woocommerce .woocommerce-MyAccount-content .woocommerce-table--order-downloads td {
	padding: 12px;
	border-bottom: 1px solid #f3f4f6;
	font-size: 14px;
	text-align: left;
	vertical-align: middle;
}

.woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table thead th,
.woocommerce .woocommerce-MyAccount-content .woocommerce-table--order-downloads thead th {
	background: #f9fafb;
	color: #111827;
	font-weight: 600;
}

@media (max-width: 480px) {
	.ces-register {
		padding: 20px;
	}

	.woocommerce form.woocommerce-form-login {
		padding: 20px;
	}

	.ces-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.ces-input-row {
		flex-direction: column;
	}

	.ces-btn--code {
		width: 100%;
		padding: 10px;
	}
}

@media (max-width: 768px) {
	.woocommerce .woocommerce-MyAccount-navigation,
	.woocommerce .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
		margin-left: 0;
	}

	.woocommerce .woocommerce-MyAccount-navigation {
		margin-bottom: 16px;
	}

	.woocommerce .woocommerce-MyAccount-content {
		padding: 20px;
	}

	.woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce .woocommerce-Addresses {
		grid-template-columns: 1fr;
	}
}

/* 结算页：桌面端左右两栏网格布局与控件样式 */
@media (min-width: 782px) {
	.wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr) !important;
		align-items: start !important;
		gap: 24px !important;
	}
}

.wc-block-checkout__main,
.wc-block-checkout__sidebar,
.wp-block-woocommerce-checkout-fields-block,
.wp-block-woocommerce-checkout-totals-block {
	box-sizing: border-box;
	width: 100% !important;
	max-width: 100%;
	min-width: 0;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	padding: 28px;
}

.wc-block-checkout .wc-block-components-title,
.wc-block-checkout .wc-block-components-checkout-step__title {
	margin: 0 0 16px;
	color: #111827;
	font-family: Cardo, serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.3;
}

.wc-block-checkout .wc-block-components-checkout-step__description {
	margin-bottom: 16px;
	color: #6b7280;
	font-size: 14px;
}

.wc-block-checkout .wc-block-components-form .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-form .wc-block-components-select select,
.wc-block-checkout .wc-block-components-form .wc-block-components-combobox input,
.wc-block-checkout .wc-block-components-form .wc-block-components-country-input input,
.wc-block-checkout .wc-block-components-form .wc-block-components-state-input input,
.wc-block-checkout .wc-block-components-form input[type="text"],
.wc-block-checkout .wc-block-components-form input[type="email"],
.wc-block-checkout .wc-block-components-form input[type="tel"],
.wc-block-checkout .wc-block-components-form input[type="password"],
.wc-block-checkout .wc-block-components-form input[type="number"],
.wc-block-checkout .wc-block-components-form select,
.wc-block-checkout .wc-block-components-form textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #d1d5db !important;
	border-radius: 6px !important;
	background: #ffffff !important;
	color: #111827;
	font-family: Arial, sans-serif;
	font-size: 15px;
}

.wc-block-checkout .wc-block-components-form .wc-block-components-text-input input:focus,
.wc-block-checkout .wc-block-components-form .wc-block-components-select select:focus,
.wc-block-checkout .wc-block-components-form .wc-block-components-combobox input:focus,
.wc-block-checkout .wc-block-components-form .wc-block-components-country-input input:focus,
.wc-block-checkout .wc-block-components-form .wc-block-components-state-input input:focus,
.wc-block-checkout .wc-block-components-form input[type="text"]:focus,
.wc-block-checkout .wc-block-components-form input[type="email"]:focus,
.wc-block-checkout .wc-block-components-form input[type="tel"]:focus,
.wc-block-checkout .wc-block-components-form input[type="password"]:focus,
.wc-block-checkout .wc-block-components-form input[type="number"]:focus,
.wc-block-checkout .wc-block-components-form select:focus,
.wc-block-checkout .wc-block-components-form textarea:focus {
	outline: none;
	border-color: #2563eb !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}

.wc-block-checkout .wc-block-components-form .wc-block-components-text-input label {
	color: #111827;
	font-size: 14px;
	font-weight: 600;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button {
	width: 100%;
	padding: 12px;
	background: #2563eb;
	border: 0;
	border-radius: 6px;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	text-align: center;
	cursor: pointer;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button:hover {
	background: #1d4ed8;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button:disabled {
	background: #93c5fd;
	cursor: not-allowed;
}

.wc-block-checkout .wc-block-components-order-summary {
	margin-top: 16px;
	border-top: 1px solid #f3f4f6;
}

.wc-block-checkout .wc-block-components-order-summary-item {
	padding: 12px 0;
	border-bottom: 1px solid #f3f4f6;
}

.wc-block-checkout .wc-block-components-product-name {
	color: #111827;
	font-size: 15px;
	font-weight: 600;
}

.wc-block-checkout .wc-block-components-product-metadata {
	color: #6b7280;
	font-size: 13px;
}

.wc-block-checkout .wc-block-components-totals-wrapper {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #e5e7eb;
}

.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-discount-block:empty,
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-fee-block:empty {
	display: none;
}

.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-shipping-block {
	border-top: 0 !important;
}

.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-coupon-form-block {
	border-bottom: 0 !important;
}

.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-totals-block {
	border-top: 0 !important;
}

.wc-block-checkout .wc-block-components-totals-item {
	padding: 6px 0;
	color: #111827;
	font-size: 14px;
}

.wc-block-checkout .wc-block-components-totals-item__label {
	color: #6b7280;
}

.wc-block-checkout .wc-block-components-totals-item__value {
	font-weight: 600;
}

.wc-block-checkout .wc-block-components-checkout-actions {
	margin-top: 24px;
}

.wc-block-checkout .wc-block-components-panel__button {
	padding: 8px 0;
	background: none;
	border: 0;
	color: #2563eb;
	font-size: 14px;
	font-weight: 600;
}

.wc-block-checkout .wc-block-components-panel__content {
	padding: 8px 0 16px;
}

.wc-block-checkout .wc-block-components-radio-control__option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border: 1px solid transparent;
	border-radius: 6px;
	cursor: pointer;
}

.wc-block-checkout .wc-block-components-radio-control__option:hover {
	background: #f9fafb;
}

.wc-block-checkout .wc-block-components-radio-control__option--checked-option-highlighted {
	background: #eff6ff;
	border-color: #2563eb;
}

.wc-block-checkout .wc-block-components-radio-control__input {
	flex: 0 0 auto;
	align-self: center !important;
	width: 18px;
	height: 18px;
	margin: -2px 0 0 0 !important;
	accent-color: #2563eb;
}

.wc-block-checkout .wc-block-components-radio-control__option-layout {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
}

.wc-block-checkout .wc-block-components-radio-control__label {
	color: #111827;
	font-size: 14px;
	font-weight: 600;
	padding-left: 30px;
}

.wc-block-checkout .wc-block-components-radio-control__label-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 12px;
}

.wc-block-checkout .wc-block-components-radio-control__secondary-label {
	margin-left: auto;
	color: #111827;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.wc-block-checkout .wc-block-components-radio-control__secondary-description {
	color: #6b7280;
	font-size: 13px;
}

.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block {
	padding: 0 12px;
}

.wc-block-checkout .wc-block-components-checkbox label {
	color: #111827;
	font-size: 14px;
}

.wc-block-checkout .wc-block-components-notice-banner {
	margin-bottom: 16px;
	padding: 12px 16px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 6px;
	color: #1e40af;
	font-size: 14px;
	line-height: 1.6;
}

@media (max-width: 782px) {
	.wc-block-components-sidebar-layout.wc-block-checkout {
		display: block !important;
	}

	.wc-block-checkout .wc-block-checkout__main,
	.wc-block-checkout .wc-block-checkout__sidebar,
	.wc-block-checkout .wp-block-woocommerce-checkout-fields-block,
	.wc-block-checkout .wp-block-woocommerce-checkout-totals-block {
		padding: 20px !important;
	}

	.wc-block-checkout .wc-block-checkout__sidebar {
		display: none !important;
	}

	.wc-block-checkout .wc-block-checkout__actions {
		margin-top: 40px !important;
	}

	.wc-block-checkout .checkout-order-summary-block-fill-wrapper {
		margin-bottom: 24px !important;
	}
}
