/**
 * Travel Offers Manager - front end styles.
 *
 * Everything is scoped under .tom so the plugin never restyles the theme.
 * Layout uses CSS grid with sensible fallbacks and is mobile first.
 *
 * @package TravelOffersManager
 */

.tom {
	--tom-primary: #0b7285;
	--tom-primary-dark: #085261;
	--tom-text: #1f2933;
	--tom-muted: #667085;
	--tom-border: #e4e7ec;
	--tom-bg-soft: #f8fafb;
	--tom-radius: 14px;
	--tom-shadow: 0 4px 16px rgba( 16, 24, 40, 0.08 );
	--tom-shadow-lg: 0 12px 32px rgba( 16, 24, 40, 0.12 );

	color: var( --tom-text );
	box-sizing: border-box;
}

.tom *,
.tom *::before,
.tom *::after {
	box-sizing: inherit;
}

.tom img {
	max-width: 100%;
	height: auto;
}

/* --------------------------------------------------------------------------
   Buttons and tags
   -------------------------------------------------------------------------- */

.tom-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	background: transparent;
	color: var( --tom-primary );
	border-color: var( --tom-primary );
}

.tom-button--primary {
	background: var( --tom-primary );
	color: #fff;
}

.tom-button--primary:hover,
.tom-button--primary:focus {
	background: var( --tom-primary-dark );
	color: #fff;
}

.tom-button--ghost {
	background: #fff;
	border-color: var( --tom-border );
	color: var( --tom-text );
}

.tom-button--ghost:hover {
	border-color: var( --tom-primary );
	color: var( --tom-primary );
}

.tom-button--small {
	padding: 8px 16px;
	font-size: 14px;
}

.tom-button--block {
	display: flex;
	width: 100%;
}

.tom-button--disabled {
	background: #f2f4f7;
	color: var( --tom-muted );
	border-color: #f2f4f7;
	cursor: not-allowed;
}

.tom-tag {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	background: var( --tom-bg-soft );
	border: 1px solid var( --tom-border );
	font-size: 12px;
	font-weight: 600;
}

.tom-tag--sale {
	background: #fef0f0;
	border-color: #fadbd8;
	color: #b42318;
}

.tom-status--limited {
	color: #b54708;
}

.tom-status--sold-out {
	color: #b42318;
}

.tom-empty {
	padding: 32px;
	text-align: center;
	color: var( --tom-muted );
	background: var( --tom-bg-soft );
	border-radius: var( --tom-radius );
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */

.tom-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
	font-size: 13px;
	color: var( --tom-muted );
}

.tom-breadcrumbs li + li::before {
	content: '/';
	margin-right: 8px;
	color: var( --tom-border );
}

.tom-breadcrumbs a {
	color: var( --tom-muted );
	text-decoration: none;
}

.tom-breadcrumbs a:hover {
	color: var( --tom-primary );
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.tom-hero {
	position: relative;
	min-height: 380px;
	background-color: #0f172a;
	background-size: cover;
	background-position: center;
	border-radius: var( --tom-radius );
	overflow: hidden;
	margin-bottom: 28px;
}

.tom-hero__overlay {
	display: flex;
	align-items: flex-end;
	min-height: 380px;
	background: linear-gradient( to top, rgba( 0, 0, 0, 0.72 ), rgba( 0, 0, 0, 0.15 ) 60%, rgba( 0, 0, 0, 0.05 ) );
}

.tom-hero__inner {
	padding: 32px;
	color: #fff;
	max-width: 800px;
}

.tom-hero__location {
	margin: 0 0 8px;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.9;
}

.tom-hero__title {
	margin: 0 0 12px;
	font-size: clamp( 28px, 4vw, 44px );
	line-height: 1.15;
	color: #fff;
}

.tom-hero__intro {
	margin: 0;
	font-size: 17px;
	opacity: 0.92;
}

.tom-ribbon {
	display: inline-block;
	margin-top: 14px;
	padding: 6px 16px;
	background: #f79009;
	color: #fff;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   Single layout
   -------------------------------------------------------------------------- */

.tom-layout {
	display: grid;
	grid-template-columns: minmax( 0, 1fr );
	gap: 28px;
}

@media screen and ( min-width: 900px ) {
	.tom-layout {
		grid-template-columns: minmax( 0, 1fr ) 340px;
		align-items: start;
	}
}

.tom-section-block {
	margin-bottom: 32px;
	padding-bottom: 8px;
}

.tom-section-block h2 {
	margin: 0 0 16px;
	font-size: 24px;
}

.tom-prose {
	line-height: 1.7;
}

.tom-prose p:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Quick facts
   -------------------------------------------------------------------------- */

.tom-quick-facts {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 140px, 1fr ) );
	gap: 1px;
	margin-bottom: 28px;
	background: var( --tom-border );
	border: 1px solid var( --tom-border );
	border-radius: var( --tom-radius );
	overflow: hidden;
}

