.hotels-cart-menu {
	position: fixed;
	z-index: 1000000;
	background-color: white;
	height: 100vh;
	top: 0px;
	right: 0px;
	padding: 5px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	min-width: 270px;
	max-width: 420px;
	overflow-y: auto;
	font-family: 'Roboto', sans-serif;
}

.hotels-cart-title {
	font-size: 1.5em;
	font-weight: bold;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.hotels-cart-list {
	display: flex;
	gap: 1rem;
	flex-direction: column;
}

.hotels-cart-item {
	font-size: 0.9em;
	padding: 5px;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 5px;
	border-top: 1px solid #dddddd;
}

.hotels-cart-item .hotel-title {
	font-weight: bold;
}

.hotels-cart-item .hotel-title span {
	font-weight: normal;
	color: gray;
}

.hotels-cart-item .hotel-description {
	display: flex;
	justify-content: space-around;
}

.hotels-cart-item .hotel-remove {
	color: #818181;
	background-color: white;
}

.hotels-cart-item .icon-hotel-remove:hover {
	transition: 0s !important;
	color: #fe6363;
	background-color: white;
	cursor: pointer;
}

.hotels-cart-item .hotel-remove svg {
	height: 2em;
}

.hotels-cart-item .hotel-cart-item-wrapper {
	width: 100%;
}

.hotels-cart-menu:not(.menu-open-cart) {
	display: none;
}

.toggle-menu-action {
	cursor: pointer;
}

.modal-footer.booking-footer {
	justify-content: space-between;
}

.cart-review-title {
	font-weight: bold;
	font-size: 1.3em;
	padding: 5px;
	padding-left: 0px;
}

.cart-review-item {
	border-left: 1px solid gray;
	padding-left: 10px;
	padding-right: 40px;
}

.cart-review-item-adults-list {
	padding-left: 5px;
	list-style-type: none;
	padding-top: 5px;
	padding-bottom: 5px;
	font-style: italic;
}

.cart-review-item-children-list {
	padding-left: 5px;
	list-style-type: none;
	padding-top: 5px;
	padding-bottom: 5px;
	font-style: italic;
}

.hotels-cart-menu {
	overflow-y: auto;
}

.hotels-cart-menu::-webkit-scrollbar {
	width: 10px;
}

.hotels-cart-menu::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.hotels-cart-menu::-webkit-scrollbar-thumb {
	background: #888;
}

.hotels-cart-menu::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.cart-review-item-name {
	font-weight: bold;
	color: #0a5caf;
}

.cart-review-item-subname {
	font-weight: bold;
	color: #0a5caf;
	font-size: 0.8em;
	width: fit-content;
	display: inline;
}

.cart-review-item-price {
	display: inline;
	width: fit-content;
	color: gray;
}

.cart-checkout-confirmation {
	padding-bottom: 40px;
}

.confirm-email {
	color: gray;
	font-size: 0.8em;
	padding: 5px;
	padding-left: 10px;
}

.title-booking {
	font-weight: bold;
	text-align: center;
}

.cart-review-item {
	position: relative;
}

.hotel-remove.hotel-remove-confirm {
	position: absolute;
	right: 5px;
	top: 5px;
	height: 2em;
	width: 2em;
}

.service-cart-item-one {
	position: relative;
	padding-right: 40px;
}

.hotel-remove:hover svg {
	color: #e66161 !important;
	cursor: pointer;
}

.checkout-msg {
	padding: 5px;
	border: 1px solid gray;
	border-radius: 5px;
	margin: 5px;
	color: #0a5caf;
}

/* Agency header */
.cart-agency-header {
	padding: 8px 10px;
	background-color: #f0f4f8;
	border-bottom: 1px solid #ddd;
	font-size: 0.85em;
	color: #333;
}

/* Upsell area */
.reiseplan-upsell-area {
	padding: 10px 6px;
	border-top: 2px solid #0d4c96;
	margin: 12px 10px 0;
	background: linear-gradient(to bottom, rgba(13, 76, 150, 0.03), transparent);
}

.reiseplan-upsell-header {
	margin-bottom: 10px;
}

.reiseplan-upsell-title {
	font-weight: 600;
	font-size: 0.8em;
	color: #0d4c96;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-bottom: 6px;
}

/* Completeness bar */
.reiseplan-completeness {
	margin-bottom: 4px;
}

.reiseplan-completeness-bar {
	width: 100%;
	height: 4px;
	background: #e8edf3;
	border-radius: 2px;
	overflow: hidden;
	margin-bottom: 4px;
}

.reiseplan-completeness-fill {
	height: 100%;
	background: linear-gradient(90deg, #0d4c96, #1a7fd4);
	border-radius: 2px;
	transition: width 0.6s ease;
}

.reiseplan-completeness-text {
	font-size: 0.68em;
	color: #8a9bb5;
	text-align: right;
}

/* Upsell card */
.reiseplan-upsell-card {
	display: block;
	width: 100%;
	margin-bottom: 8px;
	background: #fff;
	border: 1px solid #d0d7e0;
	border-left: 3px solid #0d4c96;
	border-radius: 6px;
	padding: 10px;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	animation: upsellSlideIn 0.35s ease both;
}

.reiseplan-upsell-card:hover {
	box-shadow: 0 3px 12px rgba(13, 76, 150, 0.15);
	transform: translateY(-1px);
	text-decoration: none;
	color: inherit;
}

.reiseplan-upsell-card.reiseplan-upsell-loading {
	pointer-events: none;
	animation: upsellPulse 1.2s ease-in-out infinite;
}

.reiseplan-upsell-card.reiseplan-upsell-loading .reiseplan-upsell-card-cta span,
.reiseplan-upsell-card.reiseplan-upsell-loading .reiseplan-upsell-card-cta svg {
	visibility: hidden;
}

.reiseplan-upsell-card.reiseplan-upsell-loading .reiseplan-upsell-card-cta {
	position: relative;
}

.reiseplan-upsell-card.reiseplan-upsell-loading .reiseplan-upsell-card-cta::after {
	content: '';
	position: absolute;
	right: 0;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(13, 76, 150, 0.2);
	border-top-color: #0d4c96;
	border-radius: 50%;
	animation: upsellSpin 0.6s linear infinite;
}

@keyframes upsellSpin {
	to { transform: rotate(360deg); }
}

@keyframes upsellPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.55; }
}

