/**
 * Yak Jungle Resort – booking stepper sidebar (Your Stay summary).
 */

body.yak-booking-page {
	--yak-green: #66a863;
	--yak-green-dark: #4d8549;
	--yak-text: #2c2c2c;
	--yak-muted: #6b6b6b;
	--yak-border: #e8e4dc;
	--yak-radius: 12px;
}

body.yak-booking-page .shb-booking-page-sidebar {
	position: sticky;
	top: 24px;
	align-self: flex-start;
}

body.yak-booking-page .shb-booking-your-stay-wrapper {
	padding: 22px 20px;
	margin-bottom: 24px;
	border-radius: var(--yak-radius);
	box-shadow: 0 8px 28px rgba(47, 92, 50, 0.1);
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-items-wrapper {
	margin-bottom: 20px;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper {
	padding-bottom: 20px;
	margin-bottom: 20px;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 10px;
	letter-spacing: 0.02em;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper h3:after {
	width: 36px;
	height: 3px;
	margin: 10px 0 14px;
	background: var(--yak-green);
	border-radius: 2px;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper ul {
	margin: 0 0 14px;
	padding: 10px 12px;
	background: #f7f5f0;
	border-radius: 8px;
	list-style: none;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper ul li {
	font-size: 0.875rem;
	margin: 0 0 4px;
	line-height: 1.45;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper ul li:last-child {
	margin-bottom: 0;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper ul li span {
	font-weight: 600;
	color: var(--yak-text);
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper .shb-booking-your-stay-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 12px;
	float: none;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper .shb-booking-your-stay-item .shb-booking-stay-image {
	float: none;
	flex: 0 0 72px;
	max-width: 72px;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper .shb-booking-your-stay-item .shb-booking-stay-image img {
	width: 72px;
	height: 54px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper .shb-booking-your-stay-item .shb-booking-your-stay-item-info {
	float: none;
	flex: 1;
	min-width: 0;
	width: auto;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper .shb-booking-your-stay-item .shb-booking-your-stay-item-info h4 {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 4px;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper .shb-booking-your-stay-item .shb-booking-your-stay-item-info h4 a,
body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper .shb-booking-your-stay-item .shb-booking-your-stay-item-info h4 span {
	float: none;
	display: block;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper .shb-booking-your-stay-item .shb-booking-your-stay-item-info h4 a {
	flex: 1;
	min-width: 0;
	color: var(--yak-text);
	text-decoration: none;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper .shb-booking-your-stay-item .shb-booking-your-stay-item-info h4 span {
	flex-shrink: 0;
	font-weight: 700;
	color: var(--yak-green-dark);
	white-space: nowrap;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper .shb-booking-your-stay-item .shb-booking-your-stay-item-info .shb-booking-your-stay-item-info-detail {
	font-size: 0.8125rem;
	font-style: normal;
	color: var(--yak-muted);
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item-wrapper .shb-booking-your-stay-item .shb-booking-price-expand {
	font-size: 0.8125rem;
	margin-top: 4px;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-your-stay-item.shb-booking-your-stay-item-child {
	margin-left: 0;
	padding-left: 12px;
	border-left: 3px solid var(--yak-border);
}

body.yak-booking-page .shb-booking-your-stay-controls a {
	font-size: 0.8125rem;
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-total {
	padding-top: 16px;
	margin-top: 4px;
	border-top: 1px solid var(--yak-border);
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-total h4:first-child {
	font-size: 1rem;
	font-weight: 700;
	color: var(--yak-text);
}

body.yak-booking-page .shb-booking-your-stay-wrapper .shb-booking-total h4:last-child {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--yak-green-dark);
}

body.yak-booking-page .shb-booking-continue {
	margin-top: 18px;
	padding: 14px 20px;
	background: var(--yak-green);
	border-radius: 8px;
	font-size: 0.9375rem;
	font-weight: 600;
	transition: background 0.2s ease;
}

body.yak-booking-page .shb-booking-continue:hover {
	background: var(--yak-green-dark);
	opacity: 1;
}

body.yak-booking-page .shb-booking-add-a-room {
	margin-top: 10px;
	padding: 12px 20px;
	border: 1px solid var(--yak-border);
	border-radius: 8px;
	font-size: 0.875rem;
}

body.yak-booking-page .shb-booking-add-a-room:hover {
	border-color: var(--yak-green);
	color: var(--yak-green-dark);
	opacity: 1;
}

@media only screen and (max-width: 1090px) {
	body.yak-booking-page .shb-booking-page-sidebar {
		position: static;
	}
}