.tom-fact {
	padding: 16px;
	background: #fff;
}

.tom-fact__label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var( --tom-muted );
	margin-bottom: 4px;
}

.tom-fact__value {
	display: block;
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   Slider
   -------------------------------------------------------------------------- */

.tom-slider {
	position: relative;
	border-radius: var( --tom-radius );
	overflow: hidden;
	background: #000;
}

.tom-slider__track {
	display: flex;
	transition: transform 0.35s ease;
}

.tom-slider__slide {
	flex: 0 0 100%;
	margin: 0;
}

.tom-slider__slide img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.tom-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY( -50% );
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba( 255, 255, 255, 0.9 );
	color: var( --tom-text );
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.tom-slider__nav--prev {
	left: 12px;
}

.tom-slider__nav--next {
	right: 12px;
}

.tom-slider__thumbs {
	display: flex;
	gap: 8px;
	padding: 10px;
	overflow-x: auto;
	background: #111;
}

.tom-slider__thumb {
	flex: 0 0 auto;
	width: 76px;
	height: 54px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	background: none;
	opacity: 0.6;
}

.tom-slider__thumb.is-active {
	border-color: #fff;
	opacity: 1;
}

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

/* --------------------------------------------------------------------------
   Accordion
   -------------------------------------------------------------------------- */

.tom-accordion__item {
	border: 1px solid var( --tom-border );
	border-radius: var( --tom-radius );
	margin-bottom: 10px;
	overflow: hidden;
	background: #fff;
}

.tom-accordion__heading {
	margin: 0;
	font-size: inherit;
}

.tom-accordion__trigger {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 16px 18px;
	border: none;
	background: #fff;
	text-align: left;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var( --tom-text );
}

.tom-accordion__trigger:hover {
	background: var( --tom-bg-soft );
}

.tom-accordion__day {
	flex: 0 0 auto;
	padding: 4px 10px;
	border-radius: 999px;
	background: var( --tom-primary );
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.tom-accordion__title {
	flex: 1;
}

.tom-accordion__icon {
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-right: 2px solid var( --tom-muted );
	border-bottom: 2px solid var( --tom-muted );
	transform: rotate( 45deg );
	transition: transform 0.2s ease;
}

.tom-accordion__trigger[aria-expanded="true"] .tom-accordion__icon {
	transform: rotate( -135deg );
}

.tom-accordion__panel {
	padding: 0 18px 18px;
}

.tom-accordion__image {
	display: block;
	width: 100%;
	max-height: 320px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 14px;
}

.tom-highlights {
	margin: 12px 0;
	padding-left: 20px;
}

.tom-accordion__meals {
	margin: 12px 0 0;
	font-size: 14px;
	color: var( --tom-muted );
}

/* --------------------------------------------------------------------------
   Included lists
   -------------------------------------------------------------------------- */

.tom-two-col {
	display: grid;
	grid-template-columns: minmax( 0, 1fr );
	gap: 24px;
}

@media screen and ( min-width: 700px ) {
	.tom-two-col {
		grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	}
}

.tom-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tom-list li {
	display: flex;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var( --tom-border );
}

.tom-list li:last-child {
	border-bottom: none;
}

.tom-list__icon {
	flex: 0 0 auto;
	font-size: 20px;
	width: 20px;
	height: 20px;
}

.tom-list--yes .tom-list__icon {
	color: #12b76a;
}

.tom-list--no .tom-list__icon {
	color: #f04438;
}

.tom-list__detail {
	display: block;
	font-size: 14px;
	color: var( --tom-muted );
}

.tom-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0;
	padding: 0;
	list-style: none;
}

.tom-amenities li {
	padding: 6px 14px;
	background: var( --tom-bg-soft );
	border: 1px solid var( --tom-border );
	border-radius: 999px;
	font-size: 14px;
}

.tom-hotel__distances {
	margin: 12px 0;
	padding-left: 20px;
}

.tom-map {
	margin: 20px 0;
	border-radius: var( --tom-radius );
	overflow: hidden;
	border: 1px solid var( --tom-border );
}

.tom-hotel__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* --------------------------------------------------------------------------
   Price box
   -------------------------------------------------------------------------- */

.tom-pricebox {
	position: sticky;
	top: 24px;
	padding: 24px;
	background: #fff;
	border: 1px solid var( --tom-border );
	border-radius: var( --tom-radius );
	box-shadow: var( --tom-shadow-lg );
}

.tom-pricebox__label {
	margin: 0;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var( --tom-muted );
}

.tom-pricebox__price {
	margin: 4px 0 12px;
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
}

.tom-pricebox__amount {
	font-size: 34px;
	font-weight: 800;
	color: var( --tom-primary );
	line-height: 1.1;
}

.tom-pricebox__old {
	color: var( --tom-muted );
	font-size: 17px;
}

.tom-pricebox__discounts {
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 6px;
}

.tom-pricebox__discounts li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}