.reiseplan-upsell-card-body {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.reiseplan-upsell-card-icon {
	width: 32px;
	height: 32px;
	min-width: 32px;
	border-radius: 50%;
	background: rgba(13, 76, 150, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0d4c96;
}

.reiseplan-upsell-card-icon svg {
	width: 15px;
	height: 15px;
}

.reiseplan-upsell-card-content {
	flex: 1;
	min-width: 0;
}

.reiseplan-upsell-card-title {
	font-size: 0.85em;
	font-weight: 600;
	color: #1a2a3a;
	line-height: 1.3;
	margin-bottom: 2px;
}

.reiseplan-upsell-card-subtitle {
	font-size: 0.75em;
	color: #5a7a9a;
	line-height: 1.3;
	margin-bottom: 2px;
}

.reiseplan-upsell-card-context {
	font-size: 0.7em;
	color: #a0b0c0;
	line-height: 1.3;
}

.reiseplan-upsell-card-cta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
	margin-top: 6px;
	padding-top: 6px;
	border-top: 1px solid #f0f2f5;
	font-size: 0.75em;
	font-weight: 600;
	color: #0d4c96;
}

.reiseplan-upsell-card-cta svg {
	transition: transform 0.2s ease;
}

.reiseplan-upsell-card:hover .reiseplan-upsell-card-cta svg {
	transform: translateX(2px);
}

/* Assigned items within upsell cards */
.reiseplan-upsell-assigned {
	padding: 8px 12px;
	margin-top: 4px;
	background: #f0f7ff;
	border-radius: 0 0 10px 10px;
	border: 1px solid #e0e8f0;
	border-top: none;
}
.reiseplan-upsell-assigned-label {
	font-size: 11px;
	color: #666;
	margin-bottom: 4px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.reiseplan-upsell-assigned-link {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	margin: 2px 0;
	font-size: 13px;
	color: #0d4c96;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.15s;
}
a.reiseplan-upsell-assigned-link:hover {
	background: #e0edfa;
	text-decoration: none;
	color: #0d4c96;
}
.reiseplan-upsell-assigned-link svg {
	flex-shrink: 0;
	opacity: 0.6;
}

@keyframes upsellSlideIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Checkout button layout */
.checkout-submit-area.flex-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 10px 15px;
}

.checkout-submit-area.flex-buttons .btn {
	width: 100%;
	text-align: center;
}

/* Upsell accordion */
.reiseplan-upsell-title {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.reiseplan-upsell-title .upsell-caret {
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 8px;
}

.reiseplan-upsell-area:not(.expanded) .upsell-caret {
	transform: rotate(-90deg);
}

.reiseplan-upsell-cards {
	max-height: 600px;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.reiseplan-upsell-area:not(.expanded) .reiseplan-upsell-cards {
	max-height: 0;
}

/* Price changed highlight */
.cart-review-item-price.price-changed {
	color: #e66161;
	font-weight: bold;
}

/* Header search icon vertical alignment */
.elementor-element-1d506bd {
	align-items: center !important;
}
