/* Booking login modal (guest "Book Now" popup) */

.pts-booking-login {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pts-booking-login__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.pts-booking-login__dialog {
	position: relative;
	z-index: 1;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
	max-width: 900px;
	width: 100%;
	overflow: hidden;
	display: flex;
}

.pts-booking-login__close {
	position: absolute;
	top: 18px;
	right: 20px;
	border: none;
	background: transparent;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: #6b7280;
	z-index: 2;
}

.pts-booking-login__layout {
	display: flex;
	width: 100%;
	min-height: 420px;
}

.pts-booking-login__image {
	flex: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 75vh;
}

.pts-booking-login__content {
	flex: 1;
	padding: 40px 40px 32px;
	display: flex;
	flex-direction: column;
    text-align: center;
    justify-content: center;
}

.pts-booking-login__title {
	font-size: 32px;
	font-weight: 400;
	color: #111827;
	margin-bottom: 15px !important;
}

.pts-booking-login__subtitle {
	font-size: 18px;
	color: #6b7280;
	margin: 0 0 20px !important;
}

.pts-booking-login__subtitle a {
	color: #8cc63f;
	text-decoration: underline;
	font-weight: 500;
}

.pts-booking-login__subtitle a:hover {
	color: #7ab536;
	text-decoration: underline;
}

.pts-booking-login__cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}

.pts-booking-login__card {
	border: 1px solid #000000;
	padding: 25px;
}

.pts-booking-login__card-title {
	font-size: 20px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 20px;
}

.pts-booking-login__primary-btn {
	display: block;
	width: 100%;
	border-radius: 0px;
	border: none;
	padding: 25px 16px;
  font-size: 20px;
  font-weight: 500;
	cursor: pointer;
	color: #ffffff;
	background: #8cc63f;
	transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.pts-booking-login__primary-btn:hover {
	background: #7ab536;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
	transform: translateY(-1px);
}

.pts-booking-login__card-sub {
	margin-top: 8px;
	font-size: 13px;
	color: #9ca3af;
}

.pts-booking-login__secondary-btn {
	align-self: flex-start;
	margin-top: auto;
	border-radius: 0px;
	border: 1px solid #d1d5db;
	padding: 8px 14px;
	font-size: 13px;
	color: #4b5563;
	background: #ffffff;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pts-booking-login__secondary-btn:hover {
	background: #f3f4f6;
	color: #111827;
	border-color: #9ca3af;
}

/* Prevent body scroll while modal open */
body.pts-modal-open {
	overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 900px) {
	.pts-booking-login__dialog {
		max-width: 90%;
	}

	.pts-booking-login__layout {
		flex-direction: column;
		min-height: auto;
	}

	.pts-booking-login__image {
		min-height: 180px;
	}
}

@media (max-width: 640px) {
	.pts-booking-login__content {
		padding: 24px 20px 20px;
	}

	.pts-booking-login__title {
		font-size: 20px;
	}

	.pts-booking-login__cards {
		margin-bottom: 16px;
	}
}

