/************************* productsSection *************************/
.productsSection {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 50px 15px;
	justify-content: center;
	padding: 50px 0;
	width: 100%;
	margin: auto;
}

.productItem {
	border-radius: 30px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	background: rgba(194, 174, 151, 1);
	padding: 10px;
	color: #333;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.productItem a {
	color:#333;
}

.productItem header {
	content: "SPECIAL";
	display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
	position: absolute;
	top: -19px;
	right: 50%;
	transform: translateX(50%);
	width: 140px;
	height: 20px;
	z-index: 0;
	font-size: 0.6rem;
	font-weight: bold;
	font-variation-settings: "wght" 700;
	text-align: center;
	color: #000;
	mask-image: url("../../image/product-top.svg");
	background: rgba(194, 174, 151, 1);
}

.productItem footer {
	content: " ";
	display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
	position: absolute;
	right: 50%;
	bottom: -19px;
	transform: translateX(50%);
	width: 140px;
	height: 20px;
	z-index: 0;
	font-size: 0.7rem;
	font-weight: bold;
	font-variation-settings: "wght" 700;
	text-align: center;
	color: #000;
	mask-image: url("../../image/product-bottom.svg");
	background: rgba(194, 174, 151, 1);
}

.productItem main {
	position: relative;
}

.productItem main img {
	width: 100%;
    height: 170px;
	object-fit: cover;
	border-radius: 20px;
	margin: auto;
	object-fit: cover;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	border: 1px solid #a7866c;
	margin-bottom: 5px;
}

.productItem main h2 {
	font-size: 12px;
    font-weight: bold;
	font-variation-settings: "wght" 700;
    height: 40px;
    overflow: hidden;
	margin: auto;
}

.productItem main div span {
	display: flex;
    gap: 5px;
    align-items: stretch;
    font-size: 0.9rem;
    align-content: center;
	justify-content: center;
}

@media (max-width:900px) {
	.productsSection {
		grid-template-columns: repeat(2, 1fr);
    	padding: 50px 0;
   	 	width: 100%;
		align-items: center;
        justify-content: flex-start;
	}

	.productItem {
		width: 100%;
    	flex-shrink: 1;
	}

	.productItem main img {
		width: 100%;
		height: 150px;
	}

	.productItem main h2 {
		font-size: 11px;
	}


	
}