/* ==========================================================================
   mphb-gs-faq — FAQ accordion (public page, standalone)
   ========================================================================== */

.mphb-gs-faq {
	--faq-radius: 12px;
	--faq-gap: 10px;
	--faq-bg: #fff;
	--faq-border: #e0e0e0;
	--faq-question-color: #1a1a1a;
	--faq-text-color: #3c3c3c;
	--faq-accent: #b99d75;
	--faq-hover-bg: #faf7f3;
	--faq-warm-bg: #f5f0e8;
	--faq-placeholder-color: #999;
	--faq-focus-border: #7a6548;
	--faq-link-hover: #9e7b2e;
	--faq-icon-size: 20px;
	--faq-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);

	max-width: 900px;
	margin: 0 auto;
	font-family: inherit;
}

/* Dark theme overrides moved to end of file for cascade order */

/* ---- Search ---- */

.mphb-gs-faq__search {
	margin-bottom: 28px;
	background: var(--faq-warm-bg);
	border-radius: var(--faq-radius);
	padding: 20px 24px;
}

.mphb-gs-faq__search-label {
	display: block;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--faq-question-color);
	margin-bottom: 10px;
	letter-spacing: 0.02em;
}

.mphb-gs-faq__search-field {
	position: relative;
}

.mphb-gs-faq__search-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%237a6548' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") center / contain no-repeat;
	pointer-events: none;
}

.mphb-gs-faq__search-input {
	width: 100%;
	padding: 16px 18px 16px 46px;
	border: 2px solid transparent;
	border-radius: 10px;
	background: var(--faq-bg);
	font: inherit;
	font-size: 1.02rem;
	color: var(--faq-question-color);
	transition: border-color var(--faq-transition), box-shadow var(--faq-transition);
	box-sizing: border-box;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.mphb-gs-faq__search-input::placeholder {
	color: var(--faq-placeholder-color);
}

.mphb-gs-faq__search-input:focus {
	outline: none;
	border-color: var(--faq-focus-border);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(122, 101, 72, 0.35);
}

.mphb-gs-faq__no-results {
	text-align: center;
	color: var(--faq-placeholder-color);
	font-size: 0.95rem;
	padding: 24px 0;
	margin: 0;
}

/* ---- Category headers ---- */

.mphb-gs-faq__category {
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--faq-accent);
	border-left: 3px solid var(--faq-accent);
	padding-left: 12px;
	margin: 36px 0 16px;
	line-height: 1.3;
}

.mphb-gs-faq__list > .mphb-gs-faq__category:first-child {
	margin-top: 0;
}

/* ---- Contact CTA ---- */

.mphb-gs-faq__cta {
	text-align: center;
	background: var(--faq-warm-bg);
	border-radius: var(--faq-radius);
	padding: 32px 24px;
	margin-top: 36px;
	margin-bottom: 48px;
}

