/*
 * WHT Mijas Mobile Location Fix 1.0.2
 *
 * Scope:
 * - Mijas Vineyard Tasting only.
 * - Mobile only (<= 720 px).
 * - Existing "Getting there" panel only.
 */

.wht-mijas-mobile-location {
	display: none;
}

@media (max-width: 720px) {
	.wht-vineyard-arrival-panel__inner > .wht-mijas-mobile-location {
		display: grid;
		grid-column: 1 / -1;
		grid-template-columns: minmax(0, 1fr);
		gap: 8px;
		width: 100%;
		min-width: 0;
		margin-top: 6px;
		padding-top: 18px;
		border-top: 1px solid rgba(89, 111, 67, 0.20);
	}

	.wht-mijas-mobile-location__label {
		margin: 0;
		color: var(--wht-olive-deep, #40562f);
		font-size: 0.68rem;
		font-weight: 800;
		letter-spacing: 0.10em;
		line-height: 1.3;
		text-transform: uppercase;
	}

	.wht-mijas-mobile-location__place {
		margin: 0;
		color: var(--wht-ink, #24231e);
		font-family: var(--wht-serif, Georgia, serif);
		font-size: clamp(1.25rem, 6.2vw, 1.65rem);
		font-weight: 700;
		line-height: 1.12;
		text-wrap: balance;
	}

	.wht-mijas-mobile-location__distance {
		max-width: 34rem;
		margin: 0;
		color: var(--wht-muted, #66675f);
		font-size: 0.92rem;
		line-height: 1.55;
	}

	.wht-mijas-mobile-location__fare {
		display: grid;
		gap: 4px;
		width: 100%;
		min-width: 0;
		margin: 2px 0 0;
		padding: 13px 14px;
		border: 1px solid rgba(89, 111, 67, 0.20);
		border-radius: 12px;
		background: rgba(238, 242, 233, 0.72);
	}

	.wht-mijas-mobile-location__fare-label,
	.wht-mijas-mobile-location__fare-value,
	.wht-mijas-mobile-location__fare-support {
		margin: 0;
	}

	.wht-mijas-mobile-location__fare-label {
		color: var(--wht-olive-deep, #40562f);
		font-size: 0.67rem;
		font-weight: 800;
		letter-spacing: 0.08em;
		line-height: 1.3;
		text-transform: uppercase;
	}

	.wht-mijas-mobile-location__fare-value {
		color: var(--wht-ink, #24231e);
		font-family: var(--wht-serif, Georgia, serif);
		font-size: clamp(1.16rem, 5.5vw, 1.42rem);
		font-weight: 700;
		line-height: 1.14;
	}

	.wht-mijas-mobile-location__fare-support {
		color: var(--wht-muted, #66675f);
		font-size: 0.84rem;
		line-height: 1.45;
	}

	.wht-mijas-mobile-location__map {
		display: inline-flex;
		min-height: 46px;
		width: fit-content;
		max-width: 100%;
		align-items: center;
		justify-content: center;
		gap: 8px;
		margin-top: 5px;
		padding: 10px 15px;
		border: 1px solid rgba(89, 111, 67, 0.28);
		border-radius: 999px;
		background: rgba(255, 253, 248, 0.82);
		color: var(--wht-olive-deep, #40562f);
		font-size: 0.84rem;
		font-weight: 800;
		line-height: 1.25;
		text-align: center;
		text-decoration: none;
	}

	.wht-mijas-mobile-location__map:hover,
	.wht-mijas-mobile-location__map:focus-visible {
		border-color: currentColor;
		background: #fffdf8;
		color: var(--wht-navy, #071c2c);
	}

	.wht-mijas-mobile-location__map:focus-visible {
		outline: 3px solid rgba(95, 122, 63, 0.28);
		outline-offset: 3px;
	}
}

@media (max-width: 380px) {
	.wht-mijas-mobile-location__map {
		width: 100%;
	}
}

@media print {
	.wht-mijas-mobile-location {
		display: none !important;
	}
}