.tom-pricebox__meta {
	margin: 0 0 14px;
	padding: 14px 0;
	list-style: none;
	border-top: 1px solid var( --tom-border );
	border-bottom: 1px solid var( --tom-border );
	display: grid;
	gap: 8px;
}

.tom-pricebox__meta li {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-size: 14px;
	color: var( --tom-muted );
}

.tom-pricebox__meta strong {
	color: var( --tom-text );
}

.tom-pricebox__status {
	margin: 0 0 14px;
	font-weight: 700;
}

.tom-countdown {
	margin-bottom: 16px;
	padding: 12px 14px;
	background: var( --tom-bg-soft );
	border-radius: 10px;
	text-align: center;
}

.tom-countdown__label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var( --tom-muted );
}

.tom-countdown__value {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var( --tom-primary );
}

.tom-countdown__date {
	display: block;
	font-size: 13px;
	color: var( --tom-muted );
}

.tom-pricebox__actions {
	display: grid;
	gap: 10px;
}

.tom-share {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var( --tom-border );
	font-size: 14px;
}

.tom-share__label {
	color: var( --tom-muted );
}

.tom-share a,
.tom-share__print {
	color: var( --tom-primary );
	text-decoration: none;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 14px;
}

/* --------------------------------------------------------------------------
   Tables
   -------------------------------------------------------------------------- */

.tom-table-wrap {
	overflow-x: auto;
	border: 1px solid var( --tom-border );
	border-radius: var( --tom-radius );
}

.tom-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
}

.tom-table th,
.tom-table td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid var( --tom-border );
}

.tom-table thead th {
	background: var( --tom-bg-soft );
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var( --tom-muted );
}

.tom-table__seats {
	display: block;
	font-size: 12px;
	color: var( --tom-muted );
}

.tom-table__note td {
	background: var( --tom-bg-soft );
	font-size: 13px;
	color: var( --tom-muted );
}

