/*
Theme Name: Travel Monster Child
Template:   travel-monster
Version:    1.0.0
*/

/* ============================================================
   c2g: Trip card enhancements
   ============================================================ */

/* --- Duration badge: 66% blå top / 33% hvid bund --- */
.category-trip-fig {
	position: relative;
}
.c2g-dur-badge {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 58px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0,0,0,0.28);
	z-index: 2;
	pointer-events: none;
}
.c2g-dur-badge__top {
	background: #18345b;
	color: #fff;
	text-align: center;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}
.c2g-dur-badge__bot {
	background: #fff;
	color: #18345b;
	text-align: center;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 1px solid #c8d4e0;
	border-top: none;
}

/* --- Chips: land, skib, sæson --- */
.c2g-card-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 7px;
}
.c2g-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 500;
	padding: 3px 9px;
	line-height: 1.4;
	border: 1px solid;
}
.c2g-chip svg { flex-shrink: 0; }
.c2g-chip--country {
	background: #f0f4f8;
	border-color: #c0cdd8;
	color: #2a3a50;
}
.c2g-chip--ship {
	background: #eef3f8;
	border-color: #b8cfdf;
	color: #1a3a5c;
}
.c2g-chip--season {
	background: #edf4ea;
	border-color: #b4d4aa;
	color: #1e4a18;
}

/* --- Skjul gammel destinations-visning --- */
.category-trips-single-inner-wrap .category-trip-desti,
.category-trips-single .category-trips-single-inner-wrap .category-trip-desti {
	display: none !important;
}

/* --- Route flow --- */
.c2g-card-route {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
	overflow: hidden;
}
.c2g-route__city {
	font-size: 12px;
	font-weight: 700;
	color: #18345b;
	white-space: nowrap;
	flex-shrink: 0;
}
.c2g-route__line {
	flex: 1;
	height: 1px;
	background: #c0cdd8;
	min-width: 6px;
}
.c2g-route__stops {
	display: flex;
	align-items: center;
	gap: 4px;
	overflow: hidden;
	flex-shrink: 1;
	font-size: 11px;
	font-weight: 400;
	color: #6b8299;
	white-space: nowrap;
}
.c2g-route__dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #c0cdd8;
	flex-shrink: 0;
	display: inline-flex;
	vertical-align: middle;
}

/* --- Aside: skillelinje og knap --- */
.c2g-aside-divider {
	border: none;
	border-top: 1px solid #dde4ea;
	margin: 8px 0;
}
.price-label-from {
	display: block;
	font-size: 10px;
	color: #7a90a4;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 2px;
}

/* --- More dates link --- */
.c2g-more-dates {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	color: #185fa5;
	text-decoration: none;
	margin-top: 4px;
}
.c2g-more-dates:hover {
	text-decoration: underline;
}
