.product-panel {
	margin-top: 0pt;
	max-width: 960pt;
}

.product-card {
	box-shadow: 0 2pt 8pt rgba(0, 0, 0, 0.1);
	border-radius: 0;
	cursor: pointer;
}

.product-card > img {
	height: 100pt;
	object-fit: contain;
	margin-bottom: 12pt;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.product-card .price {
	font-family: 'DM Sans';
	font-size: 16pt;
	font-weight: 500;
	color: var(--red);
}
.product-card .price.discount{
	color: var(--red);
}
.product-card .price.discount .old-price{
	color: var(--gray-dark);
	text-decoration: line-through;
}
.product-card .price.discount .old-price:lang(en){
	margin-right: 8px;
}
.product-card .price.discount .old-price:lang(ar){
	margin-left: 8px;
}

.product-card > banner {
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	position: relative;
}

.product-card img.product-img {
	width: 100%;
	object-fit: cover;
	transform: translateY(0);
	transition-property: transform;
	transition-duration: 0.25s;
	transition-timing-function: ease-out;
}

.product-card > content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 8pt;
}

.product-card > content .promotion-tags{
	width: 100%;
}
.layout-right .product-card > content .promotion-tags{
	text-align: right;
}
.layout-left .product-card > content .promotion-tags{
	text-align: left;
}


.product-card > content name {
	overflow: hidden;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
	padding-right: 8pt;
	width: 100%;
}

.product-card > .price {
	white-space: nowrap;
	font-weight: 500;
}

.product-card .overlay {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: none;
	transition-property: opacity;
	transition-duration: 0.25s;
	background: radial-gradient(circle, rgba(255,255,255,0) 50%, rgba(96, 125, 139, 0.25) 100%);
	opacity: 0;
}

.product-card .image-unavailable {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: rgba(96, 125, 139, 0.5);
	background: radial-gradient(circle, rgba(255,255,255,0) 50%, rgba(96, 125, 139, 0.25) 100%);
	background: rgba(96, 125, 139, 0.05);
}

.product-card banner:hover .overlay {
	opacity: 1;
}

.product-card banner:hover img.product-img {
	transform: scale(1.05);
}

.panel {
	overflow: hidden;
	box-shadow: 0 2pt 8pt rgba(0, 0, 0, 0.1);
	background-color: var(--card-background);
	margin-bottom: 30pt;
	color: var(--home-product-card-font-color);
}

.panel.round{
	border-radius: var(--card-round);
}
.panel.sharp{
	border-radius: var(--card-sharp);
}

.panel .icon {
	width: 18pt;
	position: relative;
	transform: scale(1);
	cursor: pointer;
}

.panel .icon:hover {
	transform: scale(1.25);
}

.panel .icon:active {
	transform: scale(1);
}

.product-card hr {
	width: 100%;
	margin: 4pt 0 0pt;
	border-color: var(--product-card-seperator);
}

.product-panel .title {
	margin-bottom: 16pt !important;
	color: #37474f;
}

@media screen and (min-width: 280px) and (max-width: 577px) {
	.product-card-container{
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.product-card-container .product-card > content{
		font-size: 13px;
	}
	.product-card-container .product-card > content name{
		-webkit-line-clamp: 2;
	}
	.product-card-container .product-card .price{
		font-size: unset;
	}
}

@media screen and (min-width: 425px) and (max-width: 577px) {
	.product-card-container .product-card > content{
		font-size: 14px;
	}
	.product-card-container .product-card > content name{
		-webkit-line-clamp: 1;
	}
	.product-card-container .product-card .price{
		font-size: unset;
	}
}

@media screen and (min-width: 578px) and (max-width: 768px) {
	.product-card-container .product-card > content{
		font-size: 14px;
	}
	.product-card-container .product-card .price{
		font-size: unset;
	}
}
@media screen and (max-width: 768px) {
	.product-card-container,
	.product-panel{
		padding-left: 10px;
		padding-right: 10px;
	}
}