/**
 * SalmaDesign, and the two-step booking form.
 *
 * Two groups of rules, scoped differently on purpose.
 *
 * The page layout — the media column, the aside, the price block — stays under
 * .wptm-salma-design, because it arranges that one design's page and must not
 * touch another's.
 *
 * The booking form does not. It is drawn on every design now: in the page under
 * the closing call to action, and inside the dialog a phone opens. Its rules
 * were scoped to the design wrapper too, so on the other seven designs the form
 * rendered with no styling at all — the stylesheet was being loaded, which is
 * why the fault was easy to miss, but not one of its selectors could match.
 *
 * Those rules are scoped by their own prefix instead. Every class the form uses
 * is wptm-salma__*, which is unique to it, so the prefix is the scope — the
 * same convention the rest of this plugin's stylesheets already follow.
 */

/**
 * SalmaDesign.
 *
 * Every rule begins with .wptm-salma-design. Nothing here can reach another
 * tour design, another plugin or the theme, which is the whole reason the
 * design is a separate stylesheet rather than a set of modifiers inside the
 * shared one.
 *
 * It inherits the theme's typeface, like the rest of the plugin, and reuses
 * the accent colour the site already defines. No font is loaded, no colour is
 * invented, and no generic selector appears anywhere in this file.
 */

/*
 * The plugin's own ancestors of the panel state their overflow.
 *
 * An ancestor with overflow set to anything but visible turns a sticky
 * descendant into an ordinary one. It fails silently: no error, no warning,
 * the panel simply scrolls away, which is what makes it hard to find.
 *
 * These three are the only ancestors the plugin owns. If the panel still does
 * not stay, the element clipping it belongs to the theme, and the console line
 * in the note below will name it.
 */
.wptm-salma-design,
.wptm-salma-design .wptm-salma__layout,
.wptm-salma-design .wptm-salma__main {
	overflow: visible;
}

.wptm-salma-design {
	--salma-gap: clamp(22px, 3vw, 40px);
	--salma-radius: 14px;
	--salma-line: 1px solid var(--wptm-hairline);
}

/* The gallery column. It carries no styling of its own beyond not being
   allowed to force the grid wider than its share. */
.wptm-salma-design .wptm-salma__media {
	min-width: 0;
}

/* The form is a plain block; its fields carry the styling. */
.wptm-salma__form {
	margin: 0;
}

/*
 * The side gutter on a phone.
 *
 * The shared stylesheet puts this on .wptm-tour__article, which the classic
 * design renders as an inner wrapper. This design has no such wrapper, so it
 * received no side padding at all: every row ran to the glass and anything a
 * little too wide was cut off at the right edge.
 *
 * Applied to the parts rather than to the root, because the root is also the
 * container for the sticky panel and the fixed mobile bar, and padding there
 * would move both.
 */
/*
 * Nothing may reach past the edge, and clipping is not available here.
 *
 * The classic design guards this with overflow-x: clip on its article wrapper.
 * This design cannot: any ancestor with a non visible overflow turns the
 * sticky panel into an ordinary one, which is the fault that took several
 * attempts to find.
 *
 * So the guarantee is made at source instead. Every descendant is capped at
 * the width of what holds it and told it may shrink, which is what the clip
 * was covering for. A grid track sized to max-content is the one thing that
 * can still exceed its parent, so those are named and capped too.
 */
.wptm-salma-design .wptm-salma__layout,
.wptm-salma-design .wptm-salma__main,
.wptm-salma-design .wptm-salma__top,
.wptm-salma-design .wptm-salma__body,
.wptm-salma-design .wptm-salma__aside,
.wptm-salma-design .wptm-salma__panel {
	min-width: 0;
	max-width: 100%;
}

/*
 * The facts row: the label column is sized to its content so a word is never
 * broken, but on a very narrow card a long translated label plus a long value
 * could together exceed the row. minmax lets that column give way before the
 * row does.
 */
.wptm-salma-design .wptm-salma__quickrow {
	grid-template-columns: 20px minmax(0, max-content) minmax(0, 1fr);
}

@media (max-width: 782px) {

	.wptm-salma-design .wptm-head,
	.wptm-salma-design .wptm-salma__layout,
	.wptm-salma-design .wptm-salma__done,
	.wptm-salma-design .wptm-block,
	.wptm-salma-design .wptm-related {
		padding-inline: var(--wptm-gutter);
	}

	/*
	 * The gallery stays inside the gutter.
	 *
	 * It used to cancel it with a negative margin so the picture reached the
	 * glass. That works for a normal block, which widens into its parent's
	 * padding; inside a grid the track width is computed first and the box is
	 * simply pushed outside its track, spilling past the screen on the right.
	 *
	 * The classic design does the same and gets away with it because its
	 * wrapper clips. This one cannot clip without turning the sticky panel
	 * into an ordinary one, so the bleed goes and every edge lines up.
	 */
	.wptm-salma-design .wptm-salma__media {
		margin-inline: 0;
	}
}

/* --- The layout: content, then the booking panel -------------------------- */

/*
 * One grid for the page.
 *
 * The panel is a child of THIS, not of the top row, and that is the whole
 * reason it can stay beside the reader: a sticky element moves within its own
 * containing block, so its parent must be as tall as the content being
 * scrolled past. Inside the gallery row it could only stay while the gallery
 * was on screen, which is exactly how it behaved.
 */
.wptm-salma-design .wptm-salma__layout {
	display: grid;
	gap: var(--salma-gap);
	margin-block-end: var(--salma-gap);
}

.wptm-salma-design .wptm-salma__main {
	min-width: 0;
}

/*
 * On one column the booking panel comes straight after the facts, not at the
 * end of the page.
 *
 * The markup order is content then panel, which is right for a desktop where
 * they sit side by side. Stacked, that order buries the form under the
 * itinerary, the inclusions and the questions: somebody ready to book after
 * reading the facts would have to scroll past everything to find it.
 *
 * display: contents lifts the two halves of the content column into the same
 * grid as the panel, so all three can be ordered. It is used only here, and
 * only below the width where the columns exist.
 */
