/*
 * HD Store Locator — front-end.
 * Layout fedele al mockup UI (desktop: sidebar + mappa; mobile: tab Elenco/Mappa).
 * Tutto prefissato .hdsl per non collidere con Elementor/tema.
 */

.hdsl {
	--hdsl-navy: #1e396c;
	--hdsl-yellow: #fdc300;
	--hdsl-yellow-dark: #e9b400;
	--hdsl-green: #4ade80;
	--hdsl-green-text: #34c56f;
	--hdsl-red: #d83935;
	--hdsl-text: #6b7280;
	--hdsl-text-light: #9ca3af;
	--hdsl-bg-soft: #f3f4f6;
	--hdsl-border: #eceef1;
	--hdsl-radius-panel: 24px;
	--hdsl-radius-card: 16px;
	--hdsl-shadow: 0 18px 50px rgba(30, 57, 108, .10);

	font-family: inherit;
	color: var(--hdsl-text);
	font-size: 15px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	/* Il flash di default al tap su mobile è spesso rosso/grigio: lo neutralizziamo
	   qui una volta per tutti i bottoni/link del componente. */
	-webkit-tap-highlight-color: transparent;
}

.hdsl *,
.hdsl *::before,
.hdsl *::after { box-sizing: border-box; }

.hdsl button { font-family: inherit; }

/* ---------- intestazione ---------- */

.hdsl-head { text-align: center; margin: 0 auto 34px; max-width: 720px; }

.hdsl-title {
	color: var(--hdsl-navy);
	font-weight: 700;
	font-size: 34px;
	line-height: 1.25;
	margin: 0 0 18px;
	letter-spacing: -.01em;
}

.hdsl-subtitle {
	color: var(--hdsl-text);
	font-size: 17px;
	line-height: 1.6;
	margin: 0;
}

/* ---------- pannello ---------- */

.hdsl-panel {
	position: relative;
	display: grid;
	grid-template-columns: 400px 1fr;
	height: 700px;
	background: #fff;
	border-radius: var(--hdsl-radius-panel);
	box-shadow: var(--hdsl-shadow);
	overflow: hidden;
}

/* ---------- colonna sinistra ---------- */

/* min-height:0 obbligatorio: senza, un grid item si espande al contenuto
   ignorando l'altezza della riga (bug noto flex/grid), vanificando lo scroll interno. */
.hdsl-side { display: flex; flex-direction: column; min-width: 0; min-height: 0; height: 100%; }

.hdsl-side-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 26px 24px 0;
}

.hdsl-side-title {
	color: var(--hdsl-navy);
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
}

.hdsl-count { color: var(--hdsl-text-light); font-size: 14px; white-space: nowrap; }

.hdsl-search-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 18px 24px 22px;
	border-bottom: 1px solid var(--hdsl-border);
}

.hdsl-search { position: relative; flex: 1; min-width: 0; }

.hdsl-search-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: var(--hdsl-text-light);
	pointer-events: none;
}

.hdsl-search-input {
	width: 100%;
	height: 52px;
	padding: 0 18px 0 54px;
	border: 1px solid var(--hdsl-border);
	border-radius: 999px;
	background: var(--hdsl-bg-soft);
	font-size: 15.5px;
	color: var(--hdsl-navy);
	outline: none;
	transition: border-color .15s ease, background .15s ease;
}

.hdsl-search-input::placeholder { color: var(--hdsl-text-light); }
.hdsl-search-input:focus { border-color: var(--hdsl-yellow); background: #fff; }

.hdsl-geo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 52px;
	width: 100%;
	padding: 0 20px;
	border: 0;
	border-radius: 999px;
	background: var(--hdsl-yellow);
	color: var(--hdsl-navy);
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	transition: background .15s ease;
}

.hdsl-geo:hover { background: var(--hdsl-yellow-dark); }
.hdsl-geo[disabled] { opacity: .6; cursor: wait; }
.hdsl-geo svg { width: 20px; height: 20px; flex: 0 0 auto; }

/* ---------- lista ---------- */

.hdsl-list {
	flex: 1;
	min-height: 0; /* stesso motivo di .hdsl-side: altrimenti niente scroll interno. */
	overflow-y: auto;
	overscroll-behavior: contain; /* lo scroll non deve "sfuggire" e muovere la pagina intera. */
	padding: 18px 24px 8px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	scroll-behavior: smooth;
}

