.woocommerce-checkout #billing_phone_field .fdc-clear-phone {
	display: inline-block;
	margin-top: 4px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: #b42318;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: underline;
	cursor: pointer;
}

.woocommerce-checkout #billing_phone_field .fdc-clear-phone:hover,
.woocommerce-checkout #billing_phone_field .fdc-clear-phone:focus {
	background: transparent;
	color: #8f1d14;
	text-decoration: none;
}

.woocommerce-checkout .fdc-fulfillment-choice {
	margin: 0 0 12px;
	padding: 16px;
	border: 1px solid rgba(25, 35, 50, .12);
	border-radius: 16px;
	background: rgba(255, 255, 255, .72);
}

.woocommerce-checkout .fdc-fulfillment-choice h2,
.woocommerce-checkout .fdc-pickup-point-field h3 {
	margin: 0 0 10px;
}

.woocommerce-checkout .fdc-fulfillment-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.woocommerce-checkout .fdc-fulfillment-option {
	display: flex;
	min-height: 64px;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	padding: 11px 14px;
	border: 1px solid rgba(25, 35, 50, .16);
	border-radius: 13px;
	background: #fff;
	color: inherit;
	text-align: left;
	cursor: pointer;
}

.woocommerce-checkout .fdc-fulfillment-option strong { font-size: 17px; }
.woocommerce-checkout .fdc-fulfillment-option span { font-size: 13px; opacity: .72; }
.woocommerce-checkout .fdc-fulfillment-option.is-selected {
	border-color: currentColor;
	background: rgba(255, 117, 24, .08);
	box-shadow: 0 0 0 2px rgba(255, 117, 24, .12);
}

.woocommerce-checkout .fdc-pickup-point-field {
	margin: 0 0 14px;
	padding: 13px 14px;
	border: 1px solid rgba(25, 35, 50, .12);
	border-radius: 14px;
	background: rgba(255, 117, 24, .055);
}

.woocommerce-checkout .fdc-pickup-point-address,
.woocommerce-checkout .fdc-pickup-point-phone { margin: 7px 0; }
.woocommerce-checkout .fdc-pickup-point-field select { width: 100%; }
.woocommerce-cart .fdc-minimum-order-notice { margin-bottom: 20px; }

.woocommerce-checkout .fdc-schedule-box {
	margin: 14px 0 0;
	padding: 14px;
	border: 1px solid rgba(25, 35, 50, .12);
	border-radius: 14px;
	background: rgba(255, 255, 255, .55);
}

.woocommerce-checkout .fdc-schedule-box h3 {
	margin: 0 0 10px;
}

.woocommerce-checkout .fdc-schedule-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 8px 12px;
	border: 1px solid rgba(25, 35, 50, .16);
	border-radius: 10px;
	cursor: pointer;
}

.woocommerce-checkout .fdc-schedule-toggle:has(input:checked) {
	border-color: currentColor;
	background: rgba(255, 117, 24, .08);
}

.woocommerce-checkout .fdc-scheduled-fields {
	margin-top: 10px;
}

.woocommerce-checkout .fdc-schedule-message {
	margin: 7px 0 0;
	font-size: 14px;
	opacity: .78;
}

.woocommerce-checkout .fdc-order-preferences {
	margin: 14px 0 0;
	padding: 14px;
	border: 1px solid rgba(25, 35, 50, .12);
	border-radius: 14px;
	background: rgba(255, 255, 255, .55);
}

.woocommerce-checkout .fdc-order-preferences h3 {
	margin: 0 0 10px;
}

.woocommerce-checkout .fdc-order-preferences .form-row {
	margin-bottom: 10px;
}

.woocommerce-checkout .fdc-order-preferences .fdc-no-call-field label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.woocommerce-checkout .fdc-field-hint {
	margin: -4px 0 0;
	font-size: 13px;
	opacity: .72;
}

.woocommerce-checkout .fdc-checkout-quantity {
	display: inline-flex;
	align-items: center;
	margin-left: 8px;
	border: 1px solid rgba(25, 35, 50, .18);
	border-radius: 8px;
	overflow: hidden;
	vertical-align: middle;
}

