/* ==========================================================================
   Unicorn Elementor Blocks — WooCommerce Checkout
   Standalone hand-written stylesheet. All selectors scoped under .ueb-checkout.
   WooCommerce's own checkout CSS is left enqueued; a handful of !important
   rules below override its ID-heavy selectors for the inputs / payment box.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.ueb-checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 456px;
	gap: clamp(32px, 4vw, 96px);
	max-width: 1280px;
	margin: 0 auto;
	padding: 8px clamp(16px, 4vw, 32px) 80px;
	box-sizing: border-box;
	font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
	color: #1b1c19;
}

.ueb-checkout *,
.ueb-checkout *::before,
.ueb-checkout *::after {
	box-sizing: border-box;
}

.ueb-checkout__notices {
	grid-column: 1 / -1;
}

.ueb-checkout__notices:empty {
	display: none;
}

.ueb-checkout__main {
	display: flex;
	flex-direction: column;
	gap: 28px;
	min-width: 0;
}

/* --------------------------------------------------------------------------
   Heading
   -------------------------------------------------------------------------- */
.ueb-checkout__intro {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ueb-checkout__title {
	margin: 0;
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
	letter-spacing: -0.9px;
	color: #1b1c19;
}

.ueb-checkout__subtitle {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
	color: #44474c;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.ueb-checkout__section {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* The delivery-time section is [hidden] while Local pickup is selected —
   the attribute alone loses to the display:flex above. */
.ueb-checkout__section[hidden] {
	display: none;
}

.ueb-checkout__section-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ueb-checkout__step {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: #1b1c19;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

.ueb-checkout__section-title {
	margin: 0;
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	color: #1b1c19;
}

/* --------------------------------------------------------------------------
   Form fields
   -------------------------------------------------------------------------- */
.ueb-checkout__fields {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* "Create an account?" + password fields (guests only). */
.ueb-checkout .woocommerce-account-fields {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ueb-checkout .woocommerce-account-fields div.create-account {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ueb-checkout .woocommerce-account-fields p.create-account {
	margin: 0;
}

.ueb-checkout .woocommerce-account-fields .clear {
	display: none;
}

.ueb-checkout .form-row {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ueb-checkout .ueb-checkout__hidden {
	display: none !important;
}

.ueb-checkout .form-row label,
.ueb-checkout__field-label {
	margin: 0;
	font-family: Inter, Helvetica, Arial, sans-serif;
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #74777d;
}

.ueb-checkout abbr.required,
.ueb-checkout .optional {
	display: none;
}

.ueb-checkout .woocommerce-input-wrapper {
	display: block;
	width: 100%;
}

.ueb-checkout .input-text,
.ueb-checkout input[type="text"],
.ueb-checkout input[type="tel"],
.ueb-checkout input[type="email"],
.ueb-checkout input[type="password"],
.ueb-checkout textarea {
	width: 100% !important;
	margin: 0 !important;
	background: #f5f5f5 !important;
	border: 1px solid transparent !important;
	border-radius: 32px !important;
	padding: 16px 20px !important;
	font-family: Helvetica, "Helvetica Neue", Arial, sans-serif !important;
	font-size: 16px !important;
	line-height: 1.4 !important;
	color: #1b1c19 !important;
	box-shadow: none !important;
	outline: none !important;
	transition: border-color 0.15s ease, background-color 0.15s ease;
	-webkit-appearance: none;
	appearance: none;
}

.ueb-checkout textarea {
	border-radius: 22px !important;
	min-height: 84px;
	resize: vertical;
}

.ueb-checkout .input-text::placeholder,
.ueb-checkout textarea::placeholder {
	color: #6b7280;
	opacity: 1;
}

.ueb-checkout .input-text:focus,
.ueb-checkout input[type="text"]:focus,
.ueb-checkout input[type="tel"]:focus,
.ueb-checkout input[type="email"]:focus,
.ueb-checkout input[type="password"]:focus,
.ueb-checkout textarea:focus {
	background: #fff !important;
	border-color: #3a124d !important;
}

.ueb-checkout .woocommerce-invalid .input-text,
.ueb-checkout .woocommerce-invalid textarea {
	border-color: #d23b3b !important;
}

/* Keep every field row full width inside our single-column layout, overriding
   WooCommerce's float/width helpers (woocommerce-general stays enqueued here). */
.ueb-checkout .form-row-first,
.ueb-checkout .form-row-last,
.ueb-checkout .form-row-wide {
	width: 100% !important;
	float: none !important;
}

/* --------------------------------------------------------------------------
   Delivery time — pills
   -------------------------------------------------------------------------- */
.ueb-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.ueb-pills--slots {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* A hidden slot group — the [hidden] attribute alone loses to display:grid. */
.ueb-pills--slots[hidden] {
	display: none;
}

.ueb-pill {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-height: 54px;
	padding: 8px 22px;
	border: 1px solid #c4c6cc;
	border-radius: 32px;
	background: #fff;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ueb-pill--day {
	flex: 0 1 auto;
	min-width: 200px;
}

.ueb-pill input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.ueb-pill__title {
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: #1b1c19;
}

.ueb-pill__meta {
	font-size: 12px;
	line-height: 16px;
	color: #74777d;
}

.ueb-pill:hover {
	border-color: #3a124d;
}

.ueb-pill.is-selected {
	background: #3a124d;
	border-color: #3a124d;
}

.ueb-pill.is-selected .ueb-pill__title,
.ueb-pill.is-selected .ueb-pill__meta {
	color: #fff;
}

.ueb-pill input:focus-visible ~ .ueb-pill__title {
	outline: 2px solid #3a124d;
	outline-offset: 4px;
	border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Order summary — card
   -------------------------------------------------------------------------- */
.ueb-checkout__aside {
	align-self: start;
	background: #fbfaf8;
	border: 1px solid #efece6;
	border-radius: 24px;
	padding: 32px;
	min-width: 0;
}

.ueb-checkout__aside-title {
	margin: 0 0 8px;
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	color: #1b1c19;
}

.ueb-summary {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Cart items ---------------------------------------------------------------- */
.ueb-summary__items {
	list-style: none;
	margin: 0;
	padding: 8px 0 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ueb-summary__item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.ueb-summary__thumb {
	flex: 0 0 78px;
	width: 78px;
	height: 78px;
	border-radius: 8px;
	overflow: hidden;
	background: #f0eee9;
}

.ueb-summary__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ueb-summary__info {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ueb-summary__name {
	margin: 0;
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	color: #1b1c19;
}

.ueb-summary__variant {
	font-size: 12px;
	line-height: 16px;
	color: #44474c;
}

.ueb-summary__variant p {
	margin: 0;
}

.ueb-summary__item-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 6px;
}

.ueb-summary__price {
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	color: #1b1c19;
}

.ueb-summary__price .amount {
	font-weight: 600;
}

/* Quantity stepper --------------------------------------------------------- */
.ueb-qty {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 8px;
	background: #fff;
	border: 1px solid rgba(196, 198, 204, 0.45);
	border-radius: 999px;
}

.ueb-qty.is-loading {
	opacity: 0.55;
	pointer-events: none;
}

.ueb-qty__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #f3f1ee;
	color: #1b1c19;
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.ueb-qty__btn:hover,
.ueb-qty__btn:focus,
.ueb-qty__btn:focus-visible {
	background: #3a124d;
	color: #fff;
}

.ueb-qty__btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.ueb-qty__btn:disabled:hover,
.ueb-qty__btn:disabled:focus {
	background: #f3f1ee;
	color: #1b1c19;
}

.ueb-qty__value {
	min-width: 16px;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	color: #1b1c19;
}

/* Coupon ------------------------------------------------------------------- */
.ueb-coupon {
	display: flex;
	gap: 8px;
}

.ueb-coupon__input {
	flex: 1 1 auto;
	min-width: 0;
	background: #fff !important;
	border: 1px solid #e3e1da !important;
	border-radius: 32px !important;
	padding: 13px 16px !important;
	font-family: Inter, Helvetica, Arial, sans-serif !important;
	font-size: 14px !important;
	color: #1b1c19 !important;
	box-shadow: none !important;
	outline: none !important;
	-webkit-appearance: none;
	appearance: none;
}

.ueb-coupon__input::placeholder {
	color: #6b7280;
}

.ueb-coupon__input:focus {
	border-color: #3a124d !important;
}

.ueb-coupon__apply {
	flex: 0 0 auto;
	border: 0;
	border-radius: 32px;
	background: #1b1c19;
	color: #fff;
	padding: 12px 24px;
	font-family: Inter, Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.15s ease, opacity 0.15s ease;
}

.ueb-coupon__apply:hover,
.ueb-coupon__apply:focus,
.ueb-coupon__apply:focus-visible {
	background: #3a124d;
	color: #fff;
}

.ueb-coupon__apply.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

.ueb-coupon__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	margin-left: 6px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(126, 87, 0, 0.14);
	color: #7e5700;
	font-size: 13px;
	line-height: 1;
	cursor: pointer;
	vertical-align: middle;
}

.ueb-coupon__remove:hover,
.ueb-coupon__remove:focus {
	background: #7e5700;
	color: #fff;
}

/* Totals ------------------------------------------------------------------- */
.ueb-summary__totals {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid rgba(196, 198, 204, 0.4);
}

.ueb-summary__line {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	font-size: 14px;
	line-height: 20px;
}

.ueb-summary__line-label {
	color: #44474c;
}

.ueb-summary__line-value {
	color: #1b1c19;
	font-weight: 500;
	white-space: nowrap;
}

.ueb-summary__line--discount .ueb-summary__line-value {
	color: #7e5700;
}

.ueb-summary__shipping {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ueb-ship {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #44474c;
	cursor: pointer;
}

.ueb-ship input {
	accent-color: #3a124d;
}

.ueb-ship__name {
	flex: 1 1 auto;
}

.ueb-ship__cost {
	font-weight: 500;
	color: #1b1c19;
}

.ueb-summary__line--total {
	align-items: flex-end;
	margin-top: 4px;
	padding-top: 17px;
	border-top: 1px solid rgba(196, 198, 204, 0.4);
}

.ueb-summary__line--total .ueb-summary__line-label {
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	color: #1b1c19;
}

.ueb-summary__line--total .ueb-summary__line-value {
	font-size: 30px;
	line-height: 36px;
	font-weight: 800;
	letter-spacing: -1.5px;
	color: #3a124d;
}

/* --------------------------------------------------------------------------
   Payment box
   -------------------------------------------------------------------------- */
#payment.ueb-payment {
	margin-top: 24px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#payment.ueb-payment .ueb-payment__methods {
	margin: 0;
	padding: 0;
	list-style: none;
	background: transparent;
	border: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

#payment.ueb-payment .ueb-payment__methods > li {
	margin: 0;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #e3e1da;
	border-radius: 16px;
	list-style: none;
}

#payment.ueb-payment .ueb-payment__methods > li::before,
#payment.ueb-payment .ueb-payment__methods > li::after {
	display: none;
}

#payment.ueb-payment .ueb-payment__methods label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-family: Inter, Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #1b1c19;
}

#payment.ueb-payment .ueb-payment__methods input[type="radio"] {
	accent-color: #3a124d;
}

.ueb-checkout #payment.ueb-payment div.payment_box {
	width: auto;
	margin: 10px 0 0;
	padding: 10px 0 0;
	background: transparent;
	border-top: 1px solid #efece6;
	border-radius: 0;
	font-size: 13px;
	line-height: 1.5;
	color: #44474c;
}

.ueb-checkout #payment.ueb-payment div.payment_box::before {
	display: none;
}

.ueb-checkout #payment.ueb-payment div.payment_box p:last-child {
	margin-bottom: 0;
}

/* Consent checkboxes ------------------------------------------------------- */
.ueb-payment__consent {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ueb-check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
}

.ueb-check__input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.ueb-check__box {
	flex: 0 0 auto;
	position: relative;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	background: #fff;
	border: 1px solid #c4c6cc;
	border-radius: 4px;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.ueb-check__box::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) scale(0);
	transition: transform 0.12s ease;
}

/* General sibling (~) not adjacent (+): the box need not be the immediately
   next element after the input. */
.ueb-check__input:checked ~ .ueb-check__box {
	background: #3a124d;
	border-color: #3a124d;
}

.ueb-check__input:checked ~ .ueb-check__box::after {
	transform: rotate(45deg) scale(1);
}

.ueb-check__input:focus-visible ~ .ueb-check__box {
	outline: 2px solid #3a124d;
	outline-offset: 2px;
}

.ueb-check__text {
	font-family: Inter, Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 17.5px;
	color: #1a1a1a;
}

.ueb-check__text a {
	color: #3a124d;
	font-weight: 600;
	text-decoration: none;
}

.ueb-check__text a:hover {
	text-decoration: underline;
}

/* Delivery summary (above place order) ------------------------------------- */
.ueb-delivery-summary {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 6px;
	margin: 0 0 16px;
}

.ueb-delivery-summary[hidden] {
	display: none;
}

.ueb-delivery-summary__text {
	margin: 0;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #1a1a1a;
}

.ueb-delivery-summary__text strong {
	font-weight: 700;
	color: #1a1a1a;
}

.ueb-delivery-summary__reschedule {
	padding: 0;
	border: 0;
	background: transparent;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 20px;
	color: #0d96fc;
	cursor: pointer;
}

/* Keep Reschedule a plain blue text link on hover/focus — the theme repaints any
   <button> crimson/white on hover+focus, so re-assert transparent bg + blue text
   (with !important to beat the theme) and no box/underline so it has no effect. */
.ueb-delivery-summary__reschedule:hover,
.ueb-delivery-summary__reschedule:focus,
.ueb-delivery-summary__reschedule:active {
	color: #0d96fc !important;
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	text-decoration: none;
	transform: none;
	outline: none;
}

.ueb-delivery-summary__reschedule:focus-visible {
	outline: 2px solid #0d96fc;
	outline-offset: 2px;
}

/* Place order -------------------------------------------------------------- */
.ueb-checkout #payment .place-order {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
}

.ueb-checkout #place_order.ueb-place-order {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	margin: 0 !important;
	padding: 20px 24px !important;
	border: 0 !important;
	border-radius: 32px !important;
	background: #3a124d !important;
	color: #fff !important;
	font-family: Inter, Helvetica, Arial, sans-serif !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 24px !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.ueb-checkout #place_order.ueb-place-order:hover,
.ueb-checkout #place_order.ueb-place-order:focus,
.ueb-checkout #place_order.ueb-place-order:focus-visible {
	background: #4d1a66 !important;
	color: #fff !important;
}

/* Arrow drawn as a pseudo-element so it survives checkout.js rewriting the
   button text on payment-method change. */
.ueb-checkout #place_order.ueb-place-order::after {
	content: "";
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%3E%3Cpath%20d='M2.5%208h10M9%204l4%204-4%204'%20stroke='%23ffffff'%20stroke-width='1.8'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Secure line -------------------------------------------------------------- */
.ueb-payment__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0;
	font-size: 10px;
	line-height: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #74777d;
}

