.filter-bar-modern {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 6px 16px rgba(0,0,0,.05);
}

.filter-bar-modern .form-control,
.filter-bar-modern .form-select {
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.filter-bar-modern .btn-primary {
    border-radius: 10px;
    font-weight: 600;
}

/* --- SAYFA GENEL --- */
.list-shell {
    max-width: 1280px;
    margin: auto
}

.section-top {
    margin-top: 18px
}
.product-grid .xb-yacht-item {
	height: 100%;
}

	.product-grid .xb-yacht-item .xb-item--img {
		height: 220px;
	}

		.product-grid .xb-yacht-item .xb-item--img .img,
		.product-grid .xb-yacht-item .xb-item--img img {
			height: 100%;
			width: 100%;
		}

		.product-grid .xb-yacht-item .xb-item--img img {
			object-fit: cover;
		}

	.product-grid .xb-yacht-item .xb-item--holder {
		padding: 22px 14px 14px;
	}

/* --- KART GRID --- */
.product-grid {
    row-gap: 22px
}

.product-grid .xb-yacht-item {
	height: 100%;
}

.product-grid .xb-yacht-item .xb-item--img {
	height: 220px;
}

.product-grid .xb-yacht-item .xb-item--img .img,
.product-grid .xb-yacht-item .xb-item--img img {
	height: 100%;
	width: 100%;
}

.product-grid .xb-yacht-item .xb-item--img img {
	object-fit: cover;
}

.product-grid .xb-yacht-item .xb-item--holder {
	padding: 22px 14px 14px;
}

.product-list-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	height: 100%;
	transition: transform 0.3s ease;
}

.product-list-card:hover {
	transform: translateY(-5px);
}

.product-list-thumb {
	position: relative;
	width: 100%;
	height: 200px;
	flex-shrink: 0;
	background: #f3f4f6;
}

.product-list-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-list-tag {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: #f59e0b;
	color: #fff;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.85rem;
	box-shadow: 0 8px 18px rgba(245, 158, 11, 0.35);
}

.product-list-status {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #0f172a;
	background: #e2e8f0;
	text-transform: uppercase;
}

.product-list-status.status-magnificent {
	background: linear-gradient(135deg, #f8d66d, #d4af37);
	box-shadow: 0 8px 18px rgba(212, 175, 55, 0.35);
}

.product-list-status.status-very-good {
	background: #c7d2fe;
	color: #1e1b4b;
}

.product-list-status.status-good {
	background: #bbf7d0;
	color: #14532d;
}

.product-list-status.status-new {
	background: #e2e8f0;
	color: #1f2937;
}

.product-list-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 15px;
}

.product-list-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.product-list-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #111827;
	text-decoration: none;
}

.product-list-title:hover {
	color: #4f46e5;
}

.product-list-subtitle {
	font-size: 0.9rem;
	color: #6b7280;
}

.product-list-price {
	font-weight: 700;
	color: #1e293b;
	font-size: 1.1rem;
	margin-top: 5px;
}

.product-list-price .price-amount {
	color: #f59e0b;
	font-size: 1.25rem;
}

.product-list-price small {
	font-size: 0.8rem;
	color: #6b7280;
}

.product-list-meta {
	margin-top: auto;
}

.product-list-specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	font-size: 0.85rem;
	color: #374151;
}

.product-list-specs span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.product-list-rating {
	padding: 12px 20px;
	border-top: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f8fafc;
}

.product-list-rating .rating-score {
	background: #f59e0b;
	color: #fff;
	font-weight: 800;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
}

.product-list-rating .rating-label {
	font-weight: 700;
	color: #111827;
	font-size: 0.85rem;
}

.product-list-rating .rating-count {
	font-size: 0.75rem;
	color: #6b7280;
}

/* --- PRODUCT CARD V2 --- */
.product-card-v2 {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card-v2:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-v2:hover .card-img {
    transform: scale(1.05);
}

.card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge-instant {
    background: #fff;
    color: #1a1a1a;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-wishlist:hover {
    background: #fff;
    color: #ef4444;
}

.card-content {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-location {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 6px;
    display: block;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}

.card-title a:hover {
    color: #2563eb;
}

.card-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 12px;
}

.card-dot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
}

.rating-score {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.75rem;
    color: #999;
}

.card-footer-price {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f5f5f5;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-currency {
    font-size: 0.9rem;
    font-weight: 700;
}

.price-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
}

.price-unit {
    font-size: 0.8rem;
    color: #666;
    margin-left: 4px;
}

@media (max-width: 576px) {
	.product-list-specs {
		grid-template-columns: 1fr;
	}
}

/* Filter Sidebar Styles */
.widget.filter-panel {
	background: #fff;
	border-radius: 10px;
	padding: 16px;
	border: 1px solid #e5e7eb;
}

.filter-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: #111827;
	display: flex;
	align-items: center;
	margin-bottom: 0.4rem;
}

.boat-type-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.boat-type-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: #f9fafb;
	font-size: 0.8rem;
	font-weight: 500;
	color: #374151;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: center;
	min-height: 80px;
	padding: 8px 4px;
}

.boat-type-card img.icon-img {
	width: 36px;
	height: 36px;
	margin-bottom: 4px;
	object-fit: contain;
}

.btn-check:checked + .boat-type-card {
	background: #2563eb;
	color: #fff;
	border-color: #2563eb;
	font-weight: 600;
	box-shadow: 0 0 6px rgba(37, 99, 235, 0.3);
}

.btn-check:checked + .boat-type-card img.icon-img {
	filter: brightness(0) invert(1);
}

.price-box {
	width: 48%;
	font-size: 0.8rem;
	color: #2563eb !important;
	font-weight: 600;
}

.reservation-box .row {
	display: flex;
	border-bottom: 1px solid #d1d5db;
}

.reservation-box .row:last-child {
	border-bottom: none;
}

.reservation-box .col {
	flex: 1;
	padding: 10px;
	border-right: 1px solid #d1d5db;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.reservation-box .col:last-child {
	border-right: none;
}

.reservation-box .col-full {
	flex: 1;
	padding: 10px;
}

.reservation-box label {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 5px;
}

.reservation-box .form-control {
	width: 100%;
	height: 38px;
	padding: 6px 8px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 13px;
	box-sizing: border-box;
}

.input-step {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.input-step .btn-step {
	width: 28px;
	height: 28px;
	border: 1px solid #2563eb;
	border-radius: 50%;
	background: #fff;
	color: #2563eb;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.input-step .person-input {
		width: 56px;
		height: 28px;
		text-align: center;
		border: 1px solid #ccc;
		border-radius: 6px;
		font-size: 13px;
	}

.facility-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.switch-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	color: #111827;
	cursor: pointer;
	position: relative;
}

.switch-label input {
	display: none;
}

.switch-label .slider {
	position: relative;
	width: 42px;
	height: 22px;
	background: #ccc;
	border-radius: 22px;
	transition: 0.3s;
}

.switch-label .slider::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 18px;
	height: 18px;
	background: white;
	border-radius: 50%;
	transition: 0.3s;
}

.switch-label input:checked + .slider {
	background: #2563eb;
}

.switch-label input:checked + .slider::before {
	transform: translateX(20px);
}

.boat-type-card.is-disabled {
	opacity: .5;
	pointer-events: none;
}

/* Payment Page trust badges */
.payment-trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.payment-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0f172a;
}
