@charset "utf-8";

body{
	margin:0px;
	padding: 0px;
	background: #fff;
}

a{
	text-decoration: none;
}




.box{
	width: 350px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.0);
	border-radius: 0px;
	overflow: hidden;
	margin: 10px;
}

.slide-img{
	height: 450px;
	position: relative;
}


.slide-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-sizing: border-box;
}

.detail-box{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 10px;
	box-sizing: border-box;
	font-family: helvetica;
}

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

.type a{
	color: #222222;
	margin: 0px 0px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 3px;
}

.type span {
	color:grey;
	/*color: rgba(26,26,26,0.5);*/
}

.price {
	color: red;
	font-weight: 600;
	font-size: 1.1rem;
	font-family: poppins;
	letter-spacing: 0.5px;
}

.price a{
	color:red;
}


.overlay {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	background-color: rgba(92,95,236,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content:center;

}


.buy-btn{
	width: 100px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	color: #252525;
	font-weight: 700;
	letter-spacing: 1px;
	font-family: calibri;
	border-radius: 20px;
	box-shadow: 2px 2px 30px rgba(0,0,0,0.2);
	margin: 10px 10px 10px 10px;

}


.buy-btn:hover{
	color: #fff;
	background-color: #f15fa3;
	transition: all ease 0.3s;
}

.overlay{
	visibility: hidden;
}

.slide-img:hover .overlay {
	visibility: visible;
	animation: fade 0.5s;
}


@keyframes fade{
	0%{
		opacity: 0;
	}

	100%{
		opacity: 1;
	}
}

.slider {
	width: 100%;
	
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}



@media screen and (max-width: 600px) {
  .box {
    width: 250px;
    height: 407px;
    
	box-shadow: 2px 2px 10px rgba(0,0,0,0.0);
	border-radius: 0px;
	overflow: hidden;
	margin: 1px;
  }

  .slide-img{
	height: 350px;
	position: relative;
}


.slide-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-sizing: border-box;
}

.buy-btn{
	width: 80px;
	height: 25px;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	color: #252525;
	font-weight: 400;
	letter-spacing: 1px;
	font-family: calibri;
	border-radius: 15px;
	box-shadow: 2px 2px 30px rgba(0,0,0,0.2);

}

.detail-box{
	width: 100%;
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	align-items: center;
	padding: 5px 5px;
	box-sizing: border-box;
	font-family: helvetica;
}



}




































