/**
 * ویجت المنتور — شبکه محصولات
 */

.ns-el-product-grid {
	width: 100%;
}

.ns-el-product-grid__list {
	display: grid;
	list-style: none;
	margin: 0 !important;
	padding: 0;
	gap: 1rem;
}

.ns-el-product-grid__list::before,
.ns-el-product-grid__list::after {
	display: none !important;
}

.ns-el-product-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	margin: 0 !important;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
	position: relative;
	width: auto !important;
	float: none !important;
}

.ns-el-product-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
	border-color: rgba(239, 57, 78, 0.18);
}

.ns-el-product-card.is-out-of-stock {
	opacity: 0.92;
}

.ns-el-product-card__media {
	position: relative;
	margin-bottom: 0.65rem;
}

.ns-el-product-card__media .nextshop-wishlist-btn--loop {
	top: 0.45rem;
	inset-inline-start: 0.45rem;
	z-index: 3;
}

.ns-el-product-card__thumb {
	display: block;
	overflow: hidden;
	line-height: 0;
}

.ns-el-product-card__thumb img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
	transition: transform 0.35s ease;
}

.ns-el-product-card:hover .ns-el-product-card__thumb img {
	transform: scale(1.04);
}

.ns-el-product-card__badge {
	position: absolute;
	top: 0.45rem;
	inset-inline-start: 0.45rem;
	z-index: 2;
	padding: 0.2rem 0.5rem;
	border-radius: 6px;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.3;
	white-space: nowrap;
}

.ns-el-product-card__badge--sale {
	background: #ef394e;
	color: #fff;
}

.ns-el-product-card__badge--oos {
	background: #64748b;
	color: #fff;
	inset-inline-start: auto;
	inset-inline-end: 0.45rem;
}

.ns-el-product-card__title {
	margin: 0 0 0.4rem;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.ns-el-product-card__title a {
	color: inherit;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ns-el-product-card__title a:hover {
	color: #ef394e;
}

.ns-el-product-card__price {
	text-align: center;
	margin-bottom: 0.55rem;
	font-size: 0.88rem;
	line-height: 1.4;
}

.ns-el-product-card__price del {
	opacity: 0.55;
	font-size: 0.82em;
	margin-inline-end: 0.25rem;
}

.ns-el-product-card__price ins {
	text-decoration: none;
	font-weight: 800;
}

.ns-el-product-card__btn {
	display: block !important;
	width: 100%;
	text-align: center;
	margin-top: auto !important;
	padding: 0.5rem 0.65rem !important;
	font-size: 0.82rem !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	border-radius: 10px !important;
	background: #ef394e;
	color: #fff;
	border: 0 !important;
	transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.ns-el-product-card__btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.ns-el-product-card.is-out-of-stock .ns-el-product-card__price {
	opacity: 0.75;
}

@media (max-width: 767px) {
	.ns-el-product-card__title {
		font-size: 0.8rem;
	}
}
