.crew-widget {
	max-width: 360px;
	margin: 0 auto;
	padding: 24px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(16, 24, 40, 0.06);
	box-sizing: border-box;
}
.crew-widget * { box-sizing: border-box; }

.crew-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8A8F98;
	margin-bottom: 6px;
}

.crew-price {
	font-size: 30px;
	font-weight: 800;
	color: #101828;
	margin-bottom: 20px;
}

.crew-plans {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.crew-plan {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #F3F6FB;
	border: 2px solid transparent;
	border-radius: 14px;
	padding: 14px 16px;
	cursor: pointer;
	transition: background-color .15s ease, border-color .15s ease;
}
.crew-plan.is-selected {
	background: #E7EEFB;
	border-color: #0B3FA0;
}

.crew-plan-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.crew-plan-name {
	font-weight: 700;
	font-size: 15px;
	color: #101828;
}

.crew-plan-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: #E0193E;
	padding: 3px 8px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.crew-plan-right { text-align: right; }

.crew-plan-price {
	font-weight: 700;
	font-size: 15px;
	color: #101828;
}

.crew-plan-days {
	font-size: 12px;
	font-weight: 600;
	color: #0B3FA0;
	margin-top: 2px;
}

.crew-plan-km {
	font-size: 12px;
	color: #8A8F98;
	margin-top: 2px;
}

.crew-divider {
	border: none;
	border-top: 1px solid #EAECF0;
	margin: 20px 0;
}

.crew-form { display: flex; flex-direction: column; gap: 16px; }

.crew-field-row {
	display: flex;
	gap: 12px;
}
.crew-field-row .crew-field { flex: 1; min-width: 0; }

.crew-field { display: flex; flex-direction: column; gap: 6px; }

.crew-label {
	font-size: 13px;
	font-weight: 600;
	color: #344054;
}

.crew-input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #D0D5DD;
	border-radius: 30px;
	font-size: 14px;
	color: #101828;
	background: #fff;
	outline: none;
}
.crew-input:focus { border-color: #0B3FA0; }

.crew-form-error {
	color: #D92D20;
	font-size: 13px;
	background: #FEF3F2;
	border: 1px solid #FDA29B;
	border-radius: 10px;
	padding: 10px 14px;
}

.crew-checkout-btn {
	width: 100%;
	border: none;
	background: #0B3FA0;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding: 16px 24px;
	border-radius: 30px;
	cursor: pointer;
	transition: background-color .15s ease, opacity .15s ease;
}
.crew-checkout-btn:hover { background: #082C73; }
.crew-checkout-btn[disabled] { opacity: 0.7; cursor: progress; }

.crew-secondary-buttons {
	display: flex;
	gap: 12px;
	margin-top: 14px;
	justify-content: center;
}

.crew-secondary-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1px solid #D0D5DD;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	color: #101828;
	text-decoration: none;
	background: #fff;
}
.crew-secondary-btn svg { fill: currentColor; flex-shrink: 0; }

.crew-trust-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.crew-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
}
.crew-trust-item svg { fill: #0B3FA0; flex-shrink: 0; }
.crew-trust-item span { font-size: 13px; color: #344054; }

@media (max-width: 380px) {
	.crew-field-row { flex-direction: column; }
}