.hdsl-list::-webkit-scrollbar { width: 8px; }
.hdsl-list::-webkit-scrollbar-thumb { background: #dfe3e9; border-radius: 8px; }

.hdsl-card {
	border: 1px solid var(--hdsl-border);
	border-radius: var(--hdsl-radius-card);
	background: #fff;
	padding: 14px;
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.hdsl-card:hover,
.hdsl-card.is-hover,
.hdsl-card:focus-visible {
	border-color: var(--hdsl-yellow);
	box-shadow: 0 4px 16px rgba(30, 57, 108, .07);
	outline: none;
}

.hdsl-card.is-active {
	border: 2px solid var(--hdsl-yellow);
	padding: 13px;
	box-shadow: 0 6px 20px rgba(253, 195, 0, .16);
}

.hdsl-card-top { display: flex; gap: 14px; }

.hdsl-card-thumb {
	width: 88px;
	height: 88px;
	flex: 0 0 88px;
	border-radius: 10px;
	object-fit: cover;
	background: var(--hdsl-bg-soft);
	display: block;
}

.hdsl-card-main { flex: 1; min-width: 0; }

.hdsl-card-name-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.hdsl-card-name {
	color: var(--hdsl-navy);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.3;
	margin: 0;
}

.hdsl-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex: 0 0 10px;
	margin-top: 5px;
	background: var(--hdsl-text-light);
}

.hdsl-dot--open { background: var(--hdsl-green); }
.hdsl-dot--appointment { background: var(--hdsl-yellow); }
.hdsl-dot--soon { background: var(--hdsl-red); }

.hdsl-card-type {
	color: var(--hdsl-navy);
	font-weight: 600;
	font-size: 13.5px;
	margin: 5px 0 0;
}

.hdsl-card-address {
	color: var(--hdsl-text-light);
	font-size: 13.5px;
	line-height: 1.55;
	margin: 5px 0 0;
}

.hdsl-card-desc {
	color: var(--hdsl-text);
	font-size: 13px;
	line-height: 1.5;
	margin: 5px 0 0;
}

.hdsl-card-status {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	margin: 8px 0 0;
}

.hdsl-card-status svg { width: 15px; height: 15px; flex: 0 0 15px; }
.hdsl-status--open { color: var(--hdsl-green-text); }
.hdsl-status--appointment { color: var(--hdsl-text); }
.hdsl-status--appointment svg { color: var(--hdsl-yellow); }
.hdsl-status--soon { display:none; }

.hdsl-status-bullet {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: currentColor;
	flex: 0 0 9px;
}

.hdsl-card-distance {
	color: var(--hdsl-navy);
	font-weight: 600;
	font-size: 13px;
	margin: 6px 0 0;
}

/* footer azioni */

.hdsl-card-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 14px 0 0;
}

.hdsl-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border: 0;
	border-radius: 50%;
	background: var(--hdsl-bg-soft);
	/* !important: alcuni temi impongono un colore globale su tutti gli <a>. */
	color: var(--hdsl-navy) !important;
	text-decoration: none;
	transition: background .15s ease;
}

.hdsl-icon-btn:hover { background: #e6e9ee; }
.hdsl-icon-btn svg { width: 18px; height: 18px; }

.hdsl-actions-sep {
	width: 1px;
	height: 26px;
	background: var(--hdsl-border);
	flex: 0 0 1px;
}

.hdsl-btn-directions {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 1;
	min-width: 0;
	height: 44px;
	padding: 10px 18px;
	border: 0;
	border-radius: 999px;
	background: var(--hdsl-yellow);
	/* !important: alcuni temi impongono un colore globale su tutti gli <a>,
	   che altrimenti vince su questa regola e rende il testo invisibile sul giallo. */
	color: var(--hdsl-navy) !important;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	white-space: nowrap;
	transition: background .15s ease;
}

.hdsl-btn-directions:hover { background: var(--hdsl-yellow-dark); }
.hdsl-btn-directions svg { width: 17px; height: 17px; flex: 0 0 17px; }

.hdsl-btn-soon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 46px;
	margin: 14px 0 0;
	border: 0;
	border-radius: 999px;
	background: #f7f8fa;
	color: var(--hdsl-text-light);
	font-size: 15px;
	cursor: default;
}

.hdsl-more {
	display: block;
	width: calc(100% - 48px);
	margin: 10px 24px 22px;
	height: 48px;
	border: 1px solid var(--hdsl-border);
	border-radius: 999px;
	background: #fff;
	color: var(--hdsl-navy);
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: border-color .15s ease;
}

.hdsl-more:hover { border-color: var(--hdsl-yellow); }
.hdsl-more[hidden] { display: none; }