@media (max-width: 1079px) {

	.wptm-salma-design .wptm-salma__main {
		display: contents;
	}

	/*
	 * On one column the ticket is as wide as the page, and a date field a
	 * thousand pixels wide is a strange thing to type in. Between the
	 * tablet widths the two fields of the first step share a line and the
	 * button takes the line under them; on a phone they stack as before.
	 */
	.wptm-salma-design .wptm-salma__step[data-wptm-salma-step="1"] {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 0 18px;
	}

	.wptm-salma-design .wptm-salma__step[data-wptm-salma-step="1"] > .wptm-salma__legend,
	.wptm-salma-design .wptm-salma__step[data-wptm-salma-step="1"] > .wptm-salma__next {
		grid-column: 1 / -1;
	}

	.wptm-salma-design .wptm-salma__top {
		order: 1;
		margin-block-end: 0;
	}

	.wptm-salma-design .wptm-salma__aside {
		order: 2;
	}

	.wptm-salma-design .wptm-salma__body {
		order: 3;
	}
}

@media (max-width: 640px) {

	.wptm-salma-design .wptm-salma__step[data-wptm-salma-step="1"] {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* The gallery and the facts, side by side inside the content column. */
.wptm-salma-design .wptm-salma__top {
	display: grid;
	gap: var(--salma-gap);
	margin-block-end: var(--salma-gap);
}

@media (min-width: 860px) {

	.wptm-salma-design .wptm-salma__top {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		/* Each column as tall as its own content, so a short one does not
		   inherit the height of the picture beside it. */
		align-items: start;
	}
}

@media (min-width: 1080px) {

	.wptm-salma-design .wptm-salma__layout {
		/*
		 * A fixed panel width rather than a share: a booking panel that grows
		 * with the screen only ends up with more white space in it.
		 */
		grid-template-columns: minmax(0, 1fr) 340px;
		align-items: start;
	}

	/*
	 * The panel follows the reader.
	 *
	 * sticky needs all of these and each is easy to lose: the item must not be
	 * stretched, so align-self is stated rather than left to the grid; no
	 * ancestor may set overflow to anything but visible; and there must be a
	 * top offset. The offset uses the variable the plugin sets for a fixed
	 * theme header, so the panel stops below Jannah's bar rather than under it.
	 */
	/*
	 * The panel travels with the reader, using the same mechanism as the
	 * classic sidebar because that one is proven on this theme.
	 *
	 * --wptm-side-top is written by the script: the header height plus a gap
	 * when the panel fits on screen, and a negative offset when it is taller,
	 * so it scrolls until its last row is visible and pins from there. That is
	 * better than an inner scrollbar, which is what a max-height would give.
	 *
	 * The fallback in the var() is what applies before the script runs and if
	 * it never does.
	 */
	.wptm-salma-design .wptm-salma__aside {
		align-self: start;
		position: sticky;
		top: var(--wptm-side-top, calc(var(--wptm-offset, 0px) + 24px));
	}
}

/*
 * A confirmation, across the content.
 *
 * The section brings its own styling; this only gives it the room, and hides
 * the empty booking column beside it so the confirmation is not sitting next
 * to a panel with nothing in it.
 */
.wptm-salma-design .wptm-salma__done {
	margin-block-end: var(--salma-gap);
}

/*
 * The stub code at the foot of the panel.
 *
 * A dashed rule above it, the way a ticket is perforated, and the quietest
 * type on the card: it is a reference somebody looks for when they need it,
 * not something the panel is about.
 *
 * Both the box and the drawing are sized and centred. Sizing only one leaves
 * the other free to fall back to its own width, and the svg's is the sum of
 * its bars, which is narrower than the box.
 */

/* --- The middle column: rating and facts ---------------------------------- */

.wptm-salma-design .wptm-salma__intro {
	min-width: 0;
}




/*
 * The facts.
 *
 * A hairline between rows rather than spacing alone: with only a gap, five
 * short rows read as a loose list and the eye has nothing to follow from the
 * label across to the value.
 */
.wptm-salma-design .wptm-salma__quick {
	display: grid;
	margin: 0;
	border-block-start: var(--salma-line);
}

.wptm-salma-design .wptm-salma__quickrow {
	display: grid;
	/*
	 * Mark, label, value on one line. The label column is sized to its content
	 * and does not shrink, so a word is never broken down the middle.
	 */
	/* minmax so the label column gives way before the row does. */
	grid-template-columns: 20px minmax(0, max-content) minmax(0, 1fr);
	align-items: baseline;
	gap: 12px;
	padding: 12px 0;
	border-block-end: var(--salma-line);
	font-size: 15px;
	line-height: 1.45;
}

.wptm-salma-design .wptm-salma__quickicon {
	line-height: 0;
	color: var(--wptm-accent);
	align-self: center;
}

.wptm-salma-design .wptm-salma__quickrow dt {
	margin: 0;
	color: var(--wptm-muted);
	white-space: nowrap;
	overflow-wrap: normal;
	word-break: keep-all;
}

.wptm-salma-design .wptm-salma__quickrow dd {
	margin: 0;
	font-weight: 700;
	text-align: end;
	min-width: 0;
	overflow-wrap: break-word;
}

/*
 * Highlights, at the size of the text around them.
 *
 * The shared design sets them at up to 17.5px and bold, which is a size that
 * works when they are the widest thing on the page. In this layout they sit in
 * a narrower column beside a panel, and at that width they read as a series of
 * small headings rather than as a list.
 */
.wptm-salma-design .wptm-features__title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
}

.wptm-salma-design .wptm-features__note {
	font-size: 14px;
	line-height: 1.6;
}

.wptm-salma-design .wptm-features__item {
	padding-block: 11px;
}

/*
 * The stepper.
 *
 * The buttons are 46px so they can be hit with a thumb, and the field between
 * them keeps its own border rather than gaining a second one.
 */
.wptm-salma__stepper {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr) 46px;
	align-items: stretch;
	border: 1px solid var(--wptm-border);
	border-radius: 10px;
	overflow: hidden;
}

.wptm-salma__stepper input {
	border: 0;
	border-radius: 0;
	text-align: center;
	min-height: 46px;
}

