/* luggagesorted-affiliate.css
   /affiliate-registration page — brand: navy #02163b, cream #f6f3f1, yellow #ffc107 / #e0a800
   Loaded only on the affiliate registration page. Isolated from booking CSS / style.css.
*/

.lsa-main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 28px 24px 80px;
}

/* ── Header strip ─────────────────────────────── */
.lsa-header img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

/* ── Page = comic (left) + form (right) ───────── */
/* align-items:stretch makes the yellow form panel match the comic's height
   (the comic's own height is set by its image aspect ratios, which vary with
   viewport width) — same pattern as the homepage's 3-column grid. */
.lsa-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 24px;
	align-items: stretch;
}

/* ── Comic pinwheel ────────────────────────────── */
.ls-aff__comic { display: grid; gap: 16px; }
.ls-aff__row   { display: grid; gap: 16px; }
.ls-aff__row-1 { grid-template-columns: 1100fr 512fr; }
.ls-aff__row-2 { grid-template-columns: 512fr 1100fr; }
.ls-aff__comic img { width: 100%; height: auto; display: block; border-radius: 12px; }

/* ── Enquiry form panel ───────────────────────── */
.lsa-form {
	height: 100%;
	box-sizing: border-box;
	background: #ffc107;
	border-radius: 12px;
	padding: 24px;
}
.lsa-form__heading {
	font-family: 'Oswald', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #02163b;
	margin: 0 0 6px;
}
.lsa-form__intro {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #3a3a3a;
	margin: 0 0 20px;
}
.lsa-field { margin-bottom: 14px; }
.lsa-field label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #02163b;
	margin-bottom: 6px;
}
.lsa-field input {
	width: 100%;
	height: 44px;
	padding: 0 14px;
	border: none;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #1d2327;
	background: #fff;
	box-sizing: border-box;
	outline: none;
}
.lsa-field input:focus {
	box-shadow: 0 0 0 3px rgba(2,22,59,.25);
}

/* Honeypot — visually hidden, still reachable/fillable by bots */
.lsa-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.ls-aff__callus {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: #02163b;
	margin: 4px 0 16px;
}
.ls-aff__callus a { color: #02163b; text-decoration: underline; }

.ls-aff__consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: #02163b;
	margin-bottom: 16px;
	cursor: pointer;
}
.ls-aff__consent input[type="checkbox"] {
	margin-top: 3px;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	cursor: pointer;
	accent-color: #02163b;
}
.ls-aff__consent a { color: #02163b; text-decoration: underline; }

.lsa-submit {
	width: 100%;
	height: 48px;
	margin-top: 6px;
	background: #02163b;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-family: 'Oswald', sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .15s;
}
.lsa-submit:hover { background: #041f54; }

/* ── Thank-you page (/affiliate-thank-you) ─────── */
/* Text first in the DOM so mobile stacks text-over-image; desktop grid puts
   the image in the second column (right) automatically. */
.lsa-thanks-page {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start; /* note sits first in the text column — top-align both columns so it lines up with the image top */
	background: #ffc107;
	border-radius: 12px;
	padding: 48px;
	box-sizing: border-box;
}
.lsa-thanks-page img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}
.lsa-thanks-text h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: #02163b;
	margin: 0 0 16px;
}
.lsa-thanks-text p {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	line-height: 1.6;
	color: #1d2327;
	margin: 0 0 30px 0;
}
@media (max-width: 768px) {
	.lsa-thanks-page { grid-template-columns: 1fr; padding: 28px; }
	.lsa-thanks-text h1 { font-size: 36px; }
}

/* ── Mobile: stack header, then panels 1→2→3→4, then form ── */
@media (max-width: 900px) {
	.lsa-layout { grid-template-columns: 1fr; }
	.ls-aff__row { grid-template-columns: 1fr; }
}