.woocommerce-checkout .fdc-quantity-button,
.woocommerce-checkout .fdc-quantity-input {
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	min-height: 32px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: inherit;
	font: inherit;
	line-height: 32px;
	text-align: center;
}

.woocommerce-checkout .fdc-quantity-button {
	cursor: pointer;
}

.woocommerce-checkout .fdc-quantity-button:hover,
.woocommerce-checkout .fdc-quantity-button:focus {
	background: rgba(255, 117, 24, .1);
}

.woocommerce-checkout .fdc-quantity-input {
	width: 38px;
	border-right: 1px solid rgba(25, 35, 50, .12);
	border-left: 1px solid rgba(25, 35, 50, .12);
	-moz-appearance: textfield;
}

.woocommerce-checkout .fdc-quantity-input::-webkit-inner-spin-button,
.woocommerce-checkout .fdc-quantity-input::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.woocommerce-checkout .fdc-quantity-updating {
	opacity: .55;
}

@media (max-width: 600px) {
	.woocommerce-checkout .fdc-fulfillment-choice { padding: 16px; }
	.woocommerce-checkout .fdc-fulfillment-options { grid-template-columns: 1fr; }
	.woocommerce-checkout .fdc-fulfillment-option { min-height: 70px; }
	.woocommerce-checkout .fdc-schedule-box {
		padding: 16px;
	}
	.woocommerce-checkout .fdc-order-preferences { padding: 16px; }
	.woocommerce-checkout .fdc-schedule-toggle {
		display: flex;
		width: 100%;
	}
	.woocommerce-checkout .fdc-scheduled-fields .form-row-first,
	.woocommerce-checkout .fdc-scheduled-fields .form-row-last {
		float: none;
		width: 100%;
	}
	.woocommerce-checkout :where(
		#billing_house_field,
		#billing_building_field,
		#billing_apartment_field,
		#billing_entrance_field,
		#billing_floor_field,
		#billing_intercom_field
	) {
		float: none !important;
		clear: both;
		width: 100% !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
}

/* A single-city shop already knows its country, region and city. The block
 * cart can otherwise redraw its own address calculator even when the classic
 * WooCommerce calculator is disabled server-side. */
.fdc-single-city-delivery.woocommerce-cart .wc-block-components-shipping-calculator,
.fdc-single-city-delivery.woocommerce-cart .wc-block-components-totals-shipping__change-address__link,
.fdc-single-city-delivery.woocommerce-cart .wc-block-components-totals-shipping__change-address-button {
	display: none !important;
}
.fdc-store-contacts,
.fdc-auth-links {
	display: grid;
	gap: 16px;
}

.fdc-saved-address-field { margin-bottom: 14px; padding: 11px 12px; border: 1px solid rgba(20,31,53,.1); border-radius: 12px; background: rgba(20,31,53,.035); }
.fdc-saved-address-field select { width: 100%; }

.fdc-cart-extra-text,
.fdc-checkout-extra-text,
.fdc-footer-extra-text,
.fdc-store-content {
	margin: 20px 0;
	padding: 18px 20px;
	border-radius: 14px;
	background: var(--global-palette9, #fff);
	border: 1px solid rgba(20, 31, 53, .1);
}

.fdc-footer-extra-text {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.woocommerce-cart .fdc-cart-birthday {
	margin: 0 0 14px;
	padding: 14px 16px;
	border: 1px solid rgba(20, 31, 53, .12);
	border-radius: 12px;
	background: var(--global-palette9, #fff);
	transition: opacity .2s ease;
}
.woocommerce-cart .fdc-cart-birthday.is-updating { opacity: .55; }
.woocommerce-cart .fdc-cart-birthday label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	cursor: pointer;
}
.woocommerce-cart .fdc-cart-birthday input {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	flex: 0 0 auto;
}
.woocommerce-cart .fdc-cart-birthday span { display: grid; gap: 2px; }
.woocommerce-cart .fdc-cart-birthday strong { line-height: 1.25; }
.woocommerce-cart .fdc-cart-birthday small { color: rgba(20, 31, 53, .65); line-height: 1.35; }
