/* ================================
   DRIVELUX — Private Tours Country Hub
   Shortcode: [dl_private_tours_countryhub]
   ================================ */

.dlch {
	--dlch-bg: #f7f3ec;
	--dlch-card: #fbf8f2;
	--dlch-text: #25211d;
	--dlch-muted: rgba(37, 33, 29, 0.68);
	--dlch-line: rgba(112, 82, 47, 0.16);
	--dlch-gold: #b8894b;
	--dlch-gold-dark: #9f7138;
	--dlch-soft-gold: #c99b62;

	width: 100%;
	padding: 18px 28px 46px;
	font-family: inherit;
}

/* ================================
   FILTER BAR — Clean modern luxury
   ================================ */

.dlch__filters {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 34px;
	padding: 12px 14px;
	border: 1px solid rgba(112, 82, 47, 0.1);
	border-radius: 22px;
	background: rgba(250, 247, 241, 0.74);
	box-shadow: 0 14px 34px rgba(37, 28, 18, 0.035);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.dlch__filters::before {
	content: "Esplora i tour";
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	height: 34px;
	padding: 0 16px 0 6px;
	margin-left: 2px;
	border-right: 1px solid rgba(112, 82, 47, 0.12);
	color: rgba(37, 33, 29, 0.44);
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	white-space: nowrap;
}

.dlch__filters-left {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1 1 auto;
	min-width: 0;
	flex-wrap: wrap;
}

.dlch__filter,
.dlch__exclusive {
	appearance: none;
	border: 0;
	cursor: pointer;
	font-family: inherit;
}

.dlch__filter {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	color: rgba(37, 33, 29, 0.58);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.01em;
	white-space: nowrap;
	box-shadow: none;
	transition:
		color 0.22s ease,
		background 0.22s ease,
		border-color 0.22s ease,
		transform 0.22s ease,
		box-shadow 0.22s ease;
}

.dlch__filter:hover {
	color: #8b622f;
	background: rgba(255, 255, 255, 0.62);
	border-color: rgba(184, 137, 75, 0.16);
	box-shadow: none;
	transform: translateY(-1px);
}

.dlch__filter.is-active {
	color: #fff;
	background: #050505;
	border-color: #050505;
	box-shadow: 0 10px 22px rgba(5, 5, 5, 0.12);
	transform: none;
}

.dlch__exclusive {
	flex: 0 0 auto;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 36px;
	padding: 0 24px;
	border-radius: 999px;
	background: #b8894b;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.015em;
	white-space: nowrap;
	box-shadow: none;
	transition:
		background 0.22s ease,
		transform 0.22s ease,
		box-shadow 0.22s ease;
}

/* Убираем CSS-иконку, если иконка уже выводится в HTML */
.dlch__exclusive::before {
	display: none;
}

.dlch__exclusive:hover,
.dlch__exclusive.is-active {
	background: #9f7138;
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(121, 83, 39, 0.14);
}

.dlch__exclusive.is-active {
	outline: none;
}

/* ================================
   GRID
   ================================ */

.dlch__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	transition: opacity 0.25s ease;
}

.dlch.is-loading .dlch__grid {
	opacity: 0.45;
	pointer-events: none;
}

/* ================================
   CARD
   ================================ */

.dlch-card {
	display: grid;
	grid-template-columns: 50% 50%;
	min-height: 282px;
	overflow: hidden;
	border: 1px solid rgba(115, 86, 55, 0.13);
	border-radius: 14px;
 
	box-shadow: 0 18px 45px rgba(37, 28, 18, 0.055);
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.dlch-card:hover {
	transform: translateY(-4px);
	border-color: rgba(184, 137, 75, 0.26);
	box-shadow: 0 26px 65px rgba(37, 28, 18, 0.1);
}

.dlch-card__image {
	position: relative;
	display: block;
	min-height: 282px;
	overflow: hidden;
	background: #ddd2c4;
}

.dlch-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16)),
		linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(255, 255, 255, 0.04));
	pointer-events: none;
}

.dlch-card__image img {
	width: 100%;
	height: 100%;
	min-height: 282px;
	display: block;
	object-fit: cover;
	transition:
		transform 0.7s ease,
		filter 0.7s ease;
}

.dlch-card:hover .dlch-card__image img {
	transform: scale(1.045);
	filter: saturate(1.03) contrast(1.02);
}

