/* Perfect Reservations v2 — Public CSS */

/* Area selector */
.pl-area-options { display:flex; gap:15px; margin:10px 0; }
.pl-area-option  { display:flex; align-items:center; gap:8px; cursor:pointer; }
.pl-area-option input[type="radio"] { width:18px; height:18px; accent-color:var(--pr-primary-color, #760076); }
.pl-area-label   { font-size:15px; font-weight:500; }

/* Voucher info text */
.pl-voucher-grey { color:#888; font-size:13px; font-style:italic; margin:6px 0; }
.pl-voucher-info { margin:6px 0; }

/* Transcript shortcode */
.pl-transcript { max-width:700px; margin:20px auto; font-family:sans-serif; }
.pl-transcript-msg { padding:10px 14px; margin:8px 0; border-radius:8px; max-width:80%; }
.pl-transcript-user { background:#f0f0f0; margin-left:0; }
.pl-transcript-bot  { background:var(--pr-primary-color, #760076); color:#fff; margin-left:auto; }
.pl-transcript-time { font-size:11px; opacity:.6; display:block; margin-bottom:4px; }

/* Reservation cancel page */
.pl-cancel-page {
	padding: 40px 16px;
	background:
		radial-gradient(circle at top, rgba(var(--pr-primary-color-rgb, 118, 0, 118), 0.12), transparent 42%),
		linear-gradient(180deg, #fff 0%, #faf7fb 100%);
}

.pl-cancel-shell {
	max-width: 820px;
	margin: 0 auto;
}

.pl-cancel-hero {
	text-align: center;
	margin-bottom: 18px;
}

.pl-cancel-kicker {
	display: inline-block;
	padding: 6px 12px;
	border-radius: var(--pr-border-radius, 999px);
	background: rgba(var(--pr-primary-color-rgb, 118, 0, 118), 0.08);
	color: var(--pr-primary-color, #760076);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pl-cancel-hero h3 {
	margin: 14px 0 10px;
	color: var(--pr-text-color, #2b1632);
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.1;
}

.pl-cancel-hero p {
	margin: 0;
	color: #6a5a72;
	font-size: 16px;
}

.pl-cancel-card {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(var(--pr-primary-color-rgb, 118, 0, 118), 0.10);
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(48, 16, 56, 0.10);
	padding: 28px;
	backdrop-filter: blur(8px);
}

.pl-cancel-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 24px;
}

.pl-cancel-summary-item {
	padding: 18px 16px;
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #f8f2fb 100%);
	border: 1px solid rgba(var(--pr-primary-color-rgb, 118, 0, 118), 0.08);
	text-align: center;
}

.pl-cancel-label {
	display: block;
	margin-bottom: 6px;
	color: #8a7a91;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pl-cancel-value {
	display: block;
	color: var(--pr-text-color, #2b1632);
	font-size: 18px;
	font-weight: 700;
}

.pl-cancel-details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 20px;
}

.pl-cancel-detail {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(var(--pr-primary-color-rgb, 118, 0, 118), 0.08);
}

.pl-cancel-detail span {
	color: #8a7a91;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pl-cancel-detail strong,
.pl-cancel-status {
	color: var(--pr-text-color, #2b1632);
	font-size: 16px;
	font-weight: 700;
}

.pl-cancel-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.pl-cancel-status::before {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #c9b6cf;
}

.pl-cancel-status-confirmed::before {
	background: #20a162;
}

.pl-cancel-status-pending::before {
	background: #c58c0f;
}

.pl-cancel-status-cancel::before {
	background: #d63a3a;
}

.pl-cancel-notice {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 18px;
	margin-bottom: 20px;
	border-radius: 12px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-left: 4px solid #f59e0b;
	font-size: 13.5px;
	line-height: 1.5;
	color: #78350f;
}

.pl-cancel-notice::before {
	content: '';
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 1px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f59e0b'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20A10 10 0 0 0 12 2zm0 15a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm1-4h-2V7h2v6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}

.pl-cancel-notice strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #b45309;
	margin-bottom: 2px;
}

.pl-cancel-notice span {
	display: block;
	color: #78350f;
}

.pl-cancel-notice-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.pl-cancel-result {
	margin-bottom: 16px;
}

.pl-cancel-result-success,
.pl-cancel-result-error {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.pl-cancel-result-success {
	background: #f0fdf4;
	color: #166534;
	border: 1px solid #bbf7d0;
}

.pl-cancel-result-success::before {
	content: '';
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2316a34a'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.59L5.41 12 6.83 10.58l3.17 3.17 6.34-6.34 1.42 1.41L10 16.59z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}

.pl-cancel-result-error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

.pl-cancel-result-error::before {
	content: '';
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dc2626'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}

.pl-cancel-actions {
	display: flex;
	justify-content: center;
}

.pl-cancel-button {
	appearance: none;
	border: 0;
	border-radius: var(--pr-border-radius, 999px);
	padding: 14px 26px;
	background: linear-gradient(135deg, var(--pr-primary-color, #760076) 0%, var(--pr-secondary-color, #9c1c74) 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 12px 24px rgba(var(--pr-primary-color-rgb, 118, 0, 118), 0.25);
	transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.pl-cancel-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(var(--pr-primary-color-rgb, 118, 0, 118), 0.30);
}

.pl-cancel-button:disabled {
	cursor: progress;
	opacity: 0.72;
	transform: none;
}

@media (max-width: 720px) {
	.pl-cancel-page {
		padding: 24px 12px;
	}

	.pl-cancel-card {
		padding: 20px;
		border-radius: 20px;
	}

	.pl-cancel-summary,
	.pl-cancel-details {
		grid-template-columns: 1fr;
	}
}

.pr-opening-hours-section {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 16px 10px;
	text-align: center;
	font-family: var(--pr-font-family, 'Trebuchet MS', Helvetica, Arial, Lucida, sans-serif);
}

.pr-opening-hours-heading {
	margin: 0 0 20px;
	color: #222;
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
}

.pr-opening-hours-lines {
	display: block;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.pr-opening-hours-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	padding: 10px 20px;
	border-top: 1px solid #eee;
	font-size: 16px;
}

.pr-opening-hours-row:first-child {
	border-top: 1px solid #eee;
}

.pr-opening-hours-row:last-child {
	border-bottom: 1px solid #eee;
}

.pr-opening-hours-day {
	font-weight: 400;
	color: #555;
	min-width: 110px;
	text-align: right;
}

.pr-opening-hours-hours {
	color: #555;
	line-height: 1.4;
	min-width: 180px;
	text-align: left;
}

.pr-opening-hours-note {
	margin-top: 16px;
	color: #777;
	font-size: 14px;
	text-align: center;
}

.pr-opening-hours-card {
	margin: 0 0 18px;
	padding: 12px 14px;
	border: 1px solid #dcdcde;
	border-left: 4px solid var(--pr-primary-color, #760076);
	border-radius: 6px !important;
	background: #fff;
	text-align: left;
}

.pr-opening-hours-card--empty {
	border-left-color: var(--pr-primary-color, #760076);
	background: #fafafa;
}

.pr-opening-hours-text {
	margin: 0;
	color: #50575e;
	font-size: 14px;
	line-height: 1.5;
}

.pr-opening-hours-text--empty {
	color: #1d2327;
	font-weight: 600;
}

.pr-exception-line {
	color: var(--pr-primary-color, #760076) !important;
}

@media (max-width: 480px) {
	.pr-opening-hours-section {
		padding: 16px 12px 8px;
	}
	.pr-opening-hours-row {
		flex-direction: column;
		gap: 4px;
		padding: 8px 12px;
	}
	.pr-opening-hours-day,
	.pr-opening-hours-hours {
		min-width: auto;
		text-align: center;
	}
	.pr-opening-hours-heading {
		font-size: 24px;
		margin-bottom: 16px;
	}
}
/* ============================================================
	Guest Portal
	============================================================ */

.pr-gp-page-wrap {
	box-sizing: border-box;
	width: 100%;
}

.pr-gp {
	max-width: 560px;
	width: 100%;
	margin: 0 auto;
	padding: 32px 20px 60px;
	color: #444;
	font-size: 16px;
	line-height: 1.7;
	box-sizing: border-box;
	font-family: var(--pr-font-family, 'Trebuchet SM', 'Trebuchet MS', Helvetica, Arial, sans-serif);
}

/* ── Phase 1: Greeting ── */
.pr-gp-greeting {
	text-align: center;
	margin-bottom: 24px;
	padding: 0 4px;
}
.pr-gp-greeting-text {
	font-size: 22px;
	font-weight: 700;
	color: var(--pr-text-color, #2b1632);
	line-height: 1.4;
}
.pr-gp-greeting-text p {
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-weight: 700;
	color: var(--pr-text-color, #2b1632);
	line-height: 1.4;
}

/* ── Phase 1: Details card ── */
.pr-gp-details-card {
	background: #fff;
	border-radius: var(--pr-border-radius, 16px);
	box-shadow: 0 2px 16px rgba(var(--pr-primary-color-rgb, 118,0,118), 0.08);
	overflow: hidden;
	margin-bottom: 16px;
}
.pr-gp-detail-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 24px;
	border-bottom: 1px solid #f0eaf2;
}
.pr-gp-detail-row:last-child {
	border-bottom: none;
}
.pr-gp-detail-icon {
	font-size: 20px;
	width: 28px;
	text-align: center;
	flex-shrink: 0;
}
.pr-gp-detail-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #9a7aaa;
	min-width: 80px;
	flex-shrink: 0;
}
.pr-gp-detail-value {
	font-size: 16px;
	font-weight: 600;
	color: var(--pr-text-color, #2b1632);
}

/* ── Phase 1: Action buttons ── */
.pr-gp-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 8px;
}
.pr-gp-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 24px;
	border-radius: var(--pr-border-radius, 12px);
	font-family: var(--pr-font-family, 'Trebuchet SM', 'Trebuchet MS', Helvetica, Arial, sans-serif);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	box-sizing: border-box;
}
.pr-gp-btn-icon {
	font-size: 16px;
	line-height: 1;
	flex-shrink: 0;
}
.pr-gp-btn-primary {
	background: var(--pr-primary-color, #760076);
	color: #fff !important;
	border-color: var(--pr-primary-color, #760076);
	box-shadow: 0 4px 16px rgba(var(--pr-primary-color-rgb, 118,0,118), 0.22);
}
.pr-gp-btn-primary:hover {
	filter: brightness(90%);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(var(--pr-primary-color-rgb, 118,0,118), 0.30);
}
.pr-gp-btn-outline {
	background: #fff;
	color: var(--pr-primary-color, #760076) !important;
	border-color: var(--pr-primary-color, #760076);
}
.pr-gp-btn-outline:hover {
	background: var(--pr-primary-color, #760076);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(var(--pr-primary-color-rgb, 118,0,118), 0.20);
}
.pr-gp-btn-whatsapp {
	background: #25d366;
	color: #fff !important;
	border-color: #25d366;
	box-shadow: 0 4px 16px rgba(37,211,102,0.22);
}
.pr-gp-btn-whatsapp:hover {
	background: #1da851;
	border-color: #1da851;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(37,211,102,0.30);
}

/* ── Phase 2 & 3: Hero banner ── */
.pr-gp-hero {
	background: linear-gradient(135deg, var(--pr-primary-color, #760076) 0%, var(--pr-secondary-color, #9c1c74) 100%);
	border-radius: var(--pr-border-radius, 16px);
	padding: 28px 32px 24px;
	margin-bottom: 20px;
	color: #fff;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}
.pr-gp-hero::before {
	content: '';
	position: absolute;
	top: -40px; right: -40px;
	width: 180px; height: 180px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
	pointer-events: none;
}
.pr-gp-phase-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,0.18);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.pr-gp-hero h2 {
	margin: 0 0 14px;
	color: #fff !important;
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 700;
	line-height: 1.2;
	padding-bottom: 0;
}
.pr-gp-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* ── Guest group notice & advance notice banner cards ── */
#pl_guests_section .pr-advance-notice-msg,
#pl_guests_section .pr-group-notice,
.pr-advance-notice-msg,
.pr-group-notice {
	clear: both !important;
	float: left !important;
	display: none;
	width: 100% !important;
	margin-top: 12px !important;
	margin-bottom: 4px !important;
	padding: 12px 16px !important;
	background: #fff7ed !important;
	border: 1px solid #f59e0b !important;
	border-radius: 6px !important;
	color: #92400e !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
	box-sizing: border-box !important;
}

/* Danger red color styling for advance notice message */
#pl_guests_section .pr-advance-notice-msg,
.pr-advance-notice-msg {
	background: #fef2f2 !important;
	border-color: #fca5a5 !important;
	color: #991b1b !important;
}

.pr-advance-notice-msg:empty,
.pr-group-notice:empty {
	display: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
	border: none !important;
}

.pr-gp-meta-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,0.15);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

/* ── Shared card ── */
.pr-gp-card {
	background: #fff;
	border-radius: var(--pr-border-radius, 16px);
	padding: 24px;
	box-shadow: 0 2px 16px rgba(var(--pr-primary-color-rgb, 118,0,118), 0.08);
	margin-bottom: 20px;
	box-sizing: border-box;
}
.pr-gp-card-title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pr-primary-color, #760076);
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(var(--pr-primary-color-rgb, 118,0,118), 0.10);
}
.pr-gp-content {
	color: #444;
	font-size: 15px;
	line-height: 1.75;
}
.pr-gp-content p { margin-bottom: 12px; }
.pr-gp-content p:last-child { margin-bottom: 0; }
.pr-gp-content ul {
	list-style: none !important;
	padding: 0 0 12px 0 !important;
	margin: 0;
}
.pr-gp-content ul li {
	padding: 4px 0 4px 18px;
	position: relative;
	line-height: 1.6;
}
.pr-gp-content ul li::before {
	content: '–';
	position: absolute;
	left: 0;
	color: var(--pr-primary-color, #760076);
	font-weight: 700;
}
.pr-gp-content strong { color: var(--pr-text-color, #2b1632); }

/* ── Phase 2: Menu link buttons ── */
.pr-gp-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(var(--pr-primary-color-rgb, 118,0,118), 0.08);
}
.pr-gp-link-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	border-radius: var(--pr-border-radius, 12px);
	background: var(--pr-primary-color, #760076);
	color: #fff !important;
	font-family: var(--pr-font-family, 'Trebuchet SM', 'Trebuchet MS', Helvetica, Arial, sans-serif);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	border: 2px solid var(--pr-primary-color, #760076);
	box-shadow: 0 4px 16px rgba(var(--pr-primary-color-rgb, 118,0,118), 0.22);
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	box-sizing: border-box;
}
.pr-gp-link-btn:hover {
	filter: brightness(90%);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(var(--pr-primary-color-rgb, 118,0,118), 0.30);
}

/* ── Phase 3: Expired ── */
.pr-gp-expired {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	border-radius: 10px;
	background: rgba(214,58,58,0.07);
	border: 1px solid rgba(214,58,58,0.18);
	color: #a02c2c;
	font-weight: 600;
	margin-bottom: 20px;
}

/* ── NPS score buttons ── */
.pr-nps-score-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(var(--pr-primary-color-rgb, 118,0,118), 0.08);
}
.pr-nps-score-btn {
	appearance: none;
	-webkit-appearance: none;
	border: 2px solid #dcdcde;
	border-radius: max(4px, calc(var(--pr-border-radius, 12px) - 4px));
	background: #fff;
	color: #444;
	font-family: var(--pr-font-family, 'Trebuchet SM', 'Trebuchet MS', Helvetica, Arial, sans-serif);
	font-size: 16px;
	font-weight: 700;
	width: 46px;
	height: 46px;
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.pr-nps-score-btn:hover,
.pr-nps-score-btn.selected {
	background: var(--pr-primary-color, #760076);
	border-color: var(--pr-primary-color, #760076);
	color: #fff;
	transform: translateY(-2px);
}

/* ── Invalid token ── */
.pr-gp-invalid {
	padding: 32px 24px;
	text-align: center;
	color: #a02c2c;
	background: rgba(214,58,58,0.06);
	border: 1px solid rgba(214,58,58,0.15);
	border-radius: 12px;
	font-size: 16px;
}

@media (max-width: 600px) {
	.pr-gp { padding: 24px 16px 40px; }
	.pr-gp-detail-row { padding: 14px 16px; gap: 10px; }
	.pr-gp-detail-label { min-width: 70px; }
	.pr-gp-card { padding: 20px 16px; }
	.pr-gp-hero { padding: 22px 20px 18px; }
	.pr-nps-score-btn { width: 40px; height: 40px; font-size: 14px; }
}

/* Area Icons via CSS content to prevent WordPress Emoji-to-Image converter */
.pr-area-icon-garden::before {
	content: '🌿 ';
}

.pr-area-icon-indoor::before {
	content: '🏠 ';
}

.pr-area-icon-event::before {
	content: '📅 ';
}

/* Live Divi Guest Portal Styling (hirschen.perfect-lifestyle.ch/gaesteportal/) */
.pr-gp-ref-page {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 24px 40px 40px;
	box-sizing: border-box;
	font-family: "Trebuchet SM", "Trebuchet MS", Open Sans, Arial, sans-serif;
	color: #333333;
}

.pr-gp-brand-header {
	text-align: left;
	margin-bottom: 20px;
}

.pr-gp-brand-sub {
	font-size: 18px;
	font-weight: 700;
	color: #444444;
	margin-bottom: 8px;
}

.pr-gp-brand-title {
	font-size: 30px;
	font-weight: 700;
	color: #760076;
	margin: 0 0 15px;
	line-height: 1.2;
}

.pr-gp-salutation {
	font-size: 22px;
	font-weight: 700;
	color: #760076;
	margin-bottom: 6px;
}

.pr-gp-welcome-title {
	font-size: 26px;
	font-weight: 700;
	color: #760076;
	margin: 0 0 16px;
	line-height: 1.3;
}

.pr-gp-subtext {
	font-size: 15px;
	color: #555555;
	margin-bottom: 10px;
}

.pr-gp-status-line {
	font-size: 16px;
	color: #333333;
	margin-bottom: 20px;
}

.pr-gp-status-text {
	font-weight: 700;
}

.pr-gp-details-block {
	margin: 20px 0;
	width: 100%;
}

.pr-gp-details-title {
	font-size: 16px;
	font-weight: 700;
	color: #333333;
	margin-bottom: 10px;
}

.pr-gp-divider {
	border: 0;
	border-top: 1px solid #eeeeee;
	margin: 15px 0;
}

.pr-gp-details-table {
	width: 100%;
	border-collapse: collapse !important;
	border: none !important;
	margin: 10px 0 15px;
}

.pr-gp-details-table td {
	border: none !important;
	padding: 4px 0 !important;
	vertical-align: middle;
}

.pr-gp-td-icon {
	width: 40px;
	font-size: 16px;
}

.pr-gp-td-text {
	font-size: 16px;
	font-weight: 600;
	color: #333333;
}

/* Divi 3-Column Button Grid Layout matching live site */
.pr-gp-btn-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 24px 0;
	width: 100%;
}

.pr-gp-btn-row-4 {
	grid-template-columns: repeat(4, 1fr);
}

.pr-gp-btn-row-center {
	display: flex;
	justify-content: center;
}

.pr-gp-outline-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	min-height: 48px;
	border: 2px solid #760076;
	background: #ffffff;
	color: #760076 !important;
	font-size: 16px;
	font-weight: 500;
	font-family: "Trebuchet SM", "Trebuchet MS", Open Sans, Arial, sans-serif;
	text-decoration: none !important;
	transition: all 0.2s ease-in-out;
	box-sizing: border-box;
	border-radius: 3px;
	text-align: center;
	line-height: 1.4;
	word-break: break-word;
}

.pr-gp-outline-btn:hover {
	background: #760076 !important;
	color: #ffffff !important;
	border-color: #760076 !important;
}

.pr-gp-outline-btn-wide {
	min-width: 360px;
}

.pr-gp-payment-methods-block {
	text-align: center;
	margin: 24px 0;
	width: 100%;
}

.pr-gp-payment-methods-img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.pr-gp-update-banner {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #c8e6c9;
	border-radius: 6px;
	padding: 14px 18px;
	margin-bottom: 24px;
	font-size: 15px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.pr-gp-nps-text {
	font-size: 15px;
	line-height: 1.7;
	color: #444444;
	margin-bottom: 16px;
}

.pr-gp-content-body p {
	font-size: 15px;
	line-height: 1.7;
	color: #444444;
	margin-bottom: 16px;
}

.pr-gp-content-body h1,
.pr-gp-content-body h2,
.pr-gp-content-body h3,
.pr-gp-content-body h4 {
	color: #760076;
	font-weight: 700;
	margin-bottom: 14px;
}

.pr-gp-content-body strong {
	color: #333333;
	font-weight: 700;
}

.pr-gp-content-body br {
	display: inline !important;
}

.pr-gp-nps-question {
	font-size: 16px;
	color: #333333;
	margin: 20px 0 4px;
	line-height: 1.5;
}

.pr-gp-nps-sub {
	font-size: 14px;
	color: #666666;
	margin-bottom: 18px;
}

/* Continuous Color Gradient NPS Rating Bar matching referance-page.png */
.pr-nps-gradient-bar {
	display: flex;
	flex-wrap: nowrap !important;
	width: 100%;
	max-width: 1080px;
	margin: 24px 0;
	border-radius: 3px;
	overflow: hidden;
	gap: 2px;
}

.pr-nps-gradient-box {
	flex: 1 1 0px;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	color: #ffffff !important;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none !important;
	transition: opacity 0.15s ease, transform 0.15s ease;
	box-sizing: border-box;
}

.pr-nps-gradient-box:hover {
	opacity: 0.88;
	transform: scale(1.04);
	z-index: 2;
}

.pr-gp-purple-link {
	color: #760076;
	font-weight: 700;
	text-decoration: underline;
}

.pr-gp-nps-signoff {
	margin-top: 24px;
	font-size: 15px;
	font-style: italic;
	color: #760076;
	line-height: 1.6;
}

/* RESPONSIVE MEDIA QUERIES (Tablet & Mobile) */
@media (max-width: 980px) {
	.pr-gp-ref-page {
		padding: 20px 30px 30px;
	}

	.pr-gp-brand-title {
		font-size: 24px;
	}

	.pr-gp-welcome-title {
		font-size: 22px;
	}

	.pr-gp-salutation {
		font-size: 19px;
	}

	.pr-gp-btn-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.pr-gp-outline-btn-wide {
		min-width: 100%;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.pr-gp-ref-page {
		padding: 16px 20px 24px;
	}

	.pr-gp-btn-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.pr-gp-brand-sub {
		font-size: 15px;
	}

	.pr-gp-brand-title {
		font-size: 22px;
	}

	.pr-gp-welcome-title {
		font-size: 20px;
	}

	.pr-gp-salutation {
		font-size: 18px;
	}

	.pr-gp-subtext, .pr-gp-status-line, .pr-gp-nps-text {
		font-size: 14px;
		line-height: 1.6;
	}

	.pr-gp-td-icon {
		width: 32px;
		font-size: 15px;
	}

	.pr-gp-td-text {
		font-size: 15px;
	}

	.pr-gp-outline-btn {
		font-size: 15px;
		padding: 12px 14px;
		min-height: 48px;
	}

	.pr-nps-gradient-bar {
		flex-wrap: nowrap !important;
		gap: 2px;
		border-radius: 3px;
		overflow: hidden;
	}

	.pr-nps-gradient-box {
		flex: 1 1 0px;
		min-width: 0;
		height: 40px;
		font-size: 13px;
	}
}

/* ==========================================================
   Comprehensive Responsive Architecture for [pl_reservation]
   ========================================================== */

#pl_component_container,
#pl_component_container * {
	box-sizing: border-box !important;
}

#pl_component_container {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 auto !important;
	padding: 0 !important;
	overflow: hidden;
}

/* Country code dropdown list fix */
#pl_booking_step_datas_form_container #pl_booking_form_phone_container .iti .iti__country-list {
	background-color: #ffffff !important;
	border: 1px solid #cccccc !important;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
	max-height: 220px !important;
	overflow-y: auto !important;
	z-index: 99999 !important;
	margin-top: 2px !important;
	padding: 0 !important;
	list-style: none !important;
}

#pl_booking_step_datas_form_container #pl_booking_form_phone_container .iti .iti__country {
	padding: 8px 12px !important;
	border-bottom: 1px solid #f2f2f2 !important;
	cursor: pointer !important;
}

#pl_booking_step_datas_form_container #pl_booking_form_phone_container .iti .iti__country:hover,
#pl_booking_step_datas_form_container #pl_booking_form_phone_container .iti .iti__country.iti__highlight {
	background-color: #f5eef5 !important;
}

/* Tablet & Mobile Layout Adaptations (max-width: 768px) */
@media screen and (max-width: 768px) {

	/* 3. Outer left, right, top, bottom space for the whole form container */
	#pl_component_container {
		/*padding: 20px 16px !important;*/
		margin: 0 auto !important;
		box-sizing: border-box !important;
	}

	/* Form container padding breathing room */
	.pl_booking_container_all,
	.pl_booking_container_1,
	.pl_booking_container_2 {
		width: 100% !important;
		max-width: 100% !important;
		float: none !important;
		padding: 5% 5% 40px !important;
		margin: 0 auto !important;
		border: none !important;
		box-sizing: border-box !important;
	}

	.pl_booking_container_2 #pl_booking_step_datas_form_container {
		display: flow-root !important;
		clear: both !important;
		width: 100% !important;
		/*padding: 0 !important;*/
		margin: 0 !important;
	}

	#pl_rest_guests_legend_section,
	#pl_cal_occa_section,
	#pl_guests_legend_section,
	#pl_guests_section,
	#pl_booking_all_container_2,
	#pl_booking_step_resume {
		width: 100% !important;
		max-width: 100% !important;
		float: none !important;
		padding: 0 !important;
		margin: 0 0 20px 0 !important;
		border: 0 !important;
	}

	#pl_booking_step_datas_form {
		width: 100% !important;
		max-width: 100% !important;
		float: none !important;
		padding-left: 0 !important;
		padding: 5% !important;
		margin: 0 0 20px 0 !important;
		border: 0 !important;
	}

	#pl_opening_hours_entry {
		padding: 0 !important;
		margin: 0 0 16px 0 !important;
		width: 100% !important;
	}

	#pl_area_selector_section {
		margin: 20px 0 15px !important;
		padding: 0 !important;
		width: 100% !important;
		float: none !important;
	}

	#pl_time_section {
		margin-top: 20px !important;
		padding: 0 !important;
		width: 100% !important;
		float: none !important;
	}

	#pr_opening_hours_card,
	.pr-opening-hours-card {
		width: 100% !important;
		max-width: 100% !important;
		text-align: left !important;
		margin: 0 0 16px 0 !important;
		padding: 14px 18px 14px 22px !important;
		border: 1px solid #dcdcde !important;
		border-left: 4px solid var(--pr-primary-color, #760076) !important;
		border-radius: 6px !important;
		background: #ffffff !important;
		box-sizing: border-box !important;
	}

	.pr-opening-hours-text {
		text-align: left !important;
		margin: 0 !important;
		padding-left: 4px !important;
	}

	/* Space between slot messages and button */
	.pr-slot-notice,
	.geskes_time_notification,
	.geskes_guest_notification,
	.pr-advance-notice-msg,
	#pl_event_message,
	.pr-outdoor-no-backup-notice {
		margin-bottom: 20px !important;
		margin-top: 12px !important;
	}

	/* Table reservation button displayed in CENTER instead of full width */
	#pl_btn_go_to_booking_container {
		width: 100% !important;
		/*float: none !important;*/
		text-align: center !important;
		margin-top: 24px !important;
		margin-bottom: 10px !important;
		display: block !important;
	}

	#pl_btn_go_to_booking {
		display: inline-block !important;
		width: auto !important;
		max-width: 100% !important;
		min-width: 220px !important;
		padding: 15px 35px !important;
		margin: 0 auto !important;
		float: none !important;
		font-size: 16px !important;
		font-weight: 500 !important;
		text-align: center !important;
		border-radius: 0 !important;
	}

	/* Form Field Containers - full width stack on mobile */
	#pl_booking_step_datas_form_container #pl_booking_form_name_container,
	#pl_booking_step_datas_form_container #pl_booking_form_surname_container,
	#pl_booking_step_datas_form_container #pl_booking_form_email_container,
	#pl_booking_step_datas_form_container #pl_booking_form_phone_container {
		width: 100% !important;
		max-width: 100% !important;
		/*float: none !important;*/
		margin: 0 0 16px 0 !important;
		padding: 0 !important;
	}

	#pl_booking_step_datas_form_container label {
		display: block !important;
		float: none !important;
		width: 100% !important;
		margin-bottom: 6px !important;
		font-size: 14px !important;
		font-weight: normal !important;
		color: #666666 !important;
	}

	#pl_booking_step_datas_form_container input[type="text"],
	#pl_booking_step_datas_form_container input[type="email"],
	#pl_booking_step_datas_form_container select,
	#pl_booking_step_datas_form_container textarea {
		width: 100% !important;
		max-width: 100% !important;
		min-height: 44px !important;
		padding: 10px 14px !important;
		font-size: 14px !important;
		border: 1px solid #bbbbbb !important;
		border-radius: 0 !important;
		background: #ffffff !important;
		box-sizing: border-box !important;
	}

	#pl_booking_step_datas_form_container textarea {
		min-height: 100px !important;
		resize: vertical !important;
	}

	/* Checkout button left-aligned and small instead of full width */
	.pl_booking_container_2 .pl_options_first_font,
	.pl_booking_container_2 #pl_submit_go_to_checkout,
	#pl_booking_step_datas_form_container button {
		float: left !important;
		display: inline-block !important;
		width: auto !important;
		max-width: 100% !important;
		padding: 12px 24px !important;
		font-size: 14px !important;
		margin-top: 20px !important;
		margin-bottom: 10px !important;
		text-align: left !important;
		border-radius: 0 !important;
	}

	/* Checkbox Containers (Dog & Voucher) */
	#pl_booking_form_hot_stone_container,
	#pl_booking_form_preheat_stone_container,
	#pr_outdoor_no_backup_checkbox_container {
		display: flex !important;
		align-items: flex-start !important;
		gap: 12px !important;
		margin: 14px 0 !important;
		width: 100% !important;
	}

	#pl_booking_form_hot_stone_container input[type="checkbox"],
	#pl_booking_form_preheat_stone_container input[type="checkbox"],
	#pr_outdoor_no_backup_checkbox_container input[type="checkbox"] {
		width: 18px !important;
		height: 18px !important;
		min-width: 18px !important;
		margin-top: 2px !important;
		cursor: pointer !important;
		accent-color: var(--pr-primary-color, #760076) !important;
	}

	#pl_booking_form_hot_stone_container label,
	#pl_booking_form_preheat_stone_container label,
	#pr_outdoor_no_backup_checkbox_container label {
		font-size: 14px !important;
		font-weight: normal !important;
		line-height: 1.4 !important;
		color: #666666 !important;
		cursor: pointer !important;
		margin: 0 !important;
	}

	/* Datepicker Container & Calendar — 1. Removed e2e2e2 border */
	#pl_datepicker_dev {
		width: 100% !important;
		max-width: 100% !important;
		padding: 30px 0 !important;
		margin: 0 auto !important;
	}

	.ui-datepicker {
		width: 100% !important;
		max-width: 100% !important;
		/*padding: 8px !important;*/
		border: none !important;
		border-radius: 0 !important;
	}

	.ui-datepicker table {
		width: 100% !important;
		table-layout: fixed !important;
	}

	.ui-datepicker th,
	.ui-datepicker td {
		padding: 2px !important;
		text-align: center !important;
	}

	.ui-datepicker td a,
	.ui-datepicker td span {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		min-height: 38px !important;
		height: 38px !important;
		font-size: 14px !important;
		border-radius: 0 !important;
		padding: 0 !important;
	}

	/* Seating Area Option Cards */
	#pl_area_selector_section .pl-area-options {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 10px !important;
		width: 100% !important;
		margin: 10px 0 !important;
	}

	#pl_area_selector_section .pl-area-option {
		flex: 1 1 calc(50% - 6px) !important;
		min-width: 0 !important;
		width: auto !important;
		padding: 12px 8px !important;
		font-size: 14px !important;
		justify-content: center !important;
	}

	/* Thank you page space left and right side */
	/*#pl_thanks_step {
		width: calc(100% - 32px) !important;
		margin: 24px auto !important;
		padding: 24px 20px !important;
		box-sizing: border-box !important;
		border: 2px solid var(--pr-primary-color, #760076) !important;
		background: #ffffff !important;
	}*/
}

/* Small Mobile Screens (max-width: 480px) */
@media screen and (max-width: 480px) {
	#pl_component_container {
		/*padding: 16px 12px !important;*/
	}

	#pl_area_selector_section .pl-area-option {
		flex: 1 1 100% !important;
		width: 100% !important;
	}

	.ui-datepicker td a,
	.ui-datepicker td span {
		min-height: 34px !important;
		height: 34px !important;
		font-size: 13px !important;
	}

	.pl_booking_container_all,
	.pl_booking_container_1,
	.pl_booking_container_2 {
		padding: 16px 12px 24px !important;
	}

	/*#pl_thanks_step {
		width: calc(100% - 24px) !important;
		margin: 16px auto !important;
		padding: 20px 14px !important;
	}*/
}

/* Fix 2-column layout grid alignment when validation error messages appear */
@media (min-width: 768px) {
	#pl_booking_step_datas_form_container #pl_booking_form_name_container,
	#pl_booking_step_datas_form_container #pl_booking_form_email_container {
		clear: left !important;
	}

	#pl_booking_step_datas_form_container #pl_booking_form_surname_container,
	#pl_booking_step_datas_form_container #pl_booking_form_phone_container {
		clear: right !important;
	}
}