.mphb-gs-faq__cta-text {
	margin: 0 0 6px;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--faq-question-color);
}
.mphb-gs-faq__cta-sub {
	margin: 0 0 20px;
	font-size: 0.9rem;
	color: var(--faq-text-color);
}
.mphb-gs-faq__cta-buttons {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.mphb-gs-faq__cta-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 32px;
	background: var(--faq-accent);
	color: var(--lw-white, #fff);
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: background var(--faq-transition), box-shadow var(--faq-transition), transform var(--faq-transition);
}
.mphb-gs-faq__cta-link--wa {
	background: #25d366;
}

.mphb-gs-faq__cta-link:hover {
	background: var(--villa-accent-dark, #a2865f);
	box-shadow: 0 4px 16px rgba(185, 157, 117, 0.4);
	transform: translateY(-2px);
}
.mphb-gs-faq__cta-link--wa:hover {
	background: #1da851;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* ---- Item ---- */

.mphb-gs-faq__item {
	background: var(--faq-bg);
	border: 1px solid var(--faq-border);
	border-radius: var(--faq-radius);
	margin-bottom: var(--faq-gap);
	overflow: hidden;
	transition: box-shadow var(--faq-transition);
}

.mphb-gs-faq__item:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ---- Trigger button ---- */

.mphb-gs-faq__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 18px 22px;
	margin: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	text-align: left;
	font: inherit;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--faq-question-color);
	transition: background var(--faq-transition);
}

.mphb-gs-faq__trigger:hover,
.mphb-gs-faq__trigger:focus-visible {
	background: var(--faq-hover-bg);
}

.mphb-gs-faq__trigger:focus-visible {
	outline: 2px solid var(--faq-accent);
	outline-offset: -2px;
}

/* ---- Topic picto ---- */

.mphb-gs-faq__picto {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	background: var(--faq-hover-bg);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: 18px 18px;
	background-position: center;
	background-repeat: no-repeat;
}

/* svgs use stroke=%23b99d75 (gold accent) */
.mphb-gs-faq__picto--pricing    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='1' x2='12' y2='23'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--children   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--clock      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--booking    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--payment    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--email      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--cancel     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--refund     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1 4 1 10 7 10'/%3E%3Cpath d='M3.51 15a9 9 0 1 0 2.13-9.36L1 10'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--star       { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--breakfast  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8h1a4 4 0 0 1 0 8h-1'/%3E%3Cpath d='M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z'/%3E%3Cline x1='6' y1='1' x2='6' y2='4'/%3E%3Cline x1='10' y1='1' x2='10' y2='4'/%3E%3Cline x1='14' y1='1' x2='14' y2='4'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--meals      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2'/%3E%3Cline x1='7' y1='2' x2='7' y2='22'/%3E%3Cpath d='M21 15V2v0a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3zm0 0v7'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--car        { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17h14M5 17a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1l2-3h8l2 3h1a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2'/%3E%3Ccircle cx='7.5' cy='17' r='2'/%3E%3Ccircle cx='16.5' cy='17' r='2'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--equipment  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--activities { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolygon points='16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--cleaning   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L12 8'/%3E%3Cpath d='M6 8h12l-1.5 14H7.5L6 8z'/%3E%3Cpath d='M8 2C8 2 9 5 12 5s4-3 4-3'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--grocery    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--wifi       { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.55a11 11 0 0 1 14.08 0'/%3E%3Cpath d='M1.42 9a16 16 0 0 1 21.16 0'/%3E%3Cpath d='M8.53 16.11a6 6 0 0 1 6.95 0'/%3E%3Cline x1='12' y1='20' x2='12.01' y2='20'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--villa      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--baby       { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 12h.01'/%3E%3Cpath d='M15 12h.01'/%3E%3Cpath d='M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5'/%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--prayer     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2C8 2 6 5 6 8c0 2 1 3.5 2 4.5V22h8v-9.5c1-1 2-2.5 2-4.5 0-3-2-6-6-6z'/%3E%3Cpath d='M10 2c0 0 .5 2 2 2s2-2 2-2'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--pets       { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='8' cy='4' rx='2' ry='2.5'/%3E%3Cellipse cx='16' cy='4' rx='2' ry='2.5'/%3E%3Cellipse cx='4' cy='10' rx='2' ry='2.5'/%3E%3Cellipse cx='20' cy='10' rx='2' ry='2.5'/%3E%3Cpath d='M8 15c0 3 2 5 4 5s4-2 4-5c0-2-2-3-4-3s-4 1-4 3z'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--visit      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--guests     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--nosmoking  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='4.93' y1='4.93' x2='19.07' y2='19.07'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--privatize  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13' rx='2' ry='2'/%3E%3Cpath d='M16 8h5a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-5'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--power      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--portal     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='2' width='14' height='20' rx='2' ry='2'/%3E%3Cline x1='12' y1='18' x2='12.01' y2='18'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--transfer   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17h14M5 17a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1l2-3h8l2 3h1a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2'/%3E%3Ccircle cx='7.5' cy='17' r='2'/%3E%3Ccircle cx='16.5' cy='17' r='2'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--plane      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.8 19.2L16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5 5.1 3-3.3 3.3-2.1-.8-.7.7 2.7 2.7 2.7 2.7.7-.7-.8-2.1 3.3-3.3 3 5.1.5-.3c.4-.2.6-.6.5-1.1z'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--pool       { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12c2-2 4-2 6 0s4 2 6 0 4-2 6 0'/%3E%3Cpath d='M2 18c2-2 4-2 6 0s4 2 6 0 4-2 6 0'/%3E%3Cline x1='6' y1='4' x2='6' y2='12'/%3E%3Cline x1='18' y1='4' x2='18' y2='12'/%3E%3Cline x1='6' y1='4' x2='18' y2='4'/%3E%3C/svg%3E"); }
.mphb-gs-faq__picto--location   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b99d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }

/* ---- Chevron icon ---- */

.mphb-gs-faq__icon {
	flex-shrink: 0;
	width: var(--faq-icon-size);
	height: var(--faq-icon-size);
	position: relative;
	transition: transform var(--faq-transition);
}

.mphb-gs-faq__icon::before,
.mphb-gs-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: var(--faq-accent);
	border-radius: 1px;
	transition: transform var(--faq-transition);
}

.mphb-gs-faq__icon::before {
	transform: translate(-50%, -50%);
}

.mphb-gs-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.mphb-gs-faq__item--open .mphb-gs-faq__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

/* ---- Answer panel ---- */

.mphb-gs-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows var(--faq-transition);
}

.mphb-gs-faq__item--open .mphb-gs-faq__answer {
	grid-template-rows: 1fr;
}

.mphb-gs-faq__content {
	overflow: hidden;
	padding: 0 22px;
	color: var(--faq-text-color);
	font-size: 0.97rem;
	line-height: 1.65;
}

.mphb-gs-faq__item--open .mphb-gs-faq__content {
	padding-bottom: 22px;
}

/* Content typography */

.mphb-gs-faq__content p {
	margin: 0 0 12px;
}

.mphb-gs-faq__content p:last-child {
	margin-bottom: 0;
}

.mphb-gs-faq__content ul {
	margin: 4px 0 12px 20px;
	padding: 0;
}

.mphb-gs-faq__content li {
	margin-bottom: 4px;
}

.mphb-gs-faq__content a {
	color: var(--faq-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.mphb-gs-faq__content a:hover {
	color: var(--faq-link-hover);
}

.mphb-gs-faq__content strong {
	font-weight: 600;
}

/* ---- Pricing table ---- */

.mphb-gs-faq__table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 16px 0;
}

.mphb-gs-faq__pricing {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
	white-space: nowrap;
}

.mphb-gs-faq__pricing th,
.mphb-gs-faq__pricing td {
	padding: 10px 14px;
	text-align: center;
	border: 1px solid var(--faq-border);
}

.mphb-gs-faq__pricing thead th {
	background: var(--faq-accent);
	color: var(--lw-white, #fff);
	font-weight: 600;
	font-size: 0.88rem;
	line-height: 1.35;
}

.mphb-gs-faq__pricing thead th small {
	display: block;
	font-weight: 400;
	opacity: 0.85;
	margin-top: 2px;
	white-space: normal;
}

.mphb-gs-faq__pricing tbody tr:nth-child(even) {
	background: var(--faq-hover-bg);
}

.mphb-gs-faq__villa-name {
	text-align: left !important;
	white-space: nowrap;
}

.mphb-gs-faq__price-cell {
	white-space: nowrap;
}

.mphb-gs-faq__price-std {
	font-weight: 600;
	font-size: 1rem;
}

.mphb-gs-faq__price-weekly {
	color: var(--faq-text-color);
}

.mphb-gs-faq__price-weekly span {
	font-size: 0.82em;
	opacity: 0.75;
}

/* ---- Media (images / maps) inside answers ---- */

.mphb-gs-faq__media {
	margin: 0 0 16px;
	border-radius: 8px;
	overflow: hidden;
}

.mphb-gs-faq__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
	max-height: 320px;
}

.mphb-gs-faq__media iframe {
	display: block;
	width: 100%;
	border-radius: 8px;
}

/* ---- Card grid (visual lists) ---- */

.mphb-gs-faq__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 12px 0;
}

.mphb-gs-faq__card {
	border: 1px solid var(--faq-border);
	border-radius: 8px;
	overflow: hidden;
	background: var(--faq-bg);
	transition: box-shadow var(--faq-transition);
}

.mphb-gs-faq__card:hover {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.mphb-gs-faq__card img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.mphb-gs-faq__card-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: var(--faq-warm-bg);
}

.mphb-gs-faq__card-name {
	padding: 8px 10px;
	font-size: 0.85rem;
	font-weight: 600;
	text-align: center;
	color: var(--faq-question-color);
	line-height: 1.3;
}

/* ---- Compact card grid (many items) ---- */

.mphb-gs-faq__cards--compact {
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 8px;
}

.mphb-gs-faq__cards--compact .mphb-gs-faq__card img {
	aspect-ratio: 1 / 1;
}

.mphb-gs-faq__cards--compact .mphb-gs-faq__card-placeholder {
	aspect-ratio: 1 / 1;
}

.mphb-gs-faq__cards--compact .mphb-gs-faq__card-name {
	padding: 5px 6px;
	font-size: 0.75rem;
}

/* ---- Responsive ---- */

@media (max-width: 600px) {
	.mphb-gs-faq__cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.mphb-gs-faq__card-name {
		padding: 6px 8px;
		font-size: 0.8rem;
	}

	.mphb-gs-faq__cards--compact {
		grid-template-columns: repeat(3, 1fr);
		gap: 6px;
	}

	.mphb-gs-faq__cards--compact .mphb-gs-faq__card-name {
		padding: 4px 5px;
		font-size: 0.7rem;
	}

	.mphb-gs-faq__search {
		padding: 16px;
	}

	.mphb-gs-faq__search-input {
		padding: 14px 14px 14px 46px;
		font-size: 0.95rem;
	}

	.mphb-gs-faq__trigger {
		padding: 14px 16px;
		font-size: 0.97rem;
	}

	.mphb-gs-faq__picto {
		width: 24px;
		height: 24px;
		background-size: 15px 15px;
		border-radius: 6px;
	}

	.mphb-gs-faq__content {
		padding: 0 16px;
		font-size: 0.93rem;
	}

	.mphb-gs-faq__item--open .mphb-gs-faq__content {
		padding-bottom: 16px;
	}

	.mphb-gs-faq__pricing {
		font-size: 0.82rem;
	}

	.mphb-gs-faq__pricing th,
	.mphb-gs-faq__pricing td {
		padding: 8px 10px;
	}

	.mphb-gs-faq__price-std {
		font-size: 0.92rem;
	}

	.mphb-gs-faq__category {
		margin: 28px 0 12px;
	}

	.mphb-gs-faq__cta {
		padding: 24px 16px;
		margin-top: 28px;
	}

	.mphb-gs-faq__cta-text {
		font-size: 0.97rem;
	}

	.mphb-gs-faq__cta-link {
		padding: 10px 24px;
	}

	.mphb-gs-faq__media img {
		max-height: 220px;
	}

	.mphb-gs-faq__media iframe {
		height: 200px;
	}

	.mphb-gs-faq__toolbar {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	.mphb-gs-faq__chips {
		gap: 5px;
	}

	.mphb-gs-faq__chip {
		padding: 5px 10px;
		font-size: 0.76rem;
	}

	.mphb-gs-faq__expand-toggle {
		align-self: center;
		font-size: 0.76rem;
	}

	.mphb-gs-faq__feedback {
		flex-wrap: wrap;
		font-size: 0.78rem;
		gap: 6px;
	}

	.mphb-gs-faq__back-to-top {
		bottom: 16px;
		right: 16px;
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}
}

/* ---- Toolbar (chips + expand toggle) ---- */

.mphb-gs-faq__toolbar {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	min-height: 44px;
	contain: layout style;
}

.mphb-gs-faq__chips {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.mphb-gs-faq__chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 14px;
	border: 1px solid var(--faq-border);
	border-radius: 20px;
	background: var(--faq-bg);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--faq-text-color);
	cursor: pointer;
	transition: all var(--faq-transition);
	white-space: nowrap;
}

.mphb-gs-faq__chip:hover {
	border-color: var(--faq-accent);
	color: var(--faq-accent);
}

.mphb-gs-faq__chip--active {
	background: var(--faq-accent);
	border-color: var(--faq-accent);
	color: var(--lw-white, #fff);
}

.mphb-gs-faq__chip-count {
	font-size: 0.72rem;
	opacity: 0.7;
}

.mphb-gs-faq__chip--active .mphb-gs-faq__chip-count {
	opacity: 0.85;
}

.mphb-gs-faq__expand-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border: 1px solid var(--faq-border);
	border-radius: 8px;
	background: var(--faq-bg);
	font: inherit;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--faq-accent);
	cursor: pointer;
	transition: all var(--faq-transition);
	white-space: nowrap;
}

