/* ============================================================
   Widgety Cruise Search — Public Stylesheet
   ============================================================ */

/* --- Layout ------------------------------------------------ */

.page-header{
	display: none;
}

/* --- Search results header & intro ----------------------- */
.wcs-search-header {
	margin-bottom: 8px;
	margin-top: 50px;
}

.wcs-search-header__title {
	font-size: 32px;
	font-weight: 800;
	color: #0d1b2a;
	margin: 0;
	line-height: 1.2;
}

.wcs-search-header__intro {
	margin-bottom: 24px;
}

.wcs-search-header__intro p {
	font-size: 15px;
	color: #475569;
	line-height: 1.7;
	margin: 0;
}

.wcs-wrap {
	display: flex;
	flex-direction: column;
	gap: 0;
	font-family: "Figtree", Open Sans, Helvetica, Arial, Sans-Serif;	
	font-size: 15px;
	color: #1a2332;
	line-height: 1.6;
}

/* --- Chip-bar wrap ----------------------------------------- */
.wcs-chipbar-wrap {
    padding: 0;
    border-bottom: none;
    margin: 24px 0;
}

.wcs-chipbar-wrap .wcs-search-form {
	margin: 0;
	padding: 0;
}

/* ── Filter Widget (standalone [widgety_cruise_filter]) ───── */
.wcs-filter-widget {
	width: 100%;
}

.wcs-chipbar--widget {
	flex-wrap: wrap;
}

.wcs-filter-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	justify-content: flex-end;
}

.wcs-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 12px 24px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	border: none;
	transition: background 0.15s, box-shadow 0.15s;
	white-space: nowrap;
	line-height: 1;
}

.wcs-filter-btn--apply {
	background-color: #131042 !important;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    fill: #ffffff;
    color: #ffffff;
    border-style: none;
}

.wcs-filter-btn--apply:hover {
	background: #1e1966;
	box-shadow: 0 3px 10px rgba(19,16,66,0.22);
}

.wcs-filter-btn--clear {
	background: transparent !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    color: #0c0a29 !important;
    padding: 0 10px !important;
}

.wcs-filter-btn--clear:hover {
	background: #f3f4f6;
	color: #1a2332;
}
/* ── End Filter Widget ───────────────────────────────────── */

.wcs-chipbar {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	align-items: stretch;
}

/* --- Single chip ------------------------------------------- */
.wcs-chip {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 15px 20px;
	background: #f3f4f6;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s;
	user-select: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #1a2332;
	white-space: nowrap;
	overflow: visible;
	box-sizing: border-box;
	flex: 1;
	min-width: 0;
}

.wcs-chip:hover {
	background: #e9ebef;
	box-shadow: none;
}

.wcs-chip.wcs-chip--open {
	background: #e8ecf4;
	color: #1a2332;
}

.wcs-chip.wcs-chip--active {
	background: #f3f4f6;
	color: #1a2332;
}

.wcs-chip.wcs-chip--active .wcs-chip__icon,
.wcs-chip.wcs-chip--active .wcs-chip__chevron {
	color: #4b5563;
}

.wcs-chip__icon {
	color: #4b5563;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.wcs-chip.wcs-chip--open .wcs-chip__icon {
	color: #4b5563;
}

.wcs-chip__label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wcs-chip__count {
	font-size: 10px;
	font-weight: 700;
	background: #1a56db;
	color: #fff;
	border-radius: 10px;
	padding: 1px 6px;
	line-height: 1.4;
}

.wcs-chip.wcs-chip--active .wcs-chip__count {
	background: #4b5563;
}

.wcs-chip__dismiss {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	background: none;
	color: #6b7280;
	border: none;
	border-radius: 0;
	cursor: pointer;
	padding: 0;
	line-height: 0;
	margin-left: auto;
}

.wcs-chip__dismiss svg {
	width: 12px;
	height: 12px;
}

.wcs-chip.wcs-chip--active .wcs-chip__dismiss {
	background: none;
	color: #6b7280;
	    padding: 5px 15px 5px 15px;
}

.wcs-chip__dismiss:hover {
	color: #1a2332;
	background: none;
}

.wcs-chip__chevron {
	color: #9ca3af;
	flex-shrink: 0;
	transition: transform 0.2s;
	margin-left: auto;
	width: 14px;
	height: 14px;
}

.wcs-chip.wcs-chip--open .wcs-chip__chevron {
	transform: rotate(180deg);
	color: #4b5563;
}

/* When dismiss is visible, chevron hides */
.wcs-chip.wcs-chip--active .wcs-chip__chevron {
	display: none;
}