.wptm-salma__stepper input:focus {
	box-shadow: none;
	outline: 2px solid var(--wptm-accent);
	outline-offset: -2px;
}

/*
 * "2 Adults": the number and its noun in the middle cell, the number typed
 * in a field just wide enough for it and the noun beside it, so the pair
 * reads as one phrase and the buttons either side change it.
 */
.wptm-salma__count {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 0;
}

.wptm-salma__stepper .wptm-salma__count input {
	inline-size: 3ch;
	min-inline-size: 3ch;
	padding-inline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	text-align: end;
	font-weight: 600;
	-moz-appearance: textfield;
	appearance: textfield;
}

.wptm-salma__stepper .wptm-salma__count input:focus {
	outline: 2px solid var(--wptm-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

.wptm-salma__unit {
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
}

/* The next scheduled departure, under the date field. */
.wptm-salma__departure {
	display: block;
	margin-block-start: 6px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--wptm-accent-dark, var(--wptm-accent));
}

.wptm-salma__max {
	display: block;
	margin-block-start: 6px;
	font-size: 12px;
	text-align: center;
	color: var(--wptm-faint);
}

/*
 * The date field wears a calendar at its start and a chevron at its end. The
 * browser's own picker button is stretched across the whole field with no
 * opacity, so a press anywhere on the field opens the calendar and the
 * button the browser draws is not seen twice.
 */
.wptm-salma__datewrap {
	position: relative;
	display: block;
}

.wptm-salma__datewrap input[type="date"] {
	inline-size: 100%;
	padding-inline: 44px 40px;
	font-variant-numeric: tabular-nums;
}

.wptm-salma__datewrap input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	inset: 0;
	inline-size: 100%;
	block-size: 100%;
	margin: 0;
	padding: 0;
	opacity: 0;
	cursor: pointer;
}

.wptm-salma__dateicon,
.wptm-salma__datechev {
	position: absolute;
	inset-block-start: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: var(--wptm-accent);
	line-height: 0;
}

.wptm-salma__dateicon {
	inset-inline-start: 14px;
}

.wptm-salma__datechev {
	inset-inline-end: 18px;
	width: 9px;
	height: 9px;
	border-inline-end: 2px solid currentColor;
	border-block-end: 2px solid currentColor;
	transform: translateY(-70%) rotate(45deg);
	color: var(--wptm-muted);
}

/*
 * The reassurance row: up to three, side by side, each an icon over a title
 * over a note, centred, the way a ticket prints its conditions.
 */
.wptm-salma__assure {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	gap: 8px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.wptm-salma__assureitem {
	display: grid;
	justify-items: center;
	gap: 4px;
	margin: 0;
	padding: 0 4px;
	text-align: center;
	list-style: none;
}

.wptm-salma__assureitem::marker {
	content: "";
}

.wptm-salma__assureicon {
	line-height: 0;
	color: var(--wptm-accent);
	margin-block-end: 2px;
}

.wptm-salma__assureitem strong {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
}

.wptm-salma__assureitem span {
	font-size: 11px;
	line-height: 1.35;
	color: var(--wptm-muted);
}

@media (max-width: 380px) {

	.wptm-salma__assure {
		grid-template-columns: minmax(0, 1fr);
	}

	.wptm-salma__assureitem {
		grid-template-columns: auto minmax(0, 1fr);
		justify-items: start;
		text-align: start;
		column-gap: 10px;
	}

	.wptm-salma__assureicon {
		grid-row: 1 / 3;
	}
}

/*
 * The two stepper buttons. Named rather than selected as "button", so a theme
 * that styles buttons inside forms does not reach them by accident.
 */
.wptm-salma__stepdown,
.wptm-salma__stepup,
.wptm-salma__stepper button {
	border: 0;
	background: color-mix(in srgb, currentColor 4%, transparent);
	color: inherit;
	font: inherit;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.wptm-salma__stepper button:hover,
.wptm-salma__stepper button:focus-visible {
	background: color-mix(in srgb, var(--wptm-accent) 14%, transparent);
	color: var(--wptm-accent);
}

.wptm-salma__stepper button:disabled {
	opacity: .4;
	cursor: not-allowed;
}

@supports not (color: color-mix(in srgb, red 50%, transparent)) {

	.wptm-salma__stepdown,
	.wptm-salma__stepup,
	.wptm-salma__stepper button {
		background: rgba(20, 24, 31, .04);
	}
}

/* --- The panel ------------------------------------------------------------ */

/*
 * The panel is a ticket, drawn to the picture the owner brought.
 *
 * A pale card with a dashed edge; a stub across the top with the price at
 * the start, the ticket id and its bars at the end, a dashed rule between
 * them and a faint postmark behind; a tear with a hole punched at each side;
 * then the two fields, a second tear, a row of the site's own reassurances,
 * the button, and a line of italic under it. The price and the tagline
 * are set in the site's own face: this stylesheet names no font family
 * anywhere, so a site's typography is its own on this page as on the rest.
 */
.wptm-salma-design .wptm-pass {
	--tk-accent: var(--wptm-accent);
	--tk-ink: var(--wptm-text);
	--tk-paper: color-mix(in srgb, var(--wptm-accent) 5%, var(--wptm-page, Canvas));
	--tk-paper-deep: color-mix(in srgb, var(--wptm-accent) 9%, var(--wptm-page, Canvas));
	--tk-dash: color-mix(in srgb, var(--wptm-accent) 45%, transparent);
	--tk-line: color-mix(in srgb, var(--wptm-text) 12%, transparent);
	--tk-pad: clamp(18px, 2.2vw, 24px);
	position: relative;
	padding: 0;
	border: 1.5px dashed var(--tk-dash);
	border-radius: 18px;
	background: var(--tk-paper);
	box-shadow: 0 1px 2px rgba(15, 20, 28, .03), 0 14px 34px -26px rgba(15, 20, 28, .35);
	overflow: hidden;
}

/* --- The stub ------------------------------------------------------------- */

.wptm-salma-design .wptm-pass__stub {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	padding: 22px var(--tk-pad) 20px;
	background: var(--tk-paper-deep);
}

.wptm-salma-design .wptm-pass__price {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 2px;
	min-width: 0;
}

.wptm-salma-design .wptm-pass__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--tk-accent);
}

