/* Eiman Price Tables — premium tier cards (brand gold/ink) */

.eiman-pt {
	--gold: #c9a45c;
	--gold-deep: #a3671f;
	--ink: #1b1815;
	--body: #4a443c;
	margin: 36px 0;
}

.eiman-pt--pending {
	position: absolute;
	left: -9999px;
	top: 0;
	visibility: hidden;
}

.eiman-pt *,
.eiman-pt *::before,
.eiman-pt *::after {
	box-sizing: border-box;
}

.eiman-pt__inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 28px 22px 26px;
	background: linear-gradient(180deg, #fffdf8, #f8f2e4);
	border: 1px solid rgba(201, 164, 92, 0.35);
	border-radius: 18px;
	box-shadow: 0 14px 34px rgba(27, 24, 21, 0.1);
}

.eiman-pt__title {
	margin: 0 0 22px;
	font-size: clamp(20px, 3.8vw, 27px);
	font-weight: 800;
	line-height: 1.32;
	text-align: center;
	color: var(--ink);
}

.eiman-pt__title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin: 14px auto 0;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}

.eiman-pt__tiers {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.eiman-pt__tier {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid rgba(201, 164, 92, 0.3);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(27, 24, 21, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.eiman-pt__tier:hover {
	transform: translateY(-2px);
	border-color: var(--gold);
	box-shadow: 0 10px 22px rgba(27, 24, 21, 0.12);
}

.eiman-pt__tier-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(201, 164, 92, 0.18), rgba(163, 103, 31, 0.14));
	color: var(--gold-deep);
}

.eiman-pt__tier-main {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.eiman-pt__tier-participants {
	font-size: 16px;
	font-weight: 800;
	color: var(--ink);
	line-height: 1.3;
}

.eiman-pt__tier-vehicle {
	font-size: 13.5px;
	font-weight: 500;
	color: var(--body);
}

.eiman-pt__tier-price {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1.15;
	text-align: right;
}

.eiman-pt__tier-price-value {
	font-size: 21px;
	font-weight: 800;
	color: var(--gold-deep);
	white-space: nowrap;
}

.eiman-pt__tier-price-unit {
	font-size: 11px;
	font-weight: 600;
	color: var(--body);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.eiman-pt__child-title {
	margin: 26px 0 10px;
	font-size: 16px;
	font-weight: 800;
	color: var(--ink);
}

.eiman-pt__child-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.eiman-pt__child-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 11px 14px;
	background: #fff;
	border: 1px solid rgba(201, 164, 92, 0.28);
	border-radius: 10px;
}

.eiman-pt__child-label {
	font-weight: 700;
	color: var(--ink);
	font-size: 14px;
}

.eiman-pt__child-note {
	font-weight: 700;
	color: var(--gold-deep);
	font-size: 14px;
	white-space: nowrap;
}

.eiman-pt__note {
	margin: 18px 0 0;
	font-size: 12.5px;
	color: #8b8177;
	text-align: center;
}

@media (max-width: 420px) {
	.eiman-pt__inner {
		padding: 22px 16px 20px;
	}

	.eiman-pt__tier {
		padding: 12px;
		gap: 10px;
	}

	.eiman-pt__tier-icon {
		width: 40px;
		height: 40px;
	}

	.eiman-pt__tier-participants {
		font-size: 14.5px;
	}

	.eiman-pt__tier-price-value {
		font-size: 18px;
	}
}

/* Contact-CTA row for groups larger than the displayed cap */
.eiman-pt__tier--contact {
	background: linear-gradient(135deg, rgba(201, 164, 92, 0.1), rgba(163, 103, 31, 0.06));
	border-style: dashed;
	flex-wrap: wrap;
	row-gap: 12px;
}

.eiman-pt__tier--contact .eiman-pt__tier-main {
	flex: 1 1 160px;
}

.eiman-pt__tier--contact .eiman-pt__tier-participants,
.eiman-pt__tier--contact .eiman-pt__tier-vehicle {
	white-space: normal;
	overflow-wrap: normal;
	word-break: keep-all;
}

.eiman-pt__contact-btn {
	flex: 1 1 100%;
	padding: 12px 18px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--gold), var(--gold-deep));
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	white-space: nowrap;
	text-align: center;
}

.eiman-pt__contact-btn:hover {
	filter: brightness(1.05);
}

@media (min-width: 420px) {
	.eiman-pt__tier--contact .eiman-pt__tier-icon {
		order: 1;
	}
	.eiman-pt__tier--contact .eiman-pt__tier-main {
		order: 2;
		flex: 1 1 auto;
	}
	.eiman-pt__contact-btn {
		order: 3;
		flex: 0 0 auto;
	}
}