/* Responsive: stack chips on small screens */
@media (max-width: 768px) {
	.wcs-chipbar {
		flex-wrap: wrap;
		gap: 8px;
	}
	.wcs-chip {
		flex: 1 1 calc(50% - 4px);
	}
}
@media (max-width: 480px) {
	.wcs-chip {
		flex: 1 1 100%;
	}
}

/* --- Chip dropdown ----------------------------------------- */
.wcs-chip__dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 99999;
	min-width: 240px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.18);
	overflow: hidden;
}

.wcs-chip--open .wcs-chip__dropdown {
	display: block;
}

/* Duration panel inside dropdown */
.wcs-dur-panel {
	padding: 14px 14px 12px;
	display: flex;
	flex-direction: column;
}

.wcs-dur-panel__label {
	font-size: 11px;
	font-weight: 600;
	color: #475569;
	margin-bottom: 6px;
	letter-spacing: 0.04em;
}

.wcs-dur-panel .wcs-input {
	width: 100%;
	box-sizing: border-box;
}

/* Multisel inside dropdown — no outer border/trigger, just list */
.wcs-chip__dropdown .wcs-multisel {
	position: static;
}

.wcs-chip__dropdown .wcs-multisel__search-wrap {
	padding: 8px 10px;
	border-bottom: 1px solid #f1f5f9;
}

.wcs-chip__dropdown .wcs-multisel__list {
	max-height: 220px;
	overflow-y: auto;
}

/* --- Results column --------------------------------------- */
.wcs-results {
	min-width: 0;
	padding-top: 4px;
}

/* Full-width breakout (escapes theme max-width) */
.wcs-full-bleed {
	width: 100vw;
	position: relative;
	left: 49%;
	transform: translateX(-50%);
	padding-left: calc((100vw - 100%) / 2);
	padding-right: calc((100vw - 100%) / 2);
	box-sizing: border-box;
	background-color: #E6ECF0;
	padding-top: 40px;
	padding-bottom: 40px;
}

.wcs-cards {
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.wcs-sub-label {
	display: block;
	font-size: 11px;
	color: #94a3b8;
	margin-bottom: 4px;
}

.wcs-input,
.wcs-select {
	width: 100%;
	padding: 8px 10px;
	font-size: 13px;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	background: #f8fafc;
	color: #1a2332;
	transition: border-color 0.15s, box-shadow 0.15s;
	appearance: none;
}

.wcs-input:focus,
.wcs-select:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
	background: #fff;
}

.wcs-field-hint {
	display: block;
	font-size: 11px;
	color: #94a3b8;
	margin-top: 4px;
}

/* --- Custom multi-select widget -------------------------- */
.wcs-multisel {
	position: relative;
}

.wcs-multisel__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 8px 10px;
	font-size: 13px;
	text-align: left;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	color: #1a2332;
	cursor: pointer;
	transition: border-color 0.15s;
}

.wcs-multisel__trigger:hover {
	background: #f1f5f9;
	border-color: #cbd5e1;
}

.wcs-multisel__trigger[aria-expanded="true"] {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	background: #fff;
}

.wcs-multisel__summary {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #475569;
	font-size: 13px;
}

.wcs-multisel__chevron {
	flex-shrink: 0;
	margin-left: 6px;
	color: #94a3b8;
	transition: transform 0.2s;
}

.wcs-multisel__trigger[aria-expanded="true"] .wcs-multisel__chevron {
	transform: rotate(180deg);
}

.wcs-multisel__panel {
	display: none;
	border: 1px solid #e2e8f0;
	border-top: 0;
	border-radius: 0 0 6px 6px;
	background: #fff;
	overflow: hidden;
}

.wcs-multisel__panel--open {
	display: block;
}

.wcs-multisel__search-wrap {
	padding: 6px 8px;
	border-bottom: 1px solid #f1f5f9;
}

.wcs-multisel__search {
	width: 100%;
	box-sizing: border-box;
	padding: 5px 8px;
	font-size: 12px;
	border: 1px solid #e2e8f0;
	border-radius: 4px;
	background: #f8fafc;
	color: #1a2332;
	outline: none;
}

.wcs-multisel__search:focus {
	border-color: #3b82f6;
	background: #fff;
}

.wcs-multisel__list {
	max-height: 180px;
	overflow-y: auto;
	padding: 4px 0;
}

.wcs-multisel__group-label {
	display: block;
	padding: 6px 10px 2px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #94a3b8;
}

.wcs-multisel__item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px 10px;
	font-size: 13px;
	color: #1a2332;
	cursor: pointer;
	user-select: none;
}

