/* ===== ENI TRAVELS BOOKING FORM ===== */
.enit-booking {
	--enit-bg: #f1f3f5;
	--enit-border: #e2e6ea;
	--enit-text: #1f2933;
	--enit-label: #5a6672;
	--enit-muted: #9aa4b0;
	--enit-blue: #1a73e8;
	--enit-blue-hover: #1557b0;
	--enit-error: #d93025;
	--enit-radius: 12px;
	box-sizing: border-box;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.enit-booking *,
.enit-booking *::before,
.enit-booking *::after { box-sizing: border-box; }

.enit-form {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 14px;
	margin: 0;
}

.enit-field {
	display: flex;
	flex-direction: column;
	flex: 1 1 180px;
	min-width: 0;
}
.enit-field--service { flex: 1.6 1 220px; }
.enit-field--action { flex: 0 0 auto; }

.enit-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--enit-label);
	margin: 0 0 6px 2px;
}
.enit-sublabel {
	font-weight: 500;
	color: var(--enit-muted);
	text-transform: none;
	letter-spacing: 0;
}

.enit-input {
	width: 100%;
	height: 50px;
	padding: 0 16px;
	font-size: 15px;
	line-height: normal;
	color: var(--enit-text);
	background-color: var(--enit-bg);
	border: 1px solid var(--enit-border);
	border-radius: var(--enit-radius);
	outline: none;
	transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
	-webkit-appearance: none;
	appearance: none;
}
.enit-input:hover { background-color: #eceff1; }
.enit-input:focus,
.enit-trigger.enit-open {
	border-color: var(--enit-blue);
	background-color: #fff;
	box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.enit-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235a6672' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 42px;
	cursor: pointer;
}
.enit-select:required:invalid { color: var(--enit-label); }

.enit-picker { position: relative; }
.enit-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	text-align: left;
	cursor: pointer;
	font-family: inherit;
}
.enit-trigger-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.enit-placeholder { color: var(--enit-muted); }
.enit-trigger-icon { color: var(--enit-muted); flex: 0 0 auto; }

.enit-input.enit-input--error {
	border-color: var(--enit-error);
	box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.12);
}

.enit-btn {
	height: 50px;
	padding: 0 34px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background-color: var(--enit-blue);
	border: none;
	border-radius: var(--enit-radius);
	cursor: pointer;
	transition: background-color .18s ease, transform .06s ease, box-shadow .18s ease;
	white-space: nowrap;
	font-family: inherit;
}
.enit-btn:hover { background-color: var(--enit-blue-hover); box-shadow: 0 6px 16px rgba(26, 115, 232, 0.28); }
.enit-btn:active { transform: translateY(1px); }
.enit-btn:focus-visible { outline: 3px solid rgba(26, 115, 232, 0.4); outline-offset: 2px; }

.enit-error { margin: 12px 2px 0; font-size: 13px; font-weight: 500; color: var(--enit-error); }

/* ===== KALENDARI (ngjitet ne <body>, position: fixed, s'e pret asnje overflow) ===== */
.enit-cal {
	position: fixed;
	z-index: 2147483000;
	width: 290px;
	max-width: calc(100vw - 16px);
	padding: 14px;
	background: #ffffff;
	border: 1px solid #e2e6ea;
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(20, 30, 45, 0.18);
	user-select: none;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #1f2933;
}
.enit-cal *,
.enit-cal *::before,
.enit-cal *::after { box-sizing: border-box; }
.enit-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.enit-cal-title { font-size: 14px; font-weight: 700; color: #1f2933; }
.enit-cal-nav {
	width: 32px; height: 32px;
	display: flex; align-items: center; justify-content: center;
	border: 1px solid #e2e6ea;
	background: #f1f3f5;
	border-radius: 9px;
	cursor: pointer;
	font-size: 18px; line-height: 1; color: #5a6672;
	transition: background-color .15s ease;
	padding: 0;
}
.enit-cal-nav:hover { background: #e6eaee; }
.enit-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.enit-cal-dow span {
	text-align: center; font-size: 11px; font-weight: 700;
	color: #9aa4b0; padding: 4px 0;
}
.enit-cal-day {
	aspect-ratio: 1 / 1;
	display: flex; align-items: center; justify-content: center;
	border: none; background: transparent;
	border-radius: 9px;
	font-size: 13px; color: #1f2933;
	cursor: pointer;
	font-family: inherit;
	padding: 0;
	transition: background-color .12s ease, color .12s ease;
}
.enit-cal-day:hover:not(:disabled) { background: #eaf1fd; }
.enit-cal-day.enit-today { font-weight: 700; color: #1a73e8; }
.enit-cal-day.enit-selected { background: #1a73e8; color: #fff; font-weight: 700; }
.enit-cal-day.enit-empty { visibility: hidden; cursor: default; }
.enit-cal-day:disabled { color: #c7ced6; cursor: not-allowed; }
.enit-cal-foot { margin-top: 10px; display: flex; justify-content: flex-end; }
.enit-cal-clear {
	border: none; background: transparent;
	color: #5a6672; font-size: 13px; font-weight: 600;
	cursor: pointer; padding: 6px 8px; border-radius: 8px; font-family: inherit;
}
.enit-cal-clear:hover { background: #f1f3f5; color: #d93025; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
	.enit-form { flex-direction: column; align-items: stretch; gap: 12px; }
	.enit-field,
	.enit-field--service,
	.enit-field--action { flex: 1 1 100%; width: 100%; }
	.enit-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.enit-input, .enit-btn, .enit-cal-day, .enit-cal-nav { transition: none; }
}