.mphb-gs-faq__expand-icon {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.3s ease;
}

.mphb-gs-faq__expand-toggle[data-state="expanded"] .mphb-gs-faq__expand-icon {
	transform: rotate(-135deg) translateY(-2px);
}

.mphb-gs-faq__expand-toggle:hover {
	background: var(--faq-hover-bg);
	border-color: var(--faq-accent);
}

.mphb-gs-faq__expand-toggle:focus,
.mphb-gs-faq__expand-toggle:active {
	background: var(--faq-bg);
	outline: none;
}

/* ---- Category question count ---- */

.mphb-gs-faq__category-count {
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--faq-text-color);
	opacity: 0.5;
	margin-left: 4px;
}

/* ---- "Was this helpful?" feedback ---- */

.mphb-gs-faq__feedback {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid var(--faq-border);
	font-size: 0.82rem;
	color: var(--faq-question-color);
}

.mphb-gs-faq__feedback-label {
	margin-right: 4px;
}

.mphb-gs-faq__feedback-btn {
	border: none;
	background: none;
	cursor: pointer;
	font-size: 1.1rem;
	padding: 2px 6px;
	border-radius: 6px;
	transition: background var(--faq-transition);
	line-height: 1;
}

.mphb-gs-faq__feedback-btn:hover {
	background: var(--faq-hover-bg);
}