.wcs-multisel__item:hover {
	background: #f1f5f9;
}

.wcs-multisel__item span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wcs-multisel__cb {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	accent-color: #1a56db;
	cursor: pointer;
}

/* Inline notice shown when out-of-season months are auto-cleared */
.wcs-season-notice {
	margin: 6px 10px 8px;
	padding: 7px 10px;
	font-size: 11px;
	line-height: 1.45;
	color: #92400e;
	background: #fef3c7;
	border: 1px solid #fde68a;
	border-radius: 6px;
}


.wcs-dur-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.wcs-dur-row .wcs-input {
	flex: 1;
}

.wcs-dur-sep {
	font-size: 13px;
	color: #94a3b8;
	flex-shrink: 0;
}

/* --- Buttons ---------------------------------------------- */
.wcs-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 500;
	border-radius: 6px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.15s;
	text-decoration: none;
	line-height: 1.4;
}

.wcs-btn--primary {
	width: 100%;
	justify-content: center;
	background: #1a56db;
	color: #fff;
	border-color: #1a56db;
}

.wcs-btn--primary:hover {
	background: #1648c0;
	border-color: #1648c0;
}

.wcs-btn--primary:active {
	transform: scale(0.98);
}

.wcs-btn--ghost {
	width: 100%;
	justify-content: center;
	background: transparent;
	color: #64748b;
	border-color: #e2e8f0;
	margin-top: 8px;
}

.wcs-btn--ghost:hover {
	background: #f8fafc;
	color: #1a2332;
}

.wcs-btn--outline {
	background: transparent;
	color: #1a56db;
	border-color: #1a56db;
}

.wcs-btn--outline:hover {
	background: #eff6ff;
}

.wcs-back-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #64748b;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	margin-bottom: 16px;
	transition: color 0.15s;
}

.wcs-back-btn:hover {
	color: #1a2332;
}

/* --- State panels ----------------------------------------- */
.wcs-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	text-align: center;
	color: #94a3b8;
	font-size: 14px;
	gap: 14px;
}

.wcs-state--error {
	color: #e25252;
}

.wcs-error-msg {
	font-size: 14px;
	color: #e25252;
}

/* Spinner */
.wcs-spinner {
	width: 36px;
	height: 36px;
	border: 3px solid #e2e8f0;
	border-top-color: #1a56db;
	border-radius: 50%;
	animation: wcs-spin 0.7s linear infinite;
}

@keyframes wcs-spin { to { transform: rotate(360deg); } }

/* --- Results header + meta -------------------------------- */
.wcs-results-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	padding: 20px 0 4px;
}

.wcs-results-heading {
	font-size: 26px;
	font-weight: 800;
	color: #0d1b2a;
	margin: 0 0 6px;
	line-height: 1.2;
}

.wcs-results-meta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 10px;
}

.wcs-results-count {
	display: block;
	font-size: 13px;
	color: #64748b;
	font-weight: 500;
	margin-bottom: 16px;
}

.wcs-sort-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.wcs-sort-wrap .wcs-sub-label {
	display: inline;
	margin: 0;
}

.wcs-sort-wrap .wcs-select {
	width: auto;
	padding: 5px 28px 5px 10px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 8px center;
}

/* --- Cruise Cards (grid layout) -------------------------- */
.wcs-layout-grid .wcs-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 1024px) {
	.wcs-layout-grid .wcs-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.wcs-layout-grid .wcs-cards {
		grid-template-columns: 1fr;
	}
}


.wcs-layout-list .wcs-cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Card container */
.wcs-card {
	background: #fff;
	border: 1px solid #dce3ed;
	border-radius: 14px;
	overflow: hidden;
	transition: box-shadow 0.2s, transform 0.15s;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

/* .wcs-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
	transform: translateY(-2px);
} */

.wcs-layout-list .wcs-card {
	flex-direction: row;
}

/* Favourite button */
.wcs-card__fav-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	background: rgba(255,255,255,0.85);
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: background 0.15s;
}

.wcs-card__fav-btn:hover {
	background: rgba(255,255,255,1);
}

.wcs-card__fav-btn svg {
	width: 16px;
	height: 16px;
	stroke: #94a3b8;
	fill: none;
	transition: stroke 0.15s, fill 0.15s;
	pointer-events: none;
}

.wcs-card__fav-btn--active svg {
	stroke: #e25252;
	fill: #e25252;
}

/* Hero image */
.wcs-card__hero {
	position: relative;
	height: 220px;
	background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
	overflow: hidden;
	flex-shrink: 0;
}