@media screen and ( max-width: 640px ) {
	.tom-table thead {
		display: none;
	}

	.tom-table tr {
		display: block;
		border-bottom: 1px solid var( --tom-border );
	}

	.tom-table td {
		display: flex;
		justify-content: space-between;
		gap: 12px;
		border: none;
		padding: 8px 14px;
	}

	.tom-table td::before {
		content: attr( data-label );
		font-weight: 600;
		color: var( --tom-muted );
	}
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.tom-cards {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 280px, 1fr ) );
	gap: 22px;
}

.tom-cards--cols-1 {
	grid-template-columns: minmax( 0, 1fr );
}

@media screen and ( min-width: 700px ) {
	.tom-cards--cols-2 {
		grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	}

	.tom-cards--cols-3 {
		grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	}

	.tom-cards--cols-4 {
		grid-template-columns: repeat( 4, minmax( 0, 1fr ) );
	}
}

.tom-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var( --tom-border );
	border-radius: var( --tom-radius );
	overflow: hidden;
	box-shadow: var( --tom-shadow );
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tom-card:hover {
	transform: translateY( -3px );
	box-shadow: var( --tom-shadow-lg );
}

.tom-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background: var( --tom-bg-soft );
	overflow: hidden;
}

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

.tom-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 12px;
	background: #f79009;
	color: #fff;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}

.tom-card__status {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 5px 12px;
	background: rgba( 255, 255, 255, 0.95 );
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}

.tom-card__body {
	flex: 1;
	padding: 18px;
}

.tom-card__location {
	margin: 0 0 6px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var( --tom-muted );
}

.tom-card__title {
	margin: 0 0 8px;
	font-size: 19px;
	line-height: 1.3;
}

.tom-card__title a {
	color: inherit;
	text-decoration: none;
}

.tom-card__title a:hover {
	color: var( --tom-primary );
}

.tom-stars {
	color: #f79009;
	letter-spacing: 1px;
}

.tom-card__hotel {
	margin-left: 6px;
	color: var( --tom-muted );
	font-size: 14px;
}

.tom-card__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	color: var( --tom-muted );
}

.tom-card__facts li + li::before {
	content: '·';
	margin-right: 14px;
	color: var( --tom-border );
}

.tom-card__excerpt {
	margin: 12px 0 0;
	font-size: 15px;
	color: var( --tom-muted );
	line-height: 1.6;
}

.tom-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	border-top: 1px solid var( --tom-border );
	background: var( --tom-bg-soft );
}

.tom-card__price-label {
	display: block;
	font-size: 12px;
	color: var( --tom-muted );
}

.tom-card__price-value {
	font-size: 22px;
	font-weight: 800;
	color: var( --tom-primary );
}

.tom-card__price-old {
	margin-left: 6px;
	color: var( --tom-muted );
	font-size: 14px;
}

/* --------------------------------------------------------------------------
   Archive
   -------------------------------------------------------------------------- */

.tom-archive__header {
	margin-bottom: 24px;
}

.tom-archive__title {
	margin: 0 0 8px;
}

.tom-archive__layout {
	display: grid;
	grid-template-columns: minmax( 0, 1fr );
	gap: 28px;
	align-items: start;
}

@media screen and ( min-width: 900px ) {
	.tom-archive__layout {
		grid-template-columns: 280px minmax( 0, 1fr );
	}
}

.tom-archive__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.tom-archive__count {
	margin: 0;
	color: var( --tom-muted );
}

.tom-archive__results.is-loading {
	opacity: 0.5;
	pointer-events: none;
}

.tom-filters {
	padding: 20px;
	background: #fff;
	border: 1px solid var( --tom-border );
	border-radius: var( --tom-radius );
	box-shadow: var( --tom-shadow );
	position: sticky;
	top: 24px;
}

.tom-filters__title {
	margin: 0 0 16px;
	font-size: 18px;
}

.tom-filters__group {
	margin-bottom: 16px;
}

.tom-filters__label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
}

