/* Tarjeta producto Llantas Web — minimalista, botón rojo. */

.llw-product-card {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100%;
}

.llw-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.llw-card:hover {
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.llw-card__brand {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	max-height: 28px;
	max-width: 88px;
	width: auto;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.92);
	padding: 4px 6px;
	border-radius: 6px;
}

.llw-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	background: #f8fafc;
	padding: 1.25rem;
	text-decoration: none !important;
}

.llw-card__image:hover,
.llw-card__title a:hover {
	text-decoration: none !important;
	color: inherit;
}

.llw-card__img {
	max-height: 100%;
	width: auto !important;
	height: auto !important;
	object-fit: contain;
	margin: 0 auto;
}

.llw-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 0.85rem 1rem 1rem;
	flex: 1 1 auto;
}

.llw-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	align-self: flex-start;
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.2;
	background: #e2e8f0;
	color: #334155;
}

.llw-card__badge--excelente {
	background: #fef3c7;
	color: #92400e;
}

.llw-card__badge--muy-bueno {
	background: #f1f5f9;
	color: #475569;
}

.llw-card__badge-icon {
	font-size: 0.85rem;
	line-height: 1;
}

.llw-card__title {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.35;
	color: #0f172a;
}

.llw-card__title a {
	color: inherit !important;
	text-decoration: none !important;
}

.llw-card__price {
	font-size: 1.35rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.1;
}

.llw-card__price del {
	opacity: 0.45;
	font-size: 0.9rem;
	font-weight: 600;
	margin-right: 0.35rem;
}

.llw-card__price ins {
	text-decoration: none;
}

.llw-card__eu {
	display: flex;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.llw-card__eu-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 26px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	color: #fff;
}

.llw-card__eu-item--fuel {
	background: #facc15;
	color: #713f12;
}

.llw-card__eu-item--wet {
	background: #3b82f6;
}

.llw-card__eu-item--noise {
	background: #22c55e;
}

.llw-card__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: 0.35rem;
}

.llw-card__cart {
	flex: 1 1 auto;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 42px;
	padding: 0.55rem 1rem !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #e11d48 !important;
	color: #fff !important;
	font-size: 0.92rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	box-shadow: 0 4px 14px rgba(225, 29, 72, 0.28);
	transition: background 0.2s ease, transform 0.2s ease;
}

.llw-card__cart:hover,
.llw-card__cart:focus {
	background: #be123c !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.llw-card__cart--disabled {
	background: #94a3b8 !important;
	box-shadow: none;
}

.llw-card__cart-icon {
	display: inline-flex;
}

.llw-card__wish {
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border: 1px solid #e2e8f0;
	border-radius: 50%;
	background: #fff;
	color: #64748b;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.llw-card__wish:hover,
.llw-card__wish.is-active {
	color: #e11d48;
	border-color: #fecdd3;
	background: #fff1f2;
}

.llw-card__wish.is-active svg path {
	fill: #e11d48;
	stroke: #e11d48;
}

/* Anular estilos WooCommerce dentro de nuestras grillas */
.yantas-carousel__products .llw-product-card,
.yantas-destacados__grid .llw-product-card,
.yantas-catalog__grid .llw-product-card {
	float: none !important;
	clear: none !important;
}

.yantas-carousel__products .llw-card__price .amount,
.yantas-destacados__grid .llw-card__price .amount,
.yantas-catalog__grid .llw-card__price .amount {
	color: inherit;
}