.wcs-layout-list .wcs-card__hero {
	width: 220px;
	height: auto;
	min-height: 180px;
}

.wcs-card__hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wcs-card__hero svg {
	opacity: 0.3;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Media wrapper */
.wcs-card__hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.wcs-card__hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wcs-card__hero-media svg {
	opacity: 0.3;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Sales message tags: top-right corner of hero */
.wcs-card__sales-tags {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
	display: flex;
	align-items: flex-end;
	gap: 5px;
}
.wcs-card__sales-tag {
	display: inline-block;
    border-radius: 5px 5px 5px 5px;
	color: #fff;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 11px;
    font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(0,0,0,0.20);
	line-height: 1.4;
	font-family: "Figtree", Open Sans, Helvetica, Arial, Sans-Serif;
    padding: 5px 10px;
}
.wcs-card__sales-tag--1 {
	background-color: #131042;
}
.wcs-card__sales-tag--2 {
	background-color: #237e4d;
}

.wcs-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.70) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 8px;
	padding: 16px 18px;
}

.wcs-card__badge {
	align-self: flex-start;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 5px 12px;
	border-radius: 4px;
	background: rgba(255,255,255,0.95);
	color: #0d1b2a;
	border: 1px solid rgba(0,0,0,0.08);
}

.wcs-card__hero-name {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.50);
    font-family: "Figtree", Open Sans, Helvetica, Arial, Sans-Serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 26px;
}

/* Operator bar — white bg, dark text */
.wcs-card__op-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	padding: 16px 18px;
	min-height: 80px;
	border-top: 1px solid #f1f5f9;
}

.wcs-card__op-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: #c0392b;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	border-radius: 50%;
	flex-shrink: 0;
}

.wcs-card__op-logo {
	max-height: 40px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	object-position: left center;
	flex-shrink: 0;
}

.wcs-card__op-label {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.03em;
	color: #0d1b2a;
}

/* Card body */
.wcs-card__body {
	padding: 7px 18px 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Teaser — short promotional line above description */
.wcs-card__teaser {
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Figtree", Open Sans, Helvetica, Arial, Sans-Serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #53596b;
}

/* Description */
.wcs-card__desc {
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Figtree", Open Sans, Helvetica, Arial, Sans-Serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #53596b;
}

.wcs-card__desc--loading {
	color: #b0bec5;
	font-style: italic;
}

/* Highlights / bullet points */
.wcs-card__highlights {
	list-style: disc;
	padding-left: 20px;
	margin: 0 0 16px;
	font-size: 14px;
	color: #1a2332;
	line-height: 1.8;
}

.wcs-card__highlights li {
	padding-left: 4px;
}

/* Meta info rows */
.wcs-card__meta {
	padding-top: 5px;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.wcs-meta-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.wcs-meta-icon {
    flex-shrink: 0;
    font-weight: 700;
    color: #131042;
}

.wcs-meta-dates {
    flex: 1;
    font-family: "Figtree", Open Sans, Helvetica, Arial, Sans-Serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #131042;
}

.wcs-meta-dates--loading {
	color: #b0bec5;
	font-style: italic;
}

.wcs-meta-dur {
    white-space: nowrap;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    font-family: "Figtree", Open Sans, Helvetica, Arial, Sans-Serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 24px;
    color: #171e21;
}

/* Ship name row (inside meta) */
.wcs-card__ship-row {
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: none;
	margin-bottom: 10px;
	padding: 0;
}

.wcs-card__ship-name {
	font-size: 13px;
	font-weight: 700;
	color: #0d1b2a;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Card footer */
.wcs-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 5px;
    margin-top: auto;
    gap: 12px;
}

.wcs-card__btn {
	background-color: #131042;
    font-family: "Figtree", Open Sans, Helvetica, Arial, Sans-Serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition-duration: 0.3s;
    border-radius: 5px 5px 5px 5px;
    color: #fff !important;
    text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	cursor: pointer;
	transition: background 0.15s;
	white-space: nowrap;
	flex-shrink: 0;
	line-height: 1.4;
}

.wcs-card__btn:hover,
.wcs-card__btn:focus {
	background: #1c3556;
	color: #fff;
	text-decoration: none;
	outline: none;
}

.wcs-card__btn-arrow {
	font-size: 16px;
}

/* Price block */
.wcs-price-wrap {
	text-align: right;
}

.wcs-price-from {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: #64748b;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.wcs-price-amount {
	display: block;
	font-size: 24px;
	font-weight: 800;
	color: #0d1b2a;
	line-height: 1.15;
}

.wcs-price-note {
	display: block;
	font-size: 9px;
	color: #94a3b8;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

/* --- Infinite scroll / load-more ------------------------- */
.wcs-pagination {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: 32px;
}

/* Invisible sentinel element watched by IntersectionObserver */
.wcs-load-more-sentinel {
	width: 1px;
	height: 1px;
	visibility: hidden;
}

/* "Load more cruises" fallback button */
.wcs-load-more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 32px;
	background: #131042;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background 0.18s, transform 0.12s;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.wcs-load-more-btn:hover {
	background: #1e1870;
}

.wcs-load-more-btn:active {
	transform: scale(0.97);
}

/* Small spinner shown below existing results while next page loads */
.wcs-load-more-spinner {
	display: flex;
	justify-content: center;
	padding: 16px 0;
}

.wcs-spinner--sm {
	width: 28px;
	height: 28px;
	border-width: 3px;
}

/* --- Detail view ----------------------------------------- */
.wcs-detail-content {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
}

.wcs-detail__hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wcs-detail__body {
	padding: 24px 28px;
}

.wcs-detail__title {
	font-size: 22px;
	font-weight: 700;
	color: #1a2332;
	margin-bottom: 4px;
	line-height: 1.3;
}

.wcs-detail__operator {
	font-size: 14px;
	color: #64748b;
	margin-bottom: 20px;
}

.wcs-detail__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 24px;
}

@media (max-width: 600px) {
	.wcs-detail__stats { grid-template-columns: 1fr 1fr; }
}

.wcs-stat {
	background: #f8fafc;
	border-radius: 8px;
	padding: 14px;
}

.wcs-stat__label {
	font-size: 11px;
	color: #94a3b8;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.wcs-stat__value {
	font-size: 20px;
	font-weight: 700;
	color: #1a2332;
	line-height: 1.2;
}

.wcs-stat__unit {
	font-size: 13px;
	font-weight: 400;
	color: #64748b;
}

.wcs-section-title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #64748b;
	margin: 24px 0 12px;
}

