/*!
 * Home Dropdown layout (legacy look) — powered by Simplimus Termini
 */

#home_dropdown.simplimus-home-dropdown {
	--hd-background: #45165b;
	--hd-surface: #5b2278;
	--hd-accent: #874D9D;
	--hd-text: #EFE7DA;
	--hd-muted: rgba(239, 231, 218, 0.72);
	--hd-placeholder: rgba(196, 168, 214, 0.88);
	--hd-border: rgba(255, 255, 255, 0.08);
	--hd-radius: 22px;
	--hd-font-family: Poppins, sans-serif;
	--hd-control-height: 42px;
	--hd-offset-y: -150px;
	background: #2f0f3d;
	border-radius: var(--hd-radius);
	padding: 0;
	color: var(--hd-text);
	font-family: var(--hd-font-family);
	position: relative;
	z-index: 3;
	margin-top: var(--hd-offset-y);
}

#home_dropdown .simplimus-home-dropdown-shell {
	padding: 36px 42px;
}

#home_dropdown .simplimus-home-dropdown-hero {
	margin-bottom: 12px;
}

#home_dropdown .simplimus-home-dropdown-kicker {
	margin: 0 0 2px;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 600;
	letter-spacing: 0;
	color: var(--hd-text);
}

#home_dropdown .simplimus-home-dropdown-subtitle {
	margin: 0;
	font-size: 12px;
	line-height: 1.35;
	color: var(--hd-muted);
}

/* Wizard layout */
#home_dropdown.simplimus-home-dropdown--wizard .simplimus-home-dropdown-progress {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 10px 0 16px;
}

#home_dropdown .simplimus-home-dropdown-field--labelless .simplimus-home-dropdown-control--select {
	border-radius: 14px;
	background: #EFE7DA;
	border-bottom: 0;
	padding: 0 14px;
	box-shadow: inset 0 0 0 2px #874D9D;
}

#home_dropdown .simplimus-home-dropdown-field--labelless .simplimus-home-dropdown-control--select:focus-within,
#home_dropdown .simplimus-home-dropdown-field--labelless .simplimus-home-dropdown-control--select:hover {
	box-shadow: inset 0 0 0 2px #9B57B3;
}

#home_dropdown .simplimus-home-dropdown-field--labelless .simplimus-home-dropdown-control--select select {
	min-height: 52px;
	font-size: 16px;
	color: #874D9D !important;
	padding-right: 36px !important;
}

#home_dropdown .simplimus-home-dropdown-field--labelless .simplimus-home-dropdown-control--select.is-empty select,
#home_dropdown .simplimus-home-dropdown-field--labelless .simplimus-home-dropdown-control--select select:invalid {
	color: rgba(135, 77, 157, 0.58) !important;
}

#home_dropdown .simplimus-home-dropdown-field--labelless .simplimus-home-dropdown-control--select:not(.is-empty) select:not(:invalid) {
	color: #874D9D !important;
}

#home_dropdown .simplimus-home-dropdown-field--labelless .simplimus-home-dropdown-control-chevron {
	color: #874D9D;
	right: 14px;
}

#home_dropdown .simplimus-home-dropdown-progress-step {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(239, 231, 218, 0.55);
	font-size: 12px;
	font-weight: 500;
	transition: color 0.2s ease;
}

#home_dropdown .simplimus-home-dropdown-progress-step.is-active,
#home_dropdown .simplimus-home-dropdown-progress-step.is-complete {
	color: var(--hd-text);
}

#home_dropdown .simplimus-home-dropdown-progress-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 11px;
	font-weight: 700;
}

#home_dropdown .simplimus-home-dropdown-progress-step.is-active .simplimus-home-dropdown-progress-index,
#home_dropdown .simplimus-home-dropdown-progress-step.is-complete .simplimus-home-dropdown-progress-index {
	background: #874D9D;
	border-color: #874D9D;
	color: #EFE7DA;
}

#home_dropdown .simplimus-home-dropdown-progress-line {
	flex: 1 1 auto;
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
}

#home_dropdown .simplimus-home-dropdown-wizard {
	display: grid;
}

#home_dropdown .simplimus-home-dropdown-step {
	display: grid;
	gap: 16px;
}