.wptm-salma-design .wptm-pass__amount {
	margin-block: 2px;
	font-family: inherit;
	font-size: clamp(36px, 3.6vw, 44px);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -.01em;
	color: var(--tk-ink);
	font-variant-numeric: lining-nums;
}

.wptm-salma-design .wptm-pass__amount--quote {
	font-size: 20px;
	line-height: 1.3;
}

.wptm-salma-design .wptm-pass__basis {
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--tk-accent);
}

/* The postmark, behind the price and the id, in the accent at a whisper. */
.wptm-salma-design .wptm-pass__stamp {
	position: absolute;
	inset-block-start: 50%;
	inset-inline-start: 52%;
	z-index: 0;
	width: 84px;
	height: 84px;
	transform: translate(-50%, -50%) rotate(-12deg);
	color: var(--tk-accent);
	opacity: .35;
	line-height: 0;
	pointer-events: none;
}

.wptm-salma-design .wptm-pass__stamp svg {
	width: 100%;
	height: 100%;
}

.wptm-salma-design .wptm-pass__id {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: end;
	gap: 3px;
	padding-inline-start: 16px;
	border-inline-start: 1.5px dashed var(--tk-dash);
	text-align: end;
}

.wptm-salma-design .wptm-pass__code {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--tk-ink);
	font-variant-numeric: tabular-nums;
}

.wptm-salma-design .wptm-pass__bars {
	display: block;
	inline-size: 96px;
	block-size: 30px;
	margin-block-start: 4px;
	line-height: 0;
	color: var(--tk-ink);
}

.wptm-salma-design .wptm-pass__bars svg {
	inline-size: 100%;
	block-size: 100%;
	display: block;
}

/* --- The tear ------------------------------------------------------------- */

/* A dashed line with a hole punched at each end; the holes are pulled half
   out of the card, which clips them to a notch in its edge. */
.wptm-salma-design .wptm-pass__tear,
.wptm-salma-design .wptm-salma__tear {
	position: relative;
	display: block;
	height: 1px;
	border-block-start: 1.5px dashed var(--tk-dash);
}

.wptm-salma-design .wptm-pass__tear::before,
.wptm-salma-design .wptm-pass__tear::after,
.wptm-salma-design .wptm-salma__tear::before,
.wptm-salma-design .wptm-salma__tear::after {
	content: "";
	position: absolute;
	inset-block-start: 50%;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--wptm-page, Canvas);
	box-shadow: inset 0 1px 2px rgba(15, 20, 28, .12);
}

.wptm-salma-design .wptm-pass__tear::before,
.wptm-salma-design .wptm-salma__tear::before {
	inset-inline-start: 0;
	transform: translate(-50%, -50%);
}

.wptm-salma-design .wptm-pass__tear::after,
.wptm-salma-design .wptm-salma__tear::after {
	inset-inline-end: 0;
	transform: translate(50%, -50%);
}

/* The inner tear sits inside the body's padding; its holes reach the edge. */
.wptm-salma-design .wptm-salma__tear {
	margin: 4px calc(var(--tk-pad) * -1) 18px;
}

/* --- The body ------------------------------------------------------------- */

.wptm-salma-design .wptm-pass__body {
	padding: 20px var(--tk-pad) 8px;
}

.wptm-salma-design .wptm-pass .wptm-salma__legend {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.wptm-salma-design .wptm-pass .wptm-salma__field label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--tk-ink);
}

.wptm-salma-design .wptm-pass .wptm-salma__field input,
.wptm-salma-design .wptm-pass .wptm-salma__stepper {
	background: var(--wptm-page, Canvas);
	border-color: var(--tk-line);
}

.wptm-salma-design .wptm-pass .wptm-salma__next {
	margin-block-start: 6px;
}

.wptm-salma-design .wptm-pass__tagline {
	margin: 0;
	padding: 10px var(--tk-pad) 18px;
	font-family: inherit;
	font-style: italic;
	font-size: 15px;
	text-align: center;
	color: var(--tk-accent);
}

@supports not (color: color-mix(in srgb, red 50%, transparent)) {

	.wptm-salma-design .wptm-pass {
		--tk-paper: #fbf8f3;
		--tk-paper-deep: #f7f1e6;
		--tk-dash: rgba(184, 133, 58, .45);
		--tk-line: rgba(31, 36, 48, .12);
	}
}


@media print {

	.wptm-salma-design .wptm-pass__body,
	.wptm-salma-design .wptm-pass__tear,
	.wptm-salma-design .wptm-pass__tagline,
	.wptm-salma-design .wptm-pass__stamp {
		display: none !important;
	}

	.wptm-salma-design .wptm-pass {
		border-style: solid;
		box-shadow: none;
		background: none;
	}

	.wptm-salma-design .wptm-pass__stub {
		background: none;
	}
}

/* --- Facts ---------------------------------------------------------------- */

/* --- The form ------------------------------------------------------------- */

.wptm-salma__step {
	margin: 0;
	padding: 0;
	border: 0;
}

.wptm-salma__legend {
	padding: 0;
	margin-block-end: 12px;
	font-size: 16px;
	font-weight: 700;
}

.wptm-salma__field {
	display: grid;
	gap: 6px;
	margin: 0 0 14px;
}

.wptm-salma__field label {
	font-size: 13px;
	font-weight: 600;
	color: var(--wptm-muted);
}

/*
 * A number field without the tiny spinner arrows.
 *
 * The arrows are about eight pixels tall, they are the reason the guest count
 * was hard to change, and they do not appear on a phone at all. The field
 * still accepts typing and the keyboard arrows still work.
 */
.wptm-salma__field input[type="number"] {
	appearance: textfield;
	-moz-appearance: textfield;
}

.wptm-salma__field input[type="number"]::-webkit-outer-spin-button,
.wptm-salma__field input[type="number"]::-webkit-inner-spin-button {
	appearance: none;
	margin: 0;
}