.tom-filters input[type="search"],
.tom-filters input[type="number"],
.tom-filters select {
	width: 100%;
	padding: 9px 12px;
	border: 1px solid var( --tom-border );
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
}

.tom-filters__row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tom-filters__stars {
	display: grid;
	gap: 6px;
}

.tom-filters__check {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	cursor: pointer;
}

.tom-filters__actions {
	display: grid;
	gap: 8px;
	margin-top: 20px;
}

.tom-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin-top: 28px;
}

.tom-pagination__link {
	min-width: 40px;
	padding: 8px 12px;
	border: 1px solid var( --tom-border );
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	font-size: 14px;
	color: var( --tom-text );
}

.tom-pagination__link.is-current,
.tom-pagination__link:hover {
	background: var( --tom-primary );
	border-color: var( --tom-primary );
	color: #fff;
}

.tom-pagination__gap {
	padding: 8px 4px;
	color: var( --tom-muted );
}

/* --------------------------------------------------------------------------
   Search
   -------------------------------------------------------------------------- */

.tom-search__form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 14px;
	background: #fff;
	border: 1px solid var( --tom-border );
	border-radius: var( --tom-radius );
	box-shadow: var( --tom-shadow );
}

.tom-search__field {
	position: relative;
	flex: 1 1 180px;
}

.tom-search__field--grow {
	flex: 2 1 260px;
}

.tom-search__field input,
.tom-search__field select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var( --tom-border );
	border-radius: 10px;
	font-size: 15px;
	background: #fff;
}

.tom-search__suggestions {
	position: absolute;
	z-index: 30;
	top: calc( 100% + 6px );
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid var( --tom-border );
	border-radius: 10px;
	box-shadow: var( --tom-shadow-lg );
	overflow: hidden;
}

.tom-suggestions {
	margin: 0;
	padding: 0;
	list-style: none;
	max-height: 340px;
	overflow-y: auto;
}

.tom-suggestions a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	text-decoration: none;
	color: var( --tom-text );
	border-bottom: 1px solid var( --tom-border );
}

.tom-suggestions li:last-child a {
	border-bottom: none;
}

.tom-suggestions a:hover {
	background: var( --tom-bg-soft );
}

.tom-suggestions img {
	width: 48px;
	height: 40px;
	object-fit: cover;
	border-radius: 6px;
}

.tom-suggestions__body {
	flex: 1;
	min-width: 0;
}

.tom-suggestions__title {
	display: block;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tom-suggestions__meta {
	display: block;
	font-size: 13px;
	color: var( --tom-muted );
}

.tom-suggestions__price {
	font-weight: 700;
	color: var( --tom-primary );
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Destinations
   -------------------------------------------------------------------------- */

.tom-destinations__grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 200px, 1fr ) );
	gap: 18px;
}

.tom-destination {
	display: block;
	border-radius: var( --tom-radius );
	overflow: hidden;
	background: #fff;
	border: 1px solid var( --tom-border );
	text-decoration: none;
	color: inherit;
	box-shadow: var( --tom-shadow );
}

.tom-destination:hover {
	box-shadow: var( --tom-shadow-lg );
}

.tom-destination__media {
	display: block;
	height: 140px;
	background-color: var( --tom-bg-soft );
	background-size: cover;
	background-position: center;
}

.tom-destination__body {
	display: block;
	padding: 14px 16px;
}

.tom-destination__name {
	display: block;
	font-weight: 700;
}

.tom-destination__count {
	display: block;
	font-size: 13px;
	color: var( --tom-muted );
}

.tom-grid-block__title {
	margin: 0 0 18px;
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */

@media print {
	.tom-hero,
	.tom-slider__nav,
	.tom-slider__thumbs,
	.tom-pricebox__actions,
	.tom-share,
	.tom-archive__filters,
	.tom-related {
		display: none !important;
	}

	.tom-accordion__panel {
		display: block !important;
	}

	.tom-layout {
		grid-template-columns: 1fr;
	}
}
