/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0.0
*/

/* =========================
   VENDEDOR / TIENDA
========================= */

.mc-vendor-card {
	margin: 28px 0 18px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid #dfe6ec;
	border-radius: 18px;
	box-shadow: none;
}

.mc-vendor-label {
	margin-bottom: 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7f8b96;
}

.mc-vendor-inner {
	display: flex;
	align-items: center;
	gap: 14px;
}

.mc-vendor-logo {
	flex: 0 0 58px;
}

.mc-vendor-logo a {
	display: block;
	line-height: 0;
}

.mc-vendor-logo img {
	width: 58px;
	height: 58px;
	object-fit: cover;
	border-radius: 50%;
	border: none;
	display: block;
}

.mc-vendor-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.mc-vendor-name {
	margin: 0 0 4px;
	line-height: 1;
}

.mc-vendor-name a {
	font-size: 24px;
	font-weight: 700;
	color: #1c2a38;
	text-decoration: none;
}

.mc-vendor-name a:hover {
	color: #0f4c6e;
}

.mc-vendor-rating {
	margin: 0 0 12px;
	font-size: 13px;
	color: #4b5563;
}

.mc-vendor-actions {
	display: flex;
	align-items: center;
}

.mc-vendor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 18px;
	background: #0f4c6e;
	color: #fff;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.mc-vendor-button:hover {
	background: #0c3d58;
	color: #fff;
	transform: translateY(-1px);
}

/* limpia output de rating de WCFM */
.mc-vendor-rating .wcfmmp-store-rating {
	margin: 0 !important;
	float: none !important;
	display: block !important;
	font-size: 13px !important;
	color: #4b5563 !important;
}

.mc-vendor-rating .wcfmmp-store-rating span {
	float: none !important;
}

.mc-vendor-rating .star-rating {
	margin: 0 !important;
}

/* mobile */
@media (max-width: 767px) {
	.mc-vendor-card {
		padding: 16px;
		border-radius: 14px;
	}

	.mc-vendor-inner {
		align-items: flex-start;
	}

	.mc-vendor-logo {
		flex: 0 0 50px;
	}

	.mc-vendor-logo img {
		width: 50px;
		height: 50px;
	}

	.mc-vendor-name a {
		font-size: 20px;
	}
}



