/* style.css */
.imghead{
width:100%;	
height:200px;
/*background:url("img/billboard-bg.png");*/
text-align:center;
font-weight:bold;
font-size:30px;
padding-top:80px;
font-family:poppins;
color:#000;
background: url(../img/billboard-bg.png) center center no-repeat;
    background-size: cover;
}
.container {
	width: 100%;
	/*min-height: 100vh;*/
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	text-align:center;
	
}

del {
	color: red;
}

.product-wrapper {
	width: calc(20% - 20px);
	background: white;
	overflow: hidden;
	border-radius: 10px 10px 10px 10px;
	transform: scale(0.95);
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.product {
	width: 100%;
}

.product .img {
	height: 80%;
	/*width: 100%;*/
}

.product .img img {
	height: 100%;
	width: 50%;
	transition: all 0.5s;
	object-fit: contain;
}

.product .info {
	width: 100%;
	height: 20%;
	transition: transform 0.5s;
	display: flex;
}


@media screen and (max-width:1200px) {
	.product-wrapper {
		width: calc(33.33% - 20px);
	}

	.container {
		align-content: start;
	}
}

@media screen and (max-width:950px) {
	.product-wrapper {
		width: calc(50% - 20px);
	}
}

@media screen and (max-width:600px) {
	.product-wrapper {
		width: 100%;
	}
}

@media screen and (max-width:350px) {
	.product-wrapper {
		height: auto;
	}

	.info .details {
		width: 100%;
	}

	.info {
		flex-direction: column;
	}

}