.wptm-salma__field input {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid var(--wptm-border);
	border-radius: 10px;
	background: var(--wptm-page, Canvas);
	color: inherit;
	font: inherit;
	font-size: 15px;
	box-sizing: border-box;
}

.wptm-salma__field input:focus {
	border-color: var(--wptm-accent);
	outline: none;
	/* A visible ring replaces the outline rather than removing it. */
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--wptm-accent) 18%, transparent);
}

.wptm-salma__field input[aria-invalid="true"] {
	border-color: #b32d2e;
}

/*
 * The help line under a field.
 *
 * One short sentence saying what the number is for. People hand over a
 * telephone number more readily when they know who is going to ring it.
 */
.wptm-salma__help {
	font-size: 13px;
	line-height: 1.45;
	color: var(--wptm-faint);
}

.wptm-salma__error {
	font-size: 13px;
	font-weight: 600;
	color: #b32d2e;
}

.wptm-salma__hint {
	min-height: 1.4em;
	font-size: 13px;
	line-height: 1.4;
	color: var(--wptm-muted);
}

.wptm-salma__hint.is-low {
	color: #a4601a;
	font-weight: 600;
}

.wptm-salma__hint.is-available {
	color: #2f7d4f;
}

.wptm-salma__hint.is-full,
.wptm-salma__hint.is-closed,
.wptm-salma__hint.is-past,
.wptm-salma__hint.is-notice {
	color: #b32d2e;
	font-weight: 600;
}

.wptm-salma__next,
.wptm-salma__submit,
.wptm-salma__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 12px 20px;
	border: 0;
	border-radius: 12px;
	background: var(--wptm-accent);
	color: #fff;
	font: inherit;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.wptm-salma__next:hover,
.wptm-salma__submit:hover,
.wptm-salma__cta:hover {
	filter: brightness(.94);
}

.wptm-salma__submit.is-busy,
.wptm-salma__next.is-busy {
	opacity: .72;
	cursor: progress;
}

.wptm-salma__next:disabled {
	cursor: progress;
}

.wptm-salma__nexticon {
	line-height: 0;
}

.wptm-salma__back {
	display: block;
	width: 100%;
	margin-block-start: 10px;
	padding: 8px;
	border: 0;
	background: none;
	color: var(--wptm-muted);
	font: inherit;
	font-size: 13px;
	cursor: pointer;
}

.wptm-salma__back:hover,
.wptm-salma__back:focus-visible {
	color: var(--wptm-accent);
}

/* --- Summary -------------------------------------------------------------- */

/* --- Consent and the honeypot --------------------------------------------- */

.wptm-salma__consent {
	display: grid;
	gap: 4px;
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--wptm-muted);
}

.wptm-salma__consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

/*
 * A checkbox somebody has to hit.
 *
 * Browsers draw one at about 13px, and a theme that resets form controls can
 * make it smaller still. At that size it is hard to see and harder to tap, and
 * it is the control that decides whether the booking can be sent at all.
 */
.wptm-salma__consent input[type="checkbox"] {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin: 0;
	accent-color: var(--wptm-accent);
	cursor: pointer;
}