.hdsl-empty,
.hdsl-loading { color: var(--hdsl-text-light); font-size: 14.5px; padding: 6px 2px 18px; }

/* ---------- mappa ---------- */

.hdsl-mapwrap { position: relative; height: 100%; background: #dfe6ea; }
.hdsl-map { position: absolute; inset: 0; }

.hdsl-mapctrl {
	position: absolute;
	top: 18px;
	right: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 3;
}

.hdsl-mapbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 12px;
	background: var(--hdsl-navy);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(30, 57, 108, .28);
	transition: background .15s ease;
}

.hdsl-mapbtn:hover { background: #162b53; }
.hdsl-mapbtn svg { width: 20px; height: 20px; }

/* messaggio di cortesia */

.hdsl-message {
	margin: 0 0 16px;
	padding: 12px 18px;
	border-radius: 14px;
	background: #fff9e3;
	border: 1px solid #f7e3a1;
	color: #7a5c00;
	font-size: 14.5px;
}

.hdsl-message[hidden] { display: none; }

/* ---------- popup mappa (desktop) ---------- */

.hdsl-popup {
	font-family: 'Montserrat', sans-serif !important;
	position: absolute;
	width: 330px;
	background: #fff;
	border-radius: var(--hdsl-radius-card);
	box-shadow: 0 20px 45px rgba(16, 32, 62, .22);
	overflow: hidden;
	z-index: 4;
	transform: translate(-50%, -100%);
	margin-top: -54px;
}

.hdsl-popup-photo { width: 100%; height: 152px; object-fit: cover; display: block; background: var(--hdsl-bg-soft); }
.hdsl-popup-body { padding: 16px 18px 18px; }

.hdsl-popup-name-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }

.hdsl-popup-name { color: var(--hdsl-navy); font-weight: 700; font-size: 18px; margin: 0; line-height: 1.3; }
.hdsl-popup-type { color: var(--hdsl-navy); font-weight: 600; font-size: 13.5px; margin: 5px 0 0; }
.hdsl-popup-address { color: var(--hdsl-text-light); font-size: 13.5px; line-height: 1.55; margin: 6px 0 0; }

.hdsl-popup-hours {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--hdsl-text);
}

.hdsl-popup-hours svg { width: 16px; height: 16px; margin-top: 1px; color: var(--hdsl-green-text); flex: 0 0 16px; }

.hdsl-popup-desc {
	color: var(--hdsl-text);
	font-size: 13.5px;
	line-height: 1.55;
	margin: 8px 0 0;
}
.hdsl-popup-desc:empty { display: none; }

/* Chiusure straordinarie: pallino rosso + testo, come da riferimento grafico */
.hdsl-popup-note {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--hdsl-red);
}
.hdsl-popup-note svg {
	width: 16px;
	height: 16px;
	margin-top: 1px;
	flex: 0 0 16px;
	color: var(--hdsl-red);
}
.hdsl-popup-actions {
	display: flex;
	gap: 8px;
	margin: 12px 0 0;
}

.hdsl-popup-actions .hdsl-icon-btn { width: 38px; height: 38px; flex: 0 0 38px; }
.hdsl-popup-actions .hdsl-icon-btn svg { width: 16px; height: 16px; }

.hdsl-popup .hdsl-btn-directions { width: 100%; margin: 14px 0 0; }

.hdsl-popup-promo { color: var(--hdsl-navy); font-size: 14px; line-height: 1.5; margin: 14px 0 0; }
.hdsl-popup-promo:empty { display: none; }

.hdsl-btn-outline {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 44px;
	margin: 12px 0 0;
	border: 2px solid var(--hdsl-yellow);
	border-radius: 999px;
	background: #fff;
	color: var(--hdsl-navy) !important;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: background .15s ease;
	gap: 8px;
}

.hdsl-btn-outline:hover { background: #fffbec; }

.hdsl-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	color: var(--hdsl-navy);
	font-size: 19px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .16);
	transition: background .15s ease, color .15s ease;
}

.hdsl-popup-close:hover {
	background: var(--hdsl-red);
	color: #fff;
}

/* ---------- tab (solo mobile) ---------- */

.hdsl-tabs { display: none; }

/* ---------- mini card mappa (solo mobile) ---------- */

.hdsl-mini { display: none; }

/* ---------- legenda ---------- */

.hdsl-legend {
	max-width: 900px;
	margin: 34px auto 0;
	display: flex;
	flex-direction: column-reverse;
	gap: 18px;
}