.mphb-gs-faq__feedback-thanks {
	color: var(--faq-question-color);
	font-weight: 600;
}

/* ---- Back-to-top button ---- */

.mphb-gs-faq__back-to-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: var(--faq-accent);
	color: var(--lw-white, #fff);
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--faq-transition), visibility var(--faq-transition), transform var(--faq-transition);
	z-index: 100;
	line-height: 1;
}

.mphb-gs-faq__back-to-top--visible {
	opacity: 1;
	visibility: visible;
}

.mphb-gs-faq__back-to-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 16px rgba(185, 157, 117, 0.4);
}

/* ---- CozyStay theme override protection ---- */

.mphb-gs-faq .mphb-gs-faq__trigger,
.mphb-gs-faq .mphb-gs-faq__trigger:hover,
.mphb-gs-faq .mphb-gs-faq__trigger:focus {
	box-shadow: none;
	text-decoration: none;
}

.mphb-gs-faq .mphb-gs-faq__search-input {
	-webkit-appearance: none;
	padding-left: 46px !important;
}

.mphb-gs-faq .mphb-gs-faq__search-input:focus {
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(122, 101, 72, 0.35);
}

.mphb-gs-faq .mphb-gs-faq__content a:not([class*="button"]) {
	color: var(--faq-accent);
}