/* Itinerary timeline */
.wcs-itinerary {
	display: flex;
	flex-direction: column;
}

.wcs-stop {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	position: relative;
}

.wcs-stop__indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	width: 20px;
}

.wcs-stop__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #cbd5e1;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1.5px #cbd5e1;
	flex-shrink: 0;
}

.wcs-stop--first .wcs-stop__dot,
.wcs-stop--last .wcs-stop__dot {
	background: #1a56db;
	box-shadow: 0 0 0 1.5px #1a56db;
}

.wcs-stop__line {
	width: 1.5px;
	height: 20px;
	background: #e2e8f0;
	margin: 2px 0;
}

.wcs-stop__name {
	font-size: 14px;
	color: #1a2332;
	padding: 0 0 8px;
	line-height: 1.4;
}

.wcs-stop--first .wcs-stop__name,
.wcs-stop--last .wcs-stop__name {
	font-weight: 600;
}

.wcs-stop__code {
	font-size: 11px;
	color: #94a3b8;
	margin-left: 6px;
}

/* Description */
.wcs-detail__description {
	font-size: 14px;
	color: #475569;
	line-height: 1.7;
	margin-top: 8px;
}

/* CTA row */
.wcs-detail__cta {
	display: flex;
	gap: 10px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #f1f5f9;
	flex-wrap: wrap;
}

/* --- Responsive ------------------------------------------ */
@media (max-width: 680px) {
	.wcs-chipbar {
		gap: 8px;
	}
	.wcs-chip {
		padding: 7px 12px;
	}
	.wcs-chip__label {
		font-size: 10px;
	}
}

@media (max-width: 540px) {
	.wcs-filters {
		position: static;
	}
	.wcs-layout-list .wcs-card {
		flex-direction: column;
	}
	.wcs-layout-list .wcs-card__hero {
		width: 100%;
		height: 160px;
		min-height: 160px;
	}
	.wcs-detail__body {
		padding: 16px;
	}
}

/* --- Airtable Cards Grid (wcs-results--grid) ------------- */
.wcs-results--grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 1024px) {
	.wcs-results--grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 600px) {
	.wcs-results--grid {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 10px;
	}
}

/* --- Airtable Card Footer (operator logo + button) ------- */
.wcs-card__footer-left {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.wcs-card__footer-logo {
	width: 32px;
	height: 32px;
	object-fit: contain;
	border-radius: 50%;
	flex-shrink: 0;
	border: 1px solid #e2e8f0;
}

.wcs-card__footer-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #131042;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	border-radius: 50%;
	flex-shrink: 0;
}