.hdsl-legend-title {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--hdsl-navy);
	font-weight: 700;
	font-size: 16.5px;
}

.hdsl-legend-dot {
  width: 35px;
  height: 50px;
  border-radius: 0;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center !important;
}

.hdsl-legend-dot[style*="1E396C"] {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI1MiIgdmlld0JveD0iMCAwIDQwIDUyIj48cGF0aCBkPSJNMjAgMS41QzEwLjkgMS41IDMuNSA4LjkgMy41IDE4YzAgMTEuMiAxMi45IDI3LjQgMTUuMiAzMC4yLjcuOCAxLjkuOCAyLjYgMEMyMy42IDQ1LjQgMzYuNSAyOS4yIDM2LjUgMTggMzYuNSA4LjkgMjkuMSAxLjUgMjAgMS41eiIgZmlsbD0iIzFFMzk2QyIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utd2lkdGg9IjIuNCIvPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIwIDE4KSBzY2FsZSgxLjMpIHRyYW5zbGF0ZSgtOSAtNy40NSkiIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0xIDMuNCAyLjYuNmgxMi44TDE3IDMuNHYxLjdjMCAuNS0uNC45LS45LjloLS40djcuNmMwIC41LS40LjktLjkuOUgzLjJjLS41IDAtLjktLjQtLjktLjlWNkgxLjlDMS40IDYgMSA1LjYgMSA1LjFWMy40em0zLjEgMi43djcuM2g5LjhWNi4xSDQuMXoiLz48L2c+PC9zdmc+) !important;
}

.hdsl-legend-dot[style*="FDC300"] {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI1MiIgdmlld0JveD0iMCAwIDQwIDUyIj48cGF0aCBkPSJNMjAgMS41QzEwLjkgMS41IDMuNSA4LjkgMy41IDE4YzAgMTEuMiAxMi45IDI3LjQgMTUuMiAzMC4yLjcuOCAxLjkuOCAyLjYgMEMyMy42IDQ1LjQgMzYuNSAyOS4yIDM2LjUgMTggMzYuNSA4LjkgMjkuMSAxLjUgMjAgMS41eiIgZmlsbD0iIzFFMzk2QyIgc3Ryb2tlPSIjRkRDMzAwIiBzdHJva2Utd2lkdGg9IjIuNCIvPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIwIDE4KSBzY2FsZSgxLjMpIHRyYW5zbGF0ZSgtOSAtNy40NSkiIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0xIDMuNCAyLjYuNmgxMi44TDE3IDMuNHYxLjdjMCAuNS0uNC45LS45LjloLS40djcuNmMwIC41LS40LjktLjkuOUgzLjJjLS41IDAtLjktLjQtLjktLjlWNkgxLjlDMS40IDYgMSA1LjYgMSA1LjFWMy40em0zLjEgMi43djcuM2g5LjhWNi4xSDQuMXoiLz48L2c+PC9zdmc+) !important;
}
.hdsl-legend-desc { color: var(--hdsl-text-light); font-size: 15px; line-height: 1.55; margin: 8px 0 0; }

/* ---------- tablet ---------- */

@media (max-width: 1100px) {
	.hdsl-panel { grid-template-columns: 340px 1fr; }
	.hdsl-title { font-size: 30px; }
}

/* ---------- mobile ---------- */