.mphb-gs-faq .mphb-gs-faq__cta-link,
.mphb-gs-faq .mphb-gs-faq__cta-link:hover,
.mphb-gs-faq .mphb-gs-faq__cta-link:focus {
	color: var(--lw-white, #fff) !important;
	text-decoration: none !important;
	box-shadow: none;
}

.mphb-gs-faq .mphb-gs-faq__cta-link:hover {
	background: var(--villa-accent-dark, #a2865f) !important;
	box-shadow: 0 4px 16px rgba(185, 157, 117, 0.4) !important;
	transform: translateY(-2px);
}

.mphb-gs-faq .mphb-gs-faq__cta-link--wa:hover {
	background: #1da851 !important;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35) !important;
}

.mphb-gs-faq .mphb-gs-faq__category {
	font-family: inherit;
	font-size: 0.82rem !important;
	font-weight: 600;
	letter-spacing: 0.08em !important;
	color: var(--faq-accent) !important;
	margin: 36px 0 16px !important;
}

.mphb-gs-faq .mphb-gs-faq__list > .mphb-gs-faq__category:first-child {
	margin-top: 0 !important;
}

.mphb-gs-faq .mphb-gs-faq__chip,
.mphb-gs-faq .mphb-gs-faq__chip:hover,
.mphb-gs-faq .mphb-gs-faq__chip:focus,
.mphb-gs-faq .mphb-gs-faq__expand-toggle,
.mphb-gs-faq .mphb-gs-faq__expand-toggle:hover,
.mphb-gs-faq .mphb-gs-faq__expand-toggle:focus {
	box-shadow: none;
	text-decoration: none;
}

.mphb-gs-faq .mphb-gs-faq__feedback-btn,
.mphb-gs-faq .mphb-gs-faq__feedback-btn:hover,
.mphb-gs-faq .mphb-gs-faq__feedback-btn:focus {
	box-shadow: none;
	text-decoration: none;
}

/* WordPress emoji fix for FAQ feedback buttons */
.mphb-gs-faq img.emoji {
	width: 1em;
	height: 1em;
	display: inline;
	vertical-align: -0.1em;
}

/* ---- Print styles ---- */

@media print {
	.mphb-gs-faq__search,
	.mphb-gs-faq__toolbar,
	.mphb-gs-faq__back-to-top,
	.mphb-gs-faq__feedback,
	.mphb-gs-faq__icon,
	.mphb-gs-faq__cta {
		display: none !important;
	}

	.mphb-gs-faq__answer {
		grid-template-rows: 1fr !important;
	}

	.mphb-gs-faq__content {
		overflow: visible !important;
		padding-bottom: 16px !important;
	}

	.mphb-gs-faq__item {
		break-inside: avoid;
		page-break-inside: avoid;
		border: 1px solid #ccc !important;
		box-shadow: none !important;
	}

	.mphb-gs-faq__trigger {
		cursor: default;
	}

	.mphb-gs-faq__media iframe {
		display: none !important;
	}
}

/* ==========================================================================
   Dark theme — navy page background (body.lw-page[data-pp-theme="dark"])
   MUST be at end of file so cascade order wins over base styles.
   ========================================================================== */

body.lw-page[data-pp-theme="dark"] .mphb-gs-faq {
	--faq-bg: rgba(255, 255, 255, 0.06);
	--faq-border: rgba(255, 255, 255, 0.1);
	--faq-question-color: #fff;
	--faq-text-color: rgba(255, 255, 255, 0.8);
	--faq-hover-bg: rgba(255, 255, 255, 0.08);
}

body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__search {
	background: rgba(255, 255, 255, 0.05);
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__search-input {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.1);
	color: var(--lw-white, #fff);
	box-shadow: none;
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__search-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__search-input:focus {
	border-color: var(--faq-accent);
}

body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__cta {
	background: rgba(255, 255, 255, 0.05);
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__cta-sub {
	color: rgba(255, 255, 255, 0.5);
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__no-results {
	color: rgba(255, 255, 255, 0.5);
}

/* ---- Route cards (How to get to Djerba) ---- */
.mphb-gs-faq__routes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 10px;
	margin-top: 4px;
}

.mphb-gs-faq__route-card {
	background: var(--faq-bg);
	border: 1px solid var(--faq-border);
	border-radius: 8px;
	padding: 12px 14px;
	cursor: pointer;
	transition: box-shadow 0.2s, background 0.2s;
}

.mphb-gs-faq__route-card:hover,
.mphb-gs-faq__route-card.is-active {
	background: var(--faq-hover-bg);
}

.mphb-gs-faq__route-title {
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--faq-question-color);
}

.mphb-gs-faq__route-desc {
	font-size: 13px;
	color: var(--faq-text-color);
}

.mphb-gs-faq__map {
	width: 100%;
	height: 260px;
	border-radius: 8px;
	background: var(--faq-bg);
}

/* Cards (villa images, equipment grids) */
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__card {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.1);
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__card-placeholder {
	background: rgba(255, 255, 255, 0.04);
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__card-name {
	color: rgba(255, 255, 255, 0.85);
}

/* Pricing table */
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__pricing thead th {
	background: rgba(185, 157, 117, 0.2);
	color: var(--lw-white, #fff);
	border-color: rgba(255, 255, 255, 0.1);
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__pricing tbody td {
	color: rgba(255, 255, 255, 0.85);
	border-color: rgba(255, 255, 255, 0.08);
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__pricing tbody tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.04);
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__pricing tbody tr:nth-child(odd) {
	background: transparent;
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__price-weekly {
	color: rgba(255, 255, 255, 0.5);
}

/* +/- icon */
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__icon::before,
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__icon::after {
	background: rgba(255, 255, 255, 0.6);
}

/* Filter tags */
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__tag {
	border-color: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.7);
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__tag:hover {
	background: rgba(255, 255, 255, 0.08);
}
body.lw-page[data-pp-theme="dark"] .mphb-gs-faq__tag--active {
	background: var(--faq-accent);
	border-color: var(--faq-accent);
	color: var(--lw-white, #fff);
}
