.nausys-booking-wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 1.5rem 1rem;
}

.nausys-booking-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: flex-end;
	margin-bottom: 0.75rem;
}

.nausys-booking-fields label {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-size: 0.9rem;
	color: #0a1628;
}

.nausys-booking-fields input[type="date"] {
	padding: 0.5rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	min-width: 160px;
}

.nausys-booking-hint,
.nausys-booking-notice,
.nausys-booking-empty {
	color: #555;
	font-size: 0.95rem;
}

.nausys-booking-notice {
	margin: 1rem 0;
	padding: 0.75rem 1rem;
	background: #f0f4f8;
	border-left: 4px solid #b8956a;
}

.nausys-btn {
	display: inline-block;
	padding: 0.65rem 1.25rem;
	border: none;
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.2s;
}

.nausys-btn:hover {
	opacity: 0.9;
}

.nausys-btn-primary {
	background: #0a1628;
	color: #fff;
}

.nausys-btn-secondary {
	background: #b8956a;
	color: #fff;
}

.nausys-boat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.nausys-boat-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(10, 22, 40, 0.06);
}

.nausys-boat-image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f5f5f5;
}

.nausys-boat-image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0a1628 0%, #1a3050 55%, #3d4f6a 100%);
	text-decoration: none;
}

.nausys-boat-placeholder-label {
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	opacity: 0.85;
	padding: 0.5rem 1rem;
	text-align: center;
}

.nausys-boat-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nausys-boat-body {
	padding: 1rem;
}

.nausys-boat-name {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
}

.nausys-boat-name a {
	color: #0a1628;
	text-decoration: none;
}

.nausys-boat-meta {
	list-style: none;
	margin: 0 0 0.75rem;
	padding: 0;
	display: flex;
	gap: 0.75rem;
	font-size: 0.85rem;
	color: #666;
}

.nausys-boat-price {
	margin: 0 0 1rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: #0a1628;
}

.nausys-banner-title {
	color: #0a1628;
	margin-bottom: 1rem;
}

@media (max-width: 600px) {
	.nausys-booking-fields {
		flex-direction: column;
		align-items: stretch;
	}

	.nausys-booking-fields input[type="date"] {
		width: 100%;
	}
}