@media (max-width: 860px) {
	.hdsl-title { font-size: 27px; margin-bottom: 14px; }
	.hdsl-subtitle { font-size: 15.5px; }
	.hdsl-head { margin-bottom: 24px; }

	.hdsl-panel {
		grid-template-columns: 1fr;
		height: auto;
		border-radius: 20px;
	}

	.hdsl-side { height: auto; }

	/* tab */
	.hdsl-tabs {
		display: grid;
		grid-template-columns: 1fr 1fr;
		border-bottom: 1px solid var(--hdsl-border);
	}

	.hdsl-tab {
		border: 0;
		background: none;
		padding: 20px 8px 16px;
		font-size: 15px;
		font-weight: 600;
		letter-spacing: .06em;
		text-transform: uppercase;
		color: var(--hdsl-text-light);
		cursor: pointer;
		position: relative;
		/* iOS/Android mostrano un flash rosso/grigio di default al tap: lo sostituiamo
		   col nostro giallo, altrimenti il tab sembra "diventare rosso" al click. */
		-webkit-tap-highlight-color: transparent;
	}

	.hdsl-tab:active { background: rgba(253, 195, 0, .12); }

	.hdsl-tab.is-active { color: var(--hdsl-navy); font-weight: 700; }

	.hdsl-tab.is-active::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: -1px;
		height: 3px;
		background: var(--hdsl-yellow);
		border-radius: 3px 3px 0 0;
	}

	.hdsl-side-head { display: none; }

	/* search + bottone posizione affiancati */
	.hdsl-search-row {
		flex-direction: row;
		align-items: center;
		gap: 12px;
		padding: 18px 16px;
		border-bottom: 0;
	}

	.hdsl-search-input { height: 54px; font-size: 16px; }

	.hdsl-geo {
		width: 56px;
		flex: 0 0 56px;
		height: 56px;
		padding: 0;
		border-radius: 14px;
	}

	.hdsl-geo-label { display: none; }
	.hdsl-geo svg { width: 24px; height: 24px; }

	.hdsl-list { padding: 4px 16px 8px; max-height: none; overflow: visible; }
	.hdsl-more { width: calc(100% - 32px); margin: 12px 16px 18px; }

	/* switch viste */
	.hdsl-mapwrap { display: none; min-height: 0; height: 440px; position: relative; }
	.hdsl-view-map .hdsl-mapwrap { display: block; }
	.hdsl-view-map .hdsl-list,
	.hdsl-view-map .hdsl-more { display: none; }

	/* controlli mappa bianchi su mobile (come da mockup) */
	.hdsl-mapbtn {
		background: #fff;
		color: var(--hdsl-navy);
		border-radius: 14px;
		width: 46px;
		height: 46px;
		box-shadow: 0 4px 16px rgba(16, 32, 62, .18);
	}

	.hdsl-mapbtn:hover { background: #f7f8fa; }
	.hdsl-mapbtn--locate,
	.hdsl-mapbtn--layers { display: none; }

	/* popup desktop off, mini card on */
	.hdsl-popup { display: none !important; }

	.hdsl-mini {
		display: none;
		position: absolute;
		left: 14px;
		right: 14px;
		bottom: 16px;
		background: #fff;
		border-radius: var(--hdsl-radius-card);
		box-shadow: 0 12px 30px rgba(16, 32, 62, .20);
		padding: 14px;
		z-index: 3;
	}

	.hdsl-mini.is-visible { display: block; }
	.hdsl-mini-top { display: flex; gap: 14px; }

	.hdsl-mini-thumb {
		width: 84px;
		height: 84px;
		flex: 0 0 84px;
		border-radius: 10px;
		object-fit: cover;
		background: var(--hdsl-bg-soft);
	}

	.hdsl-mini-type { color: var(--hdsl-navy); font-weight: 700; font-size: 15.5px; margin: 0; line-height: 1.3; }
	.hdsl-mini-address { color: var(--hdsl-text-light); font-size: 13px; line-height: 1.5; margin: 6px 0 0; }

	.hdsl-mini-foot {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin: 12px 0 0;
	}

	.hdsl-badge {
		display: inline-flex;
		align-items: center;
		padding: 5px 14px;
		border-radius: 999px;
		background: #eafaf0;
		color: var(--hdsl-green-text);
		font-size: 12.5px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: .04em;
	}

	.hdsl-badge--soon { background: #fdeceb; color: var(--hdsl-red); }
	.hdsl-badge--appointment { background: #fff7e0; color: #8a6a00; }

	.hdsl-mini-link {
		color: var(--hdsl-yellow-dark);
		font-weight: 700;
		font-size: 14px;
		text-decoration: none;
		background: none;
		border: 0;
		cursor: pointer;
		white-space: nowrap;
	}

	.hdsl-legend { margin-top: 26px; }
	.hdsl-legend-title { font-size: 15.5px; }
	.hdsl-legend-desc { font-size: 14.5px; }

	.hdsl-card-thumb { width: 78px; height: 78px; flex: 0 0 78px; }
	.hdsl-card-name { font-size: 16px; }
}

@media (max-width: 420px) {
	.hdsl-card-actions { gap: 8px; }
	.hdsl-icon-btn { width: 38px; height: 38px; flex: 0 0 38px; }
	.hdsl-btn-directions { font-size: 14px; padding: 0 12px; }
}
@media (max-width: 860px) {
    .hdsl-mini-top {
        display: flex;
        gap: 14px;
        flex-direction: column !important;
    }
}

@media (max-width: 860px) {
    .hdsl-mini-thumb {
        width: 100%;
        max-height: 120px !important;
        flex: 0 0 84px;
        border-radius: 10px;
        object-fit: cover;
        background: var(--hdsl-bg-soft);
    }
}