#home_dropdown .simplimus-home-dropdown-step[hidden] {
	display: none !important;
}

#home_dropdown .simplimus-home-dropdown-button--next {
	width: 100%;
	justify-self: stretch;
	position: relative;
	overflow: hidden;
}

#home_dropdown .simplimus-home-dropdown-button--next .simplimus-home-dropdown-button-text {
	position: relative;
	z-index: 1;
}

#home_dropdown .simplimus-home-dropdown-button-glare {
	position: absolute;
	top: -30%;
	bottom: -30%;
	left: 0;
	width: 42%;
	pointer-events: none;
	z-index: 2;
	opacity: 0;
	background: linear-gradient(
		105deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.25) 28%,
		rgba(255, 255, 255, 0.95) 50%,
		rgba(255, 255, 255, 0.25) 72%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: translateX(-180%) skewX(-22deg);
}

@keyframes simplimus-hd-glare-sweep {
	0% {
		transform: translateX(-180%) skewX(-22deg);
		opacity: 0;
	}
	6% {
		opacity: 1;
	}
	50% {
		transform: translateX(320%) skewX(-22deg);
		opacity: 1;
	}
	100% {
		transform: translateX(320%) skewX(-22deg);
		opacity: 0;
	}
}

#home_dropdown .simplimus-home-dropdown-button--next.is-glaring:not(:disabled) .simplimus-home-dropdown-button-glare {
	animation: simplimus-hd-glare-sweep 2s ease-in-out forwards;
}

#home_dropdown .simplimus-home-dropdown-step-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

#home_dropdown .simplimus-home-dropdown-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(239, 231, 218, 0.82);
	font: inherit;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
}

#home_dropdown .simplimus-home-dropdown-back svg {
	width: 16px;
	height: 16px;
	display: block;
}

#home_dropdown .simplimus-home-dropdown-back:hover {
	color: var(--hd-text);
}

#home_dropdown .simplimus-home-dropdown-selected-service {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--hd-text);
	text-align: right;
}

#home_dropdown .simplimus-home-dropdown-calendar-wrap {
	padding: 12px 14px;
	border-radius: 14px;
	background: #EFE7DA;
	border: 0;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
	max-width: 100%;
	color: #000;
}

#home_dropdown .simplimus-home-dropdown-calendar-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 10px;
	color: rgba(0, 0, 0, 0.62);
}

#home_dropdown .simplimus-home-dropdown-calendar-legend span::before {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 2px;
	margin-right: 4px;
	vertical-align: middle;
}

#home_dropdown .simplimus-home-dropdown-legend-available::before {
	background: #9AD9B5;
	border: 1px solid #7BC99A;
}

#home_dropdown .simplimus-home-dropdown-legend-full::before {
	background: rgba(161, 99, 185, 0.45);
	border: 1px solid rgba(126, 58, 154, 0.55);
}

#home_dropdown .simplimus-home-dropdown-legend-empty::before {
	background: rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(0, 0, 0, 0.18);
}

#home_dropdown .simplimus-home-dropdown-calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 8px;
}

#home_dropdown .simplimus-home-dropdown-month-label {
	flex: 1 1 auto;
	font-size: 13px;
	font-weight: 600;
	color: #000;
	text-align: center;
}

#home_dropdown .simplimus-home-dropdown-cal-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	min-width: 32px;
	min-height: 32px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.06);
	color: #000;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

#home_dropdown .simplimus-home-dropdown-cal-nav:hover {
	background: rgba(0, 0, 0, 0.12);
}

#home_dropdown .simplimus-home-dropdown-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 2px;
}

#home_dropdown .simplimus-home-dropdown-cal-cell {
	text-align: center;
	font-size: 10px;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.55);
	padding: 2px 0;
}

#home_dropdown .simplimus-home-dropdown-day {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	min-height: 28px;
	padding: 2px 1px;
	font: inherit;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.1;
	color: var(--hd-text);
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

#home_dropdown .simplimus-home-dropdown-day-label {
	display: inline-block;
	text-align: center;
	white-space: nowrap;
}

#home_dropdown .simplimus-home-dropdown-day-count {
	font-size: 9px;
	font-weight: 500;
	opacity: 0.92;
}