.ueb-payment__secure-icon {
	display: inline-flex;
	color: #74777d;
}

/* --------------------------------------------------------------------------
   WooCommerce notices
   -------------------------------------------------------------------------- */
.ueb-checkout .woocommerce-error,
.ueb-checkout .woocommerce-message,
.ueb-checkout .woocommerce-info,
.ueb-checkout__notices .woocommerce-error,
.ueb-checkout__notices .woocommerce-message,
.ueb-checkout__notices .woocommerce-info {
	margin: 0 0 16px;
	padding: 14px 18px;
	border: 1px solid transparent;
	border-radius: 14px;
	list-style: none;
	font-size: 14px;
	line-height: 20px;
}

.ueb-checkout .woocommerce-error,
.ueb-checkout__notices .woocommerce-error {
	background: #fdecec;
	border-color: #f4c7c7;
	color: #9c2b2b;
}

.ueb-checkout .woocommerce-message,
.ueb-checkout__notices .woocommerce-message {
	background: #ecf7ef;
	border-color: #c6e6cf;
	color: #1f6b39;
}

.ueb-checkout .woocommerce-info,
.ueb-checkout__notices .woocommerce-info {
	background: #f1eef6;
	border-color: #d9d0e6;
	color: #3a124d;
}

/* WooCommerce renders a status icon absolutely at the left edge of each
   notice, which overlaps the first word. Offset the text to clear it. The
   error notice is a <ul><li>, so the offset must sit on the <li> with
   !important — WooCommerce resets `.woocommerce-error li { margin: 0 }`.
   Success / info notices are a single <div> holding the text directly, so they
   take container padding instead. Both the inline checkout notices and the
   dedicated notices wrapper are covered. */
