/**
 * ELBA — carduri de produs pe HOME (grila JetWooBuilder), stil e-commerce corporate:
 * card alb cu bordură, radius 14 (ca tile-urile din arhive), fără umbre,
 * preț albastru cu zecimale în superscript, „Vezi produsul" la hover.
 */

.jet-woo-products__item.elba-hp-card {
	padding: 7px;
	box-sizing: border-box;
	cursor: pointer;
}
.elba-hp-card .jet-woo-products__inner-box {
	background: #fff;
	border: 1px solid #e7edf3;
	border-radius: 14px;
	padding: 18px 14px 16px;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: border-color .16s ease, transform .16s ease;
}
.elba-hp-card:hover .jet-woo-products__inner-box {
	border-color: #b9d2e8;
	transform: translateY(-2px);
}

/* Imaginea: mai mare, aerisită, fără dungi. */
.elba-hp-card .jet-woo-product-thumbnail {
	margin: 0 0 12px;
}
.elba-hp-card .jet-woo-product-thumbnail img {
	width: 100%;
	max-width: 210px;
	height: auto !important;
	margin: 0 auto;
	display: block;
}

/* Titlul: corporate, centrat, 2 rânduri max. */
.elba-hp-card .jet-woo-product-title,
.elba-hp-card .jet-woo-product-title a {
	color: #0f1a24 !important;
	font-weight: 700;
	font-size: 14.5px;
	line-height: 1.35;
	text-align: center;
	text-decoration: none;
}
.elba-hp-card:hover .jet-woo-product-title a { color: #005AA6 !important; }

/* Ordinea vizuală în card (Jet pune `order` pe elementele lui; fără asta
   prețul urcă deasupra imaginii): imagine → titlu → PREȚ SUB TITLU. */
.elba-hp-card .jet-woo-products__inner-box > * { order: 5; }
.elba-hp-card .jet-woo-product-thumbnail { order: 1 !important; }
.elba-hp-card .jet-woo-product-title { order: 2 !important; }
.elba-hp-card .elba-hp-price { order: 99 !important; }

/* Titlul pe max. 2 rânduri, înălțime egală între carduri. */
.elba-hp-card .jet-woo-product-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.7em;
}

/* Rândul de preț injectat. */
.elba-hp-price {
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px solid #f0f4f8;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-height: 52px;
	justify-content: center;
}
.elba-hp-price__from {
	color: #64748b;
	font-size: 12px;
}
.elba-hp-price > b {
	color: #005AA6;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
}
.elba-hp-price sup.elba-dec {
	font-size: .62em;
	top: -.42em;
	position: relative;
	line-height: 0;
}
.elba-hp-price__cerere {
	color: #334155;
	font-size: 13.5px;
	font-weight: 600;
}
.elba-hp-price__go {
	color: #94a3b8;
	font-size: 12px;
	font-weight: 600;
	opacity: 0;
	transition: opacity .16s ease, color .16s ease;
}
.elba-hp-card:hover .elba-hp-price__go {
	opacity: 1;
	color: #005AA6;
}

/* Pe touch (fără hover) linkul e mereu vizibil, discret. */
@media (hover: none) {
	.elba-hp-price__go { opacity: 1; }
}

/* Mobil: carduri mai compacte. */
@media (max-width: 767px) {
	.jet-woo-products__item.elba-hp-card { padding: 5px; }
	.elba-hp-card .jet-woo-products__inner-box { padding: 14px 10px 12px; border-radius: 12px; }
	.elba-hp-card .jet-woo-product-title,
	.elba-hp-card .jet-woo-product-title a { font-size: 13px; }
	.elba-hp-price > b { font-size: 15px; }
}

/* Mobil: 2 carduri pe rând (Jet punea 3 → 117px, înghesuit). */
@media (max-width: 767px) {
	.jet-woo-products.col-row { flex-wrap: wrap; }
	.jet-woo-products__item.elba-hp-card {
		flex: 0 0 50% !important;
		max-width: 50% !important;
		width: 50% !important;
	}
	.elba-hp-card .jet-woo-product-thumbnail img { max-width: 150px; }
	.elba-hp-price { min-height: 46px; gap: 2px; }
	.elba-hp-price__from { font-size: 11px; }
	.elba-hp-price__go { display: none; } /* pe mobil cardul întreg e tap-abil */
}

/* Incadrare UNIFORMA imagine produs: box fix + contain -> randuri perfect aliniate (corporate). */
.elba-hp-card .jet-woo-product-thumbnail{ height:176px; display:flex; align-items:center; justify-content:center; margin:0 0 14px; }
.elba-hp-card .jet-woo-product-thumbnail img{ width:auto !important; max-width:100% !important; max-height:176px !important; height:auto !important; object-fit:contain; }
@media (max-width:767px){
.elba-hp-card .jet-woo-product-thumbnail{ height:132px; margin:0 0 10px; }
.elba-hp-card .jet-woo-product-thumbnail img{ max-height:132px !important; }
}