.dlch-card__image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 282px;
	background:
		linear-gradient(135deg, rgba(184, 137, 75, 0.28), rgba(37, 33, 29, 0.18)),
		#ded4c6;
}

.dlch-card__content {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 31px 34px 24px;
	min-width: 0;
}

.dlch-card__badge {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 29px;
	padding: 0 16px;
	margin-bottom: 22px;
	border: 1px solid rgba(119, 91, 59, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.66);
	color: rgba(37, 33, 29, 0.68);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.dlch-card__places {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px 0;
	margin: 0 0 10px;
	color: rgba(37, 33, 29, 0.62);
	font-size: 13.5px;
	line-height: 1.35;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.dlch-card__places span {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}

.dlch-card__places span:not(:last-child)::after {
	content: "";
	width: 4px;
	height: 4px;
	margin: 0 9px;
	border-radius: 50%;
	background: var(--dlch-gold);
	opacity: 0.78;
	transform: translateY(1px);
}

.dlch-card__route {
	margin-bottom: 12px;
	color: var(--dlch-gold-dark);
	font-size: 11px;
	line-height: 1.35;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.dlch-card__title {
	margin: 0 0 14px;
	color: var(--dlch-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(27px, 2.25vw, 39px);
	line-height: 0.98;
	font-weight: 400;
	letter-spacing: -0.045em;
}

.dlch-card__title a {
	color: inherit;
	text-decoration: none;
}

.dlch-card__text {
	max-width: 430px;
	margin: 0 0 22px;
	color: var(--dlch-muted);
	font-size: 14.5px;
	line-height: 1.58;
}

.dlch-card__features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: auto;
	padding-top: 17px;
	border-top: 1px solid var(--dlch-line);
}

.dlch-card__features span {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	color: rgba(37, 33, 29, 0.68);
	font-size: 11px;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}

.dlch-card__features span:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 4px;
	width: 1px;
	height: 28px;
	background: var(--dlch-line);
}

.dlch-card__features span::before {
	content: "";
	width: 18px;
	height: 18px;
	display: block;
	opacity: 0.88;
	background-color: var(--dlch-gold);
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
}

.dlch-card__features span:nth-child(1)::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm-7 9a7 7 0 0 1 14 0' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm-7 9a7 7 0 0 1 14 0' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.dlch-card__features span:nth-child(2)::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7h10M4 17h16M17 7h3M7 12h13M4 12h1' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3Ccircle cx='16' cy='7' r='2' fill='black'/%3E%3Ccircle cx='7' cy='12' r='2' fill='black'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7h10M4 17h16M17 7h3M7 12h13M4 12h1' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3Ccircle cx='16' cy='7' r='2' fill='black'/%3E%3Ccircle cx='7' cy='12' r='2' fill='black'/%3E%3C/svg%3E");
}

.dlch-card__features span:nth-child(3)::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20V8l8-4 8 4v12M8 20v-7h8v7M3 20h18' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20V8l8-4 8 4v12M8 20v-7h8v7M3 20h18' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dlch-card__features span:nth-child(4)::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 16h14l-1.4-5.5A2 2 0 0 0 15.7 9H8.3a2 2 0 0 0-1.9 1.5L5 16Zm2 0v2m10-2v2M4 18h16' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 16h14l-1.4-5.5A2 2 0 0 0 15.7 9H8.3a2 2 0 0 0-1.9 1.5L5 16Zm2 0v2m10-2v2M4 18h16' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dlch-card__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	width: fit-content;
	margin-top: 20px;
	color: var(--dlch-gold-dark);
	text-decoration: none;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 17px;
	line-height: 1;
	letter-spacing: 0.015em;
	transition:
		color 0.28s ease,
		gap 0.28s ease;
}

.dlch-card__link:hover {
	color: #7d5528;
	gap: 16px;
}

/* ================================
   EMPTY STATE
   ================================ */

.dlch__empty {
	grid-column: 1 / -1;
	padding: 48px 24px;
	border: 1px solid rgba(115, 86, 55, 0.13);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.5);
	color: var(--dlch-muted);
	text-align: center;
	font-size: 16px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1200px) {
	.dlch__filters {
		align-items: flex-start;
		flex-direction: column;
	}

	.dlch__filters::before {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 11px;
		border-right: 0;
		border-bottom: 1px solid rgba(112, 82, 47, 0.12);
	}

	.dlch__filters-left {
		width: 100%;
	}

	.dlch__exclusive {
		align-self: flex-start;
	}

	.dlch__grid {
		grid-template-columns: 1fr;
	}

	.dlch-card {
		grid-template-columns: 46% 54%;
	}
}