#home_dropdown .simplimus-home-dropdown-day.is-available {
	background: #DDF5E8;
	border-color: #7BC99A;
	color: #1B4332;
}

#home_dropdown .simplimus-home-dropdown-day.is-available:hover:not(:disabled) {
	background: #C8EDD9;
	border-color: #5CB885;
}

#home_dropdown .simplimus-home-dropdown-day.is-available .simplimus-home-dropdown-day-count {
	color: #2D6A4F;
	opacity: 0.9;
}

#home_dropdown .simplimus-home-dropdown-day.is-selected {
	background: #874D9D;
	border-color: #874D9D;
	color: #EFE7DA;
	box-shadow: inset 0 0 0 2px rgba(239, 231, 218, 0.35);
}

#home_dropdown .simplimus-home-dropdown-day.is-selected .simplimus-home-dropdown-day-count {
	color: #EFE7DA;
	opacity: 0.95;
}

#home_dropdown .simplimus-home-dropdown-day.is-full {
	background: rgba(135, 77, 157, 0.35);
	border-color: rgba(135, 77, 157, 0.45);
	color: rgba(239, 231, 218, 0.55);
	text-decoration: line-through;
}

#home_dropdown .simplimus-home-dropdown-day.is-empty,
#home_dropdown .simplimus-home-dropdown-day.is-past,
#home_dropdown .simplimus-home-dropdown-day.is-off-day {
	opacity: 0.35;
	cursor: not-allowed;
}

#home_dropdown .simplimus-home-dropdown-day.is-today:not(.is-selected) {
	box-shadow: inset 0 0 0 2px #7BC99A;
}

#home_dropdown .simplimus-home-dropdown-day.is-today.is-available:not(.is-selected) {
	box-shadow: inset 0 0 0 2px #5CB885;
}

#home_dropdown .simplimus-home-dropdown-calendar-wrap .simplimus-home-dropdown-day {
	background: rgba(135, 77, 157, 0.12);
	border-color: rgba(135, 77, 157, 0.28);
	color: rgba(74, 30, 86, 0.72);
}

#home_dropdown .simplimus-home-dropdown-calendar-wrap .simplimus-home-dropdown-day.is-available {
	background: #DDF5E8;
	border-color: #7BC99A;
	color: #1B4332;
}

#home_dropdown .simplimus-home-dropdown-calendar-wrap .simplimus-home-dropdown-day.is-selected {
	background: #874D9D;
	border-color: #874D9D;
	color: #EFE7DA;
}

#home_dropdown .simplimus-home-dropdown-day.is-outside {
	visibility: hidden;
}

#home_dropdown .simplimus-home-dropdown-day:disabled {
	cursor: not-allowed;
}

#home_dropdown .simplimus-home-dropdown-slots {
	display: grid;
	gap: 10px;
}

#home_dropdown .simplimus-home-dropdown-slots-title {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: #EFE7DA;
}

#home_dropdown .simplimus-home-dropdown-slot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
	gap: 8px;
	max-height: 160px;
	overflow-y: auto;
}

#home_dropdown .simplimus-home-dropdown-slot {
	display: grid;
	gap: 2px;
	padding: 10px 8px;
	border: 1px solid #7BC99A;
	border-radius: 12px;
	background: #DDF5E8;
	color: #1B4332;
	font: inherit;
	cursor: pointer;
	text-align: center;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

#home_dropdown .simplimus-home-dropdown-slot-time {
	font-size: 14px;
	font-weight: 700;
}

#home_dropdown .simplimus-home-dropdown-slot-price {
	font-size: 11px;
	color: rgba(27, 67, 50, 0.72);
}

#home_dropdown .simplimus-home-dropdown-slot:hover:not(.is-selected) {
	background: #C8EDD9;
	border-color: #5CB885;
}

#home_dropdown .simplimus-home-dropdown-slot.is-selected {
	border-color: #874D9D;
	box-shadow: 0 0 0 1px rgba(135, 77, 157, 0.45);
	background: #874D9D;
	color: #EFE7DA;
}

#home_dropdown .simplimus-home-dropdown-slot.is-selected .simplimus-home-dropdown-slot-price {
	color: rgba(239, 231, 218, 0.85);
}