.ueb-checkout .woocommerce-error li,
.ueb-checkout__notices .woocommerce-error li {
	margin-left: 25px !important;
}

.ueb-checkout .woocommerce-message,
.ueb-checkout .woocommerce-info,
.ueb-checkout__notices .woocommerce-message,
.ueb-checkout__notices .woocommerce-info {
	padding-left: 43px;
}

.ueb-checkout .woocommerce-NoticeGroup {
	grid-column: 1 / -1;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.ueb-checkout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ueb-checkout__aside {
		max-width: 560px;
		width: 100%;
	}
}

@media (max-width: 560px) {
	.ueb-checkout {
		padding-bottom: 56px;
	}

	.ueb-checkout__title {
		font-size: 28px;
		line-height: 34px;
	}

	.ueb-pills--slots {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ueb-pill--day {
		min-width: 0;
	}

	.ueb-checkout__aside {
		padding: 24px 20px;
	}
}

/* Delivery map pin
   -------------------------------------------------------------------------- */
.ueb-map {
	margin-top: 4px;
}

.ueb-map__toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 14px 18px;
	border: 1px dashed #c7b9d4;
	border-radius: 16px;
	background: #faf8fc;
	color: #3a124d;
	font-family: Inter, Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.ueb-map__toggle:hover,
.ueb-map__toggle:focus-visible {
	border-color: #3a124d;
	background: #f1eef6;
}

.ueb-map__toggle[aria-expanded="true"] {
	border-style: solid;
	border-color: #3a124d;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.ueb-map__toggle-icon {
	font-size: 18px;
	line-height: 1;
}

.ueb-map__body {
	border: 1px solid #e4dcec;
	border-top: 0;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
	padding: 14px;
	background: #fff;
}

.ueb-map__search {
	margin-bottom: 12px;
}

.ueb-map__search gmp-place-autocomplete,
.ueb-map__search .pac-target-input {
	width: 100%;
}

.ueb-map__canvas-wrap {
	position: relative;
	width: 100%;
	height: 280px;
	border-radius: 12px;
	overflow: hidden;
	background: #eee;
}

.ueb-map__canvas {
	position: absolute;
	inset: 0;
}

/* Fixed pin pinned to the centre of the map; the map pans underneath it. The
   bottom margin offsets the pin's "tip" so the tip — not the icon centre —
   marks the spot. pointer-events:none lets drags pass through to the map. */
.ueb-map__pin {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -100%);
	margin-top: 4px;
	font-size: 34px;
	line-height: 1;
	pointer-events: none;
	filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
	z-index: 2;
}

.ueb-map__locate {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	padding: 9px 16px;
	border: 1px solid #d9d0e6;
	border-radius: 999px;
	background: #fff;
	color: #3a124d;
	font-family: Inter, Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.ueb-map__locate:hover,
.ueb-map__locate:focus-visible {
	border-color: #3a124d;
	background: #f1eef6;
}

.ueb-map__address {
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.4;
	color: #1f6b39;
	font-weight: 600;
}

.ueb-map__hint {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.4;
	color: #74777d;
}