.wptm-salma__alert {
	margin: 0 0 14px;
	padding: 10px 12px;
	border-radius: 10px;
	background: color-mix(in srgb, #b32d2e 10%, transparent);
	color: #b32d2e;
	font-size: 13px;
	font-weight: 600;
}

/* Hidden in place, so it cannot widen the document in either direction. */
.wptm-salma__hp {
	position: absolute;
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* --- Fallbacks ------------------------------------------------------------ */

@supports not (color: color-mix(in srgb, red 50%, transparent)) {

	.wptm-salma__alert {
		background: rgba(179, 45, 46, .1);
	}
}

/* --- What the theme actually gives us ------------------------------------- */

/*
 * A media query measures the window; the plugin is laid out in a column.
 *
 * Jannah with its sidebar open hands the plugin about seven hundred pixels
 * inside a fourteen hundred pixel window. Every rule above is written against
 * the window, so at that width the three column top and the sticky panel would
 * both fire inside a column that cannot hold them, and the reading column
 * would be squeezed to nothing.
 *
 * Where container queries exist the layout is decided by the room it was
 * actually given. Where they do not, nothing here applies and the media
 * queries above stand, which is the behaviour this design already had.
 *
 * The containment is declared inside the desktop media query on purpose: an
 * inline-size container becomes the containing block for fixed position
 * children, and the mobile booking bar is fixed. Below this width there is no
 * containment, so the bar still anchors to the window.
 */
@supports (container-type: inline-size) {

	@media (min-width: 1080px) {

		.wptm-salma-design {
			container-type: inline-size;
			container-name: salma;
		}

		/* Not enough room for content and a panel side by side. */
		@container salma (max-width: 900px) {

			.wptm-salma-design .wptm-salma__layout {
				grid-template-columns: minmax(0, 1fr);
			}

			.wptm-salma-design .wptm-salma__main {
				display: contents;
			}

			.wptm-salma-design .wptm-salma__top {
				order: 1;
			}

			.wptm-salma-design .wptm-salma__aside {
				order: 2;
				position: static;
				max-width: 420px;
			}

			.wptm-salma-design .wptm-salma__body {
				order: 3;
			}
		}

		/* Enough for one column but not for the gallery beside the facts. */
		@container salma (max-width: 700px) {

			.wptm-salma-design .wptm-salma__top {
				grid-template-columns: minmax(0, 1fr);
			}
		}
	}
}

/* ==========================================================================
 * The availability confirmation, and the optional email.
 * ======================================================================== */

/*
 * Green is reinforcement, never the message.
 *
 * The bar carries a tick, which is a shape, and a sentence that says the same
 * thing in words. Read in greyscale, or by somebody who does not separate
 * green from grey, it still says the date is available; the colour only makes
 * it findable faster.
 */
.wptm-salma__confirmed {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 18px;
	padding: 11px 14px;
	border: 1px solid rgba(26, 127, 55, 0.28);
	border-radius: 10px;
	background: rgba(26, 127, 55, 0.07);
	font-size: 14px;
	line-height: 1.5;
	color: #14622a;
}

.wptm-salma__confirmed[hidden] {
	display: none;
}

.wptm-salma__confirmed-mark {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(26, 127, 55, 0.14);
	color: #1a7f37;
}

.wptm-salma__confirmed-text {
	min-width: 0;
}

/* The word beside the label, not a placeholder inside the field: a
   placeholder disappears the moment somebody types, which is exactly when
   they are deciding whether they had to fill it in. */
.wptm-salma__optional {
	margin-inline-start: 6px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: lowercase;
	color: var(--wptm-muted, #5b6472);
}

/* ==========================================================================
 * The tour category line, in this layout.
 *
 * It is rendered by the shared header section and was inheriting spacing built
 * for a page where the title has a column to itself. Here the header sits in a
 * narrow intro beside the gallery, where the same line ran into the lead
 * paragraph under it and read as part of the sentence.
 *
 * So it is lifted above the title rather than left under it: the category is
 * what kind of trip this is, which is context for the name and belongs before
 * it, in the position an eyebrow occupies on every other band of this layout.
 * The tag mark stays, because at this size it is what separates the line from
 * a stray phrase.
 * ======================================================================== */

.wptm-salma .wptm-head__cats {
	order: -1;
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .01em;
	line-height: 1.5;
}

.wptm-salma .wptm-head__catlabel {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--wptm-faint, #8b93a6);
}

.wptm-salma .wptm-head__cats a {
	text-decoration-color: color-mix( in srgb, currentColor 35%, transparent );
	text-underline-offset: 3px;
}

/*
 * order works only in a flex or grid parent, so the block holding the title is
 * made one. It is a column of blocks either way; declaring it lets the
 * category move without the shared template being touched, which keeps every
 * other layout exactly as it was.
 */
.wptm-salma .wptm-head__text {
	display: flex;
	flex-direction: column;
}

.wptm-salma .wptm-head__title {
	order: 0;
}

/* ============================================================ ROUTE ==== */

/*
 * The route on SalmaDesign is a journey line, not a sketch.
 *
 * A row of numbered nodes on one rule, the first and the last filled in the
 * accent, the stops between them outlined, the place under each node and its
 * part — starting point, ending point — under that. Read from start to end
 * in the reading direction, so it turns with the language. Where the row
 * would be too tight — many stops, or a narrow screen — it stands up: nodes
 * down the start edge on a vertical rule, places beside them.
 *
 * No script and no picture: the chain the section already prints, with the
 * number each stop now carries, laid out as a line.
 */
.wptm-salma-design .wptm-routemap {
	display: none;
}

.wptm-salma-design .wptm-route__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 14px;
	margin-block-end: clamp(18px, 2.4vw, 28px);
}

.wptm-salma-design .wptm-route__summary {
	margin: 0;
	padding: 4px 12px;
	border: 1px solid color-mix(in srgb, var(--wptm-accent) 40%, transparent);
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--wptm-accent-dark);
}

.wptm-salma-design .wptm-route__chain {
	--node: 34px;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wptm-salma-design .wptm-route__link {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 10px 0;
	margin: 0;
	padding: 0 6px;
	text-align: center;
	list-style: none;
}

.wptm-salma-design .wptm-route__link::marker {
	content: "";
}

/* The rule between nodes: from the centre of this node to the centre of the
   next, so the first begins and the last ends on their own nodes. */
.wptm-salma-design .wptm-route .wptm-route__chain .wptm-route__link::before {
	content: "";
	position: absolute;
	inset-block-start: calc(var(--node) / 2 - 1px);
	inset-inline-start: 50%;
	width: 100%;
	height: 2px;
	background: color-mix(in srgb, var(--wptm-accent) 45%, transparent);
	/* The base chain draws an arrow here; a line needs none of its shape. */
	display: block;
	clip-path: none;
	opacity: 1;
	transform: none;
	margin: 0;
	font-size: 0;
	color: transparent;
}

.wptm-salma-design .wptm-route .wptm-route__chain .wptm-route__link.is-last::before {
	content: none;
}

.wptm-salma-design .wptm-route__num {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: var(--node);
	height: var(--node);
	border: 2px solid var(--wptm-accent);
	border-radius: 50%;
	background: var(--wptm-page, Canvas);
	color: var(--wptm-accent-dark);
	font-size: 13px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.wptm-salma-design .wptm-route__link.is-first .wptm-route__num,
.wptm-salma-design .wptm-route__link.is-last .wptm-route__num {
	background: var(--wptm-accent);
	color: var(--wptm-on-accent);
}

.wptm-salma-design .wptm-route__place {
	display: block;
	max-width: 14ch;
	font-size: 14.5px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--wptm-text);
	text-wrap: balance;
}

.wptm-salma-design .wptm-route__link.is-first .wptm-route__place,
.wptm-salma-design .wptm-route__link.is-last .wptm-route__place {
	color: var(--wptm-accent-dark);
}

/*
 * The label wraps inside its column.
 *
 * The shared chain sets its labels nowrap because there they sit on one
 * line between arrows. Here each stop is a column of equal width, and a
 * label that will not wrap runs across the columns beside it — "explore
 * the site with a local guide" was printed over "explore the medina". So
 * it wraps, at up to two lines, and a word longer than the column breaks
 * rather than escapes. The column itself may shrink below its content,
 * which a grid track does not do unless told.
 */
.wptm-salma-design .wptm-route__link {
	min-width: 0;
}

.wptm-salma-design .wptm-route__label {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	max-width: 100%;
	margin-block-start: -6px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: .05em;
	text-transform: uppercase;
	white-space: normal;
	overflow-wrap: anywhere;
	text-wrap: balance;
	color: var(--wptm-faint);
}

/* Five or more stops on a desktop: a little less padding per column, and
   the place names a touch smaller, so six columns still read as six. */
.wptm-salma-design .wptm-route__chain:has(.wptm-route__link:nth-child(5)) .wptm-route__link {
	padding: 0 3px;
}

.wptm-salma-design .wptm-route__chain:has(.wptm-route__link:nth-child(5)) .wptm-route__place {
	font-size: 13.5px;
}

/*
 * Standing up: on a phone, in a narrow column, or when there are more stops
 * than a row can hold, the nodes go down the start edge and the rule runs
 * through them; each place sits beside its node.
 */
@media (max-width: 640px) {

	.wptm-salma-design .wptm-route__chain {
		grid-auto-flow: row;
		row-gap: 18px;
	}

	.wptm-salma-design .wptm-route__link {
		grid-template-columns: var(--node) minmax(0, 1fr);
		justify-items: start;
		align-items: center;
		column-gap: 14px;
		row-gap: 2px;
		padding: 0;
		text-align: start;
	}

	.wptm-salma-design .wptm-route__num {
		grid-row: 1 / 3;
	}

	.wptm-salma-design .wptm-route .wptm-route__chain .wptm-route__link::before {
		inset-block-start: var(--node);
		inset-inline-start: calc(var(--node) / 2 - 1px);
		width: 2px;
		height: calc(100% - var(--node) + 18px);
	}

	.wptm-salma-design .wptm-route__place {
		max-width: none;
	}

	.wptm-salma-design .wptm-route__label {
		margin: 0;
		-webkit-line-clamp: unset;
		display: block;
	}
}

@supports not (color: color-mix(in srgb, red 50%, transparent)) {

	.wptm-salma-design .wptm-route .wptm-route__chain .wptm-route__link::before {
		background: var(--wptm-border);
	}

	.wptm-salma-design .wptm-route__summary {
		border-color: var(--wptm-accent);
	}
}

/* ========================================================= SECTIONS ==== */

/*
 * No rule between sections on this layout.
 *
 * Each block used to draw a hairline across its top, and with the sticky
 * navigation drawing its own rule beneath itself the page opened on two
 * lines with an empty band between them. The title's accent rule and the
 * room above each section are the separation now; the blocks keep their
 * padding so the rhythm holds.
 */
.wptm-salma-design .wptm-salma__body .wptm-block {
	border-block-start: 0;
	/* Without a rule to sit on, the padding above and below a section is
	   all the separation there is; the shared value made it a hundred and
	   twenty pixels of nothing, and this makes it a breath. */
	padding-block: clamp(26px, 3vw, 36px);
}

.wptm-salma-design .wptm-nav {
	margin-block-end: 18px;
}

.wptm-salma-design .wptm-nav + .wptm-block,
.wptm-salma-design .wptm-salma__body > .wptm-block:first-child {
	padding-block-start: clamp(22px, 2.8vw, 34px);
}


/*
 * The gallery here shares a row with the facts, so it is half the page at
 * most and a square picture is a square, not a tower. Phones keep the
 * phone rule from the tour stylesheet.
 */
@media (min-width: 701px) {
	.wptm-salma-design .wptm-gallery__stage {
		aspect-ratio: var(--wptm-stage-ratio-col, 16 / 10);
	}
}


/*
 * The glance under the facts.
 *
 * Three highlights and, when there is one, the next departure. The label
 * is set like the fact labels so the column reads as one thing; the marks
 * take the accent so the eye can count three without reading. The "all"
 * link is a text link, not a button: the button on this page is the one
 * that books.
 */
.wptm-salma-design .wptm-salma__glance {
	margin-block-start: 18px;
}

.wptm-salma-design .wptm-salma__glancelabel {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--wptm-faint);
}

.wptm-salma-design .wptm-salma__glancelist {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wptm-salma-design .wptm-salma__glancelist li,
.wptm-salma-design .wptm-salma__glancenext {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	margin: 0;
	padding: 7px 0;
	font-size: 14px;
	line-height: 1.5;
}

.wptm-salma-design .wptm-salma__glancemark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin-block-start: 1px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--wptm-accent) 14%, transparent);
	color: var(--wptm-accent);
	line-height: 0;
}