#home_dropdown .simplimus-home-dropdown-slot-skeleton {
	height: 52px;
	border-radius: 12px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
	background-size: 200% 100%;
	animation: simplimus-hd-shimmer 1.2s ease infinite;
}

@keyframes simplimus-hd-shimmer {
	0% { background-position: 100% 0; }
	100% { background-position: -100% 0; }
}

#home_dropdown .simplimus-home-dropdown-empty-slots {
	margin: 0;
	font-size: 13px;
	color: var(--hd-muted);
}

#home_dropdown .simplimus-home-dropdown-booking-footer {
	display: block;
}

#home_dropdown .simplimus-home-dropdown-button--submit {
	width: 100%;
	justify-content: center;
	align-items: center;
	position: relative;
	height: var(--hd-control-height);
	min-height: var(--hd-control-height);
	padding: 0 52px 0 22px;
}

#home_dropdown .simplimus-home-dropdown-button--submit .simplimus-home-dropdown-button-icon {
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
}

#home_dropdown .simplimus-home-dropdown-button-main {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-width: 0;
	max-width: 100%;
	text-align: center;
	white-space: nowrap;
}

#home_dropdown .simplimus-home-dropdown-button--submit .simplimus-home-dropdown-button-text {
	line-height: 1.2;
}

#home_dropdown .simplimus-home-dropdown-button .simplimus-home-dropdown-button-date,
#home_dropdown .simplimus-home-dropdown-button .simplimus-home-dropdown-price {
	font-size: inherit;
	font-weight: 700;
	color: #EFE7DA;
	line-height: 1.2;
}

#home_dropdown .simplimus-home-dropdown-button .simplimus-home-dropdown-button-date:not(.is-empty) {
	margin-left: 0.35em;
	font-weight: 600;
}

#home_dropdown .simplimus-home-dropdown-button .simplimus-home-dropdown-price:not(.is-empty) {
	margin-left: 0.45em;
}

#home_dropdown .simplimus-home-dropdown-button .simplimus-home-dropdown-button-date.is-empty,
#home_dropdown .simplimus-home-dropdown-button .simplimus-home-dropdown-price.is-empty {
	display: none;
}

#home_dropdown.is-loading .simplimus-home-dropdown-calendar-grid {
	opacity: 0.65;
	pointer-events: none;
}

#home_dropdown .simplimus-home-dropdown-form {
	display: grid;
	grid-template-columns: minmax(180px, 1.2fr) minmax(220px, 1fr) auto;
	gap: 16px;
	align-items: end;
}

#home_dropdown .simplimus-home-dropdown-form > *:not(.simplimus-home-dropdown-button) {
	min-width: 0;
}

#home_dropdown .simplimus-home-dropdown-field--datetime {
	min-width: 0;
}

#home_dropdown .simplimus-home-dropdown-field--datetime .simplimus-home-dropdown-field-head {
	width: 100%;
	justify-content: space-between;
}

#home_dropdown .simplimus-home-dropdown-field--datetime.is-locked .simplimus-home-dropdown-datetime-row {
	opacity: 0.58;
}

#home_dropdown .simplimus-home-dropdown-field--datetime.is-locked .simplimus-home-dropdown-date-trigger {
	opacity: 0.75;
}

#home_dropdown .simplimus-home-dropdown-datetime-row {
	display: flex;
	align-items: center;
	gap: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	cursor: pointer;
	transition: border-color 0.2s ease, opacity 0.2s ease;
}

#home_dropdown .simplimus-home-dropdown-datetime-sep {
	flex: 0 0 auto;
	padding: 0 8px;
	color: rgba(239, 231, 218, 0.45);
	font-size: 16px;
	line-height: var(--hd-control-height);
	user-select: none;
	pointer-events: none;
}

#home_dropdown .simplimus-home-dropdown-datetime-part {
	min-width: 0;
	flex: 1 1 0;
}

#home_dropdown .simplimus-home-dropdown-field--date {
	flex: 1.15 1 0;
}

#home_dropdown .simplimus-home-dropdown-field--time {
	flex: 0.85 1 0;
}

#home_dropdown .simplimus-home-dropdown-control {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: var(--hd-control-height);
}

#home_dropdown .simplimus-home-dropdown-control--select {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	cursor: pointer;
	transition: border-color 0.2s ease;
}

