/* ================================================================
   Puentec Tiendas — Frontend (uses same classes as theme template)
   ================================================================ */

.tiendas-container {
	max-width: 1200px;
	margin: 0 auto;
}

.tienda-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tienda-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.tienda-image {
	padding: 24px;
}

.tienda-titulo {
	font-size: 22px;
	font-weight: 700;
	color: #333;
	margin: 0 0 8px;
}

.tienda-titulo-decor {
	width: 50px;
	height: 3px;
	background: #e67e22;
	border-radius: 2px;
	margin-bottom: 16px;
}

.tienda-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
	max-height: 300px;
}

.tienda-info {
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.tienda-texto {
	margin-bottom: 20px;
}

.tienda-item {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.6;
	color: #444;
}

.tienda-label {
	color: #333;
}

.tienda-value a {
	color: #e67e22;
	text-decoration: none;
}

.tienda-value a:hover {
	text-decoration: underline;
}

/* Map */
.tienda-mapas {
	margin-top: auto;
}

.mapa-iframe {
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 12px;
}

.mapa-iframe iframe {
	display: block;
	width: 100%;
	border: 0;
}

.waze-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	background: #33ccff;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: background 0.2s;
}

.waze-link:hover {
	background: #00aadd;
	color: #fff;
	text-decoration: none;
}

.waze-link .dashicons {
	font-size: 18px;
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 768px) {
	.tienda-content {
		grid-template-columns: 1fr;
	}

	.tienda-image,
	.tienda-info {
		padding: 16px;
	}

	.tienda-titulo {
		font-size: 18px;
	}
}