.wptm-salma-design .wptm-salma__glancetext strong {
	font-weight: 600;
}

.wptm-salma-design .wptm-salma__glancetext span {
	display: block;
	color: var(--wptm-muted);
	font-size: 13px;
}

.wptm-salma-design .wptm-salma__glancemore {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-block-start: 6px;
	padding-inline-start: 30px;
	font-size: 13px;
	font-weight: 600;
	color: var(--wptm-accent);
	text-decoration: none;
	transition: gap .2s ease;
}

.wptm-salma-design .wptm-salma__glancemore:hover,
.wptm-salma-design .wptm-salma__glancemore:focus-visible {
	gap: 10px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wptm-salma-design .wptm-salma__glancemore:focus-visible {
	outline: 2px solid var(--wptm-accent);
	outline-offset: 3px;
	border-radius: 2px;
}

.wptm-salma-design .wptm-salma__glancenext {
	margin-block-start: 10px;
	padding-block-start: 12px;
	border-block-start: var(--salma-line);
	color: var(--wptm-muted);
}

.wptm-salma-design .wptm-salma__glancenext strong {
	color: inherit;
	font-weight: 600;
}


/*
 * Air under the header.
 *
 * The header has no bottom padding of its own, and here the picture and
 * the booking card start the moment it ends: the place line was sitting
 * on the top edge of the photograph, closer to it than to the title it
 * belongs to. The same room as the row gap keeps the rhythm of the page
 * even, and both columns start after it, so the picture and the card stay
 * level with each other.
 */
.wptm-salma-design .wptm-head {
	padding-block-end: clamp(18px, 2.4vw, 28px);
}


/* ==========================================================================
 * The rate card.
 *
 * A deep header band, rows that alternate white and cream, a round mark
 * in front of each group size, the price in the heaviest type on the row
 * with the basis quiet beside it, and the note in a cream foot with a
 * faint line drawing of a range of hills. The deep colour is taken from
 * the site's accent, so a site that changed the gold keeps one palette.
 * ========================================================================== */
.wptm-salma-design {
	--salma-deep: color-mix(in srgb, var(--wptm-accent) 32%, #23211c);
	--salma-cream: color-mix(in srgb, var(--wptm-accent) 7%, #fff);
	--salma-cream-2: color-mix(in srgb, var(--wptm-accent) 12%, #fff);
}

.wptm-salma-design .wptm-ratecard {
	overflow: hidden;
	border: 1px solid var(--wptm-hairline);
	border-radius: var(--salma-radius);
	background: #fff;
	box-shadow: 0 10px 30px rgba(20, 24, 31, .06);
}

.wptm-salma-design .wptm-rates {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0;
	border: 0;
}

.wptm-salma-design .wptm-rates thead th {
	padding: 13px 20px;
	border: 0;
	background: var(--salma-deep);
	color: #fff;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-align: start;
}

.wptm-salma-design .wptm-rates thead th:last-child {
	text-align: end;
}

.wptm-salma-design .wptm-rates tbody th,
.wptm-salma-design .wptm-rates tbody td {
	padding: 10px 20px;
	border: 0;
	border-block-end: 1px solid var(--wptm-hairline);
	background: #fff;
	vertical-align: middle;
}

.wptm-salma-design .wptm-rates tbody tr:nth-child(even) th,
.wptm-salma-design .wptm-rates tbody tr:nth-child(even) td {
	background: var(--salma-cream);
}

.wptm-salma-design .wptm-rates tbody tr:last-child th,
.wptm-salma-design .wptm-rates tbody tr:last-child td {
	border-block-end: 0;
}

/* The cell stays a cell — no flex on a table cell — and the mark and the
   label line up on the middle as two inline blocks. */
.wptm-salma-design .wptm-rates tbody th {
	font-weight: 500;
	font-size: 15px;
	text-align: start;
	white-space: nowrap;
}

.wptm-salma-design .wptm-rates__label {
	display: inline-block;
	vertical-align: middle;
	white-space: normal;
}

.wptm-salma-design .wptm-rates__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	margin-inline-end: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--salma-cream-2);
	color: var(--wptm-accent);
	line-height: 0;
}

.wptm-salma-design .wptm-rates__badge {
	margin-inline-start: 8px;
	padding: 2px 8px;
	border-radius: 999px;
	background: var(--wptm-accent);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	vertical-align: middle;
}

.wptm-salma-design .wptm-rates tbody td {
	text-align: end;
}

/* A small pointer before the amount, drawn in the accent, saying "this
   many people pays this". It is decoration, and it says so. */
.wptm-salma-design .wptm-rates__amount {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
}

.wptm-salma-design .wptm-rates__amount::before {
	content: "\203A" / "";
	align-self: center;
	margin-inline-end: 14px;
	color: var(--wptm-accent);
	font-size: 18px;
	line-height: 1;
	opacity: .8;
}

[dir="rtl"] .wptm-salma-design .wptm-rates__amount::before {
	content: "\2039" / "";
}

.wptm-salma-design .wptm-rates__price {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.01em;
	font-variant-numeric: tabular-nums;
	color: var(--salma-deep);
}

.wptm-salma-design .wptm-rates__basis {
	font-size: 12px;
	color: var(--wptm-faint);
}

.wptm-salma-design .wptm-rates .is-featured th,
.wptm-salma-design .wptm-rates .is-featured td {
	background: var(--salma-cream-2);
}

.wptm-salma-design .wptm-rates .is-featured .wptm-rates__price {
	color: var(--wptm-accent);
}

/* The note is the card's foot: cream, a mark, and a range of hills drawn
   in one faint line at the end. The drawing is inline so nothing is
   fetched; it is decoration and the paragraph is what is read. */
.wptm-salma-design .wptm-ratecard + .wptm-note--rates {
	margin: -1px 0 0;
	padding: 16px 20px 18px;
	border: 1px solid var(--wptm-hairline);
	border-block-start: 0;
	border-radius: 0 0 var(--salma-radius) var(--salma-radius);
	background:
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 60' fill='none' stroke='%238a7a5a' stroke-width='1.1' stroke-linejoin='round' stroke-linecap='round' opacity='.45'><path d='M2 54 L38 22 L56 38 L80 12 L112 44 L134 26 L160 50 L182 34 L206 52 L228 40 L258 56'/><path d='M80 12 L86 20 M38 22 L44 30 M134 26 L140 32'/><path d='M232 56 c0-10 2-18 6-24 m0 24 c-4-6-8-9-14-10 m14 10 c4-6 9-9 15-10 m-15 10 c-1-8 1-15 5-20 m-5 20 c-5-4-11-6-16-4 m16 4 c5-4 11-6 16-4'/><path d='M0 58 H260'/></svg>") no-repeat right bottom / 200px auto,
		var(--salma-cream);
	color: var(--wptm-muted);
}

[dir="rtl"] .wptm-salma-design .wptm-ratecard + .wptm-note--rates {
	background-position: left bottom;
}

.wptm-salma-design .wptm-ratecard:has(+ .wptm-note--rates) {
	border-end-start-radius: 0;
	border-end-end-radius: 0;
	box-shadow: none;
}

@media (max-width: 600px) {
	.wptm-salma-design .wptm-rates thead th,
	.wptm-salma-design .wptm-rates tbody th,
	.wptm-salma-design .wptm-rates tbody td {
		padding-inline: 14px;
	}

	.wptm-salma-design .wptm-rates__mark {
		width: 30px;
		height: 30px;
	}

	.wptm-salma-design .wptm-rates__amount::before {
		display: none;
	}

	.wptm-salma-design .wptm-rates__amount {
		flex-direction: column;
		align-items: flex-end;
		gap: 0;
	}

	.wptm-salma-design .wptm-ratecard + .wptm-note--rates {
		background-size: 140px auto;
		padding-inline-end: 120px;
	}
}


/*
 * The lead under the facts. Body type, a little larger and a little
 * looser than the fact rows, in the muted ink: it is read, not scanned.
 * The face is the site's own — this stylesheet sets no font family.
 */
.wptm-salma-design .wptm-salma__lead {
	margin: 0;
	max-width: 58ch;
	font-size: 15.5px;
	line-height: 1.7;
	color: var(--wptm-muted);
}

.wptm-salma-design .wptm-salma__lead + .wptm-salma__glancenext {
	margin-block-start: 14px;
}