#home_dropdown .simplimus-home-dropdown-control--select:focus-within,
#home_dropdown .simplimus-home-dropdown-control--select:hover {
	border-bottom-color: rgba(255, 255, 255, 0.28);
}

#home_dropdown .simplimus-home-dropdown-control--time {
	min-height: var(--hd-control-height);
}

#home_dropdown .simplimus-home-dropdown-control-chevron {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	pointer-events: none;
	color: rgba(239, 231, 218, 0.72);
}

#home_dropdown .simplimus-home-dropdown-control-chevron svg {
	width: 14px;
	height: 14px;
	display: block;
}

#home_dropdown .simplimus-home-dropdown-datetime-row select,
#home_dropdown .simplimus-home-dropdown-datetime-row input[type="date"] {
	border-bottom: 0 !important;
}

#home_dropdown .simplimus-home-dropdown-datetime-row:focus-within {
	border-bottom-color: rgba(255, 255, 255, 0.45);
}

#home_dropdown .simplimus-home-dropdown-datetime-row input[type="date"]:invalid {
	color: transparent !important;
}

#home_dropdown .simplimus-home-dropdown-datetime-row input[type="date"]:disabled {
	cursor: not-allowed;
}

#home_dropdown .simplimus-home-dropdown-datetime-row select:invalid,
#home_dropdown .simplimus-home-dropdown-datetime-row select:disabled {
	color: rgba(239, 231, 218, 0.55) !important;
	cursor: not-allowed;
}

#home_dropdown .simplimus-home-dropdown-datetime-row select:not(:disabled):not(:invalid),
#home_dropdown .simplimus-home-dropdown-datetime-row input[type="date"]:valid {
	color: #EFE7DA !important;
}

#home_dropdown .simplimus-home-dropdown-field {
	display: grid;
	gap: 6px;
}

#home_dropdown .simplimus-home-dropdown-field-head {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	min-height: 21px;
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0.02em;
	color: #EFE7DA;
}

#home_dropdown .simplimus-home-dropdown-field-label-text {
	display: inline-block;
	font: inherit;
	color: inherit;
}

#home_dropdown .simplimus-home-dropdown-date-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	margin-left: auto;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	opacity: 0.95;
	color: var(--hd-text);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

#home_dropdown .simplimus-home-dropdown-date-trigger:hover {
	opacity: 1;
	transform: translateY(-1px);
}

#home_dropdown .simplimus-home-dropdown-date-trigger svg {
	width: 18px;
	height: 18px;
	display: block;
}

#home_dropdown .simplimus-home-dropdown-field select,
#home_dropdown .simplimus-home-dropdown-field input {
	width: 100% !important;
	height: var(--hd-control-height) !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 10px 28px 10px 0 !important;
	background: transparent !important;
	color: #EFE7DA !important;
	font: inherit !important;
	outline: none !important;
	box-shadow: none !important;
	font-family: Poppins, sans-serif !important;
	font-weight: 500 !important;
	font-size: 14px !important;
	line-height: 1.2 !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	transition: color 0.18s ease;
}

#home_dropdown .simplimus-home-dropdown-control--select select {
	border-bottom: 0 !important;
}

#home_dropdown .simplimus-home-dropdown-control--select.is-empty select,
#home_dropdown .simplimus-home-dropdown-control--select select:invalid {
	color: var(--hd-placeholder) !important;
}

#home_dropdown .simplimus-home-dropdown-control--select:not(.is-empty) select:not(:invalid) {
	color: #EFE7DA !important;
}

#home_dropdown .simplimus-home-dropdown-field input[type="date"] {
	cursor: pointer;
	padding-right: 0 !important;
}

#home_dropdown .simplimus-home-dropdown-field input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0;
	display: none;
}

#home_dropdown .simplimus-home-dropdown-date-wrap {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: var(--hd-control-height);
	cursor: pointer;
}

#home_dropdown .simplimus-home-dropdown-date-wrap.is-filled .simplimus-home-dropdown-date-placeholder {
	opacity: 0;
	visibility: hidden;
}

#home_dropdown .simplimus-home-dropdown-date-placeholder {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: rgba(239, 231, 218, 0.55);
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	transition: opacity 0.18s ease, visibility 0.18s ease;
}

