.shf-booking-paths {
	margin: 1.5rem 0 1rem;
	max-width: 36rem;
}

.shf-booking-paths__intro {
	margin-bottom: 0.75rem;
}

.shf-booking-paths__tabs {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.shf-tab.is-active {
	box-shadow: inset 0 0 0 2px currentColor;
}

.shf-panel {
	display: none;
	margin-bottom: 1rem;
}

.shf-panel.is-active {
	display: block;
}

.shf-panel__help,
.shf-capacity {
	margin: 0 0 0.75rem;
}

.shf-calendar__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.shf-calendar__title {
	margin: 0;
	font-size: 1.1rem;
}

.shf-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.shf-calendar__dow,
.shf-calendar__day {
	text-align: center;
	padding: 0.45rem 0.15rem;
	font-size: 0.85rem;
}

.shf-calendar__day {
	border: 1px solid #ddd;
	background: #f5f5f5;
	color: #888;
	cursor: default;
}

.shf-calendar__day.is-available {
	background: #fff;
	color: inherit;
	cursor: pointer;
}

.shf-calendar__day.is-available:hover,
.shf-calendar__day.is-selected {
	background: #111;
	color: #fff;
	border-color: #111;
}

.shf-calendar__day.is-empty {
	border: 0;
	background: transparent;
}

.shf-slots {
	margin: 1rem 0;
}

.shf-slots__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.shf-slot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0.65rem 0.85rem;
	border: 1px solid #ddd;
	background: #fff;
	text-align: left;
}

.shf-slot.is-available {
	cursor: pointer;
}

.shf-slot.is-available:hover,
.shf-slot.is-selected {
	border-color: #111;
	box-shadow: inset 0 0 0 1px #111;
}

.shf-slot:disabled,
.shf-slot.is-unavailable {
	color: #888;
	background: #f5f5f5;
	cursor: not-allowed;
}

.shf-book-form .single_add_to_cart_button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

body.shf-gift-mode form.cart:not(.shf-book-form) {
	display: block;
}

body:not(.shf-gift-mode) form.cart:not(.shf-book-form) {
	display: none;
}