@media (max-width: 767px) {
	.dlch {
		padding: 16px 14px 34px;
	}

	.dlch__filters {
		display: block;
		margin-bottom: 24px;
		padding: 12px;
		border-radius: 18px;
	}

	.dlch__filters::before {
		display: flex;
		width: 100%;
		height: auto;
		margin: 0 0 10px;
		padding: 0 0 10px;
		border-right: 0;
		border-bottom: 1px solid rgba(112, 82, 47, 0.1);
		font-size: 10px;
	}

	.dlch__filters-left {
		width: 100%;
		gap: 4px;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding: 1px 0 8px;
		scrollbar-width: none;
	}

	.dlch__filters-left::-webkit-scrollbar {
		display: none;
	}

	.dlch__filter {
		flex: 0 0 auto;
		height: 36px;
		padding: 0 16px;
		font-size: 12.5px;
	}

	.dlch__exclusive {
		width: 100%;
		min-height: 40px;
		margin-top: 8px;
		font-size: 13px;
	}

	.dlch-card {
		grid-template-columns: 1fr;
		min-height: auto;
		border-radius: 16px;
	}

	.dlch-card__image,
	.dlch-card__image img,
	.dlch-card__image-placeholder {
		min-height: 220px;
	}

	.dlch-card__content {
		padding: 24px 22px 22px;
	}

	.dlch-card__badge {
		margin-bottom: 16px;
	}

	.dlch-card__places {
		font-size: 13px;
	}

	.dlch-card__title {
		font-size: 32px;
	}

	.dlch-card__text {
		font-size: 14px;
	}

	.dlch-card__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 16px;
	}

	.dlch-card__features span:nth-child(2)::after {
		display: none;
	}
}

@media (max-width: 420px) {
	.dlch-card__title {
		font-size: 30px;
	}

	.dlch-card__features span {
		font-size: 10.5px;
	}
}
/* ================================
   DRIVELUX — FINAL FILTER OVERRIDE
   Light inactive buttons
   ================================ */

.dlch .dlch__filters {
	background: rgba(250, 247, 241, 0.78) !important;
	border: 1px solid rgba(112, 82, 47, 0.1) !important;
	box-shadow: 0 14px 34px rgba(37, 28, 18, 0.035) !important;
}

/* НЕАКТИВНЫЕ КНОПКИ */
.dlch .dlch__filter:not(.is-active) {
	background: rgba(255, 255, 255, 0.46) !important;
	background-image: none !important;
	color: rgba(37, 33, 29, 0.56) !important;
	border: 1px solid rgba(112, 82, 47, 0.08) !important;
	box-shadow: none !important;
}

/* HOVER НЕАКТИВНЫХ */
.dlch .dlch__filter:not(.is-active):hover {
	background: rgba(255, 255, 255, 0.82) !important;
	background-image: none !important;
	color: #8b622f !important;
	border-color: rgba(184, 137, 75, 0.2) !important;
	box-shadow: none !important;
	transform: translateY(-1px);
}

/* АКТИВНАЯ КНОПКА */
.dlch .dlch__filter.is-active {
	background: #050505 !important;
	background-image: none !important;
	color: #fff !important;
	border: 1px solid #050505 !important;
	box-shadow: 0 10px 22px rgba(5, 5, 5, 0.12) !important;
}

/* CTA СПРАВА */
.dlch .dlch__exclusive {
	background: #b8894b !important;
	background-image: none !important;
	color: #fff !important;
	border: 1px solid #b8894b !important;
	box-shadow: none !important;
}

.dlch .dlch__exclusive:hover,
.dlch .dlch__exclusive.is-active {
	background: #9f7138 !important;
	background-image: none !important;
	border-color: #9f7138 !important;
	box-shadow: 0 12px 28px rgba(121, 83, 39, 0.14) !important;
}









.dl-divider--dot {
	position: relative;
	width: 140px;
	height: 14px;
	margin: 22px auto 0;
}

.dl-divider--dot span {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background: linear-gradient(
		to right,
		rgba(201, 155, 98, 0),
		rgba(201, 155, 98, 0.55),
		rgba(201, 155, 98, 0)
	);
	transform: translateY(-50%);
}

.dl-divider--dot::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #c99b62;
	transform: translate(-50%, -50%);
}