#home_dropdown .simplimus-home-dropdown-field select:focus-visible,
#home_dropdown .simplimus-home-dropdown-field input:focus-visible,
#home_dropdown .simplimus-home-dropdown-date-trigger:focus-visible,
#home_dropdown .simplimus-home-dropdown-button:focus-visible {
	outline: 2px solid rgba(161, 99, 185, 0.9);
	outline-offset: 2px;
}

#home_dropdown .simplimus-home-dropdown-field option {
	color: #1f1230;
}

#home_dropdown .simplimus-home-dropdown-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	height: var(--hd-control-height);
	padding: 0 22px;
	border: 0;
	border-radius: 16px;
	background: #874D9D;
	color: #EFE7DA;
	font-family: var(--hd-font-family);
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(74, 30, 86, 0.22);
	white-space: nowrap;
	transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease;
	font-size: 14px;
}

#home_dropdown .simplimus-home-dropdown-button:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

#home_dropdown .simplimus-home-dropdown-button-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

#home_dropdown .simplimus-home-dropdown-button-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

#home_dropdown .simplimus-home-dropdown-button-spinner {
	position: absolute;
	inset: 0;
	opacity: 0;
	animation: simplimus-hd-spin 0.85s linear infinite;
}

#home_dropdown .simplimus-home-dropdown-button.is-loading .simplimus-home-dropdown-button-cart {
	opacity: 0;
}

#home_dropdown .simplimus-home-dropdown-button.is-loading .simplimus-home-dropdown-button-spinner {
	opacity: 1;
}

@keyframes simplimus-hd-spin {
	to {
		transform: rotate(360deg);
	}
}

#home_dropdown .simplimus-home-dropdown-status {
	display: none;
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.45;
}

#home_dropdown .simplimus-home-dropdown-status.is-visible {
	display: block;
	padding: 10px 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

#home_dropdown .simplimus-home-dropdown-status.is-error {
	color: #fecaca;
	background: rgba(127, 29, 29, 0.22);
	border-color: rgba(254, 202, 202, 0.18);
}

#home_dropdown .simplimus-home-dropdown-status.is-success {
	color: #bbf7d0;
	background: rgba(20, 83, 45, 0.22);
	border-color: rgba(187, 247, 208, 0.18);
}

#home_dropdown .simplimus-home-dropdown-status.is-loading {
	color: var(--hd-muted);
}

#home_dropdown .simplimus-home-dropdown-button:hover:not(:disabled):not(.is-loading) {
	transform: translateY(-1px);
	background: #9B57B3;
	box-shadow: 0 14px 22px rgba(74, 30, 86, 0.28);
}

@media (max-width: 1100px) {
	#home_dropdown .simplimus-home-dropdown-form {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	#home_dropdown .simplimus-home-dropdown-field--datetime {
		grid-column: 1 / -1;
	}

	#home_dropdown .simplimus-home-dropdown-button {
		grid-column: 1 / -1;
		width: 100%;
	}
}

@media (max-width: 560px) {
	#home_dropdown {
		--hd-control-height: 48px;
		--hd-offset-y: -100px;
	}

	#home_dropdown .simplimus-home-dropdown-form {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	#home_dropdown .simplimus-home-dropdown-shell {
		padding: 26px 20px;
	}

	#home_dropdown .simplimus-home-dropdown-kicker {
		font-size: 17px;
	}

	#home_dropdown .simplimus-home-dropdown-field-head {
		font-size: 13px;
	}

	#home_dropdown .simplimus-home-dropdown-button {
		width: 100%;
		min-height: 48px;
	}

	#home_dropdown .simplimus-home-dropdown-datetime-sep {
		padding: 0 6px;
	}

	#home_dropdown .simplimus-home-dropdown-progress-label {
		display: none;
	}

	#home_dropdown .simplimus-home-dropdown-selected-service {
		font-size: 12px;
		max-width: 58%;
	}

	#home_dropdown .simplimus-home-dropdown-booking-footer {
		display: block;
	}

	#home_dropdown .simplimus-home-dropdown-day {
		min-height: 26px;
		font-size: 10px;
	}

	#home_dropdown .simplimus-home-dropdown-day-count {
		display: none;
	}
}
