:root{
  --Dark-cyan: hsl(158, 36%, 37%);
  --Cream: hsl(30, 38%, 92%);
  --dark-blue: hsl(212, 21%, 14%);
  --grayish-blue: hsl(228, 12%, 48%);
  --white: hsl(0, 0%, 100%);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
  display: flex;
  padding: 100px;

  align-items: center;
  align-content: center;
  justify-content: center;

  background-color: hsl(30, 38%, 92%);
}


.card{
  display: flex;
  width: 600px;
  height: 450px;

  border-radius: 15px;
  background-color: var(--white);

  font-family: 'Montserrat', sans-serif;
}
.card__img{
  height: 100%;
  width: 50%;

  background-image: url(../images/image-product-desktop.jpg);
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 15px 0 0 15px;
}
.card__item{ 
  width: 50%;
  height: 100%;
  padding: 25px;
  margin-left: auto;
}
.card__categories{
  margin-bottom: 20px;
  
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--grayish-blue);
}
.card__title{
  margin-bottom: 20px;

  font-size: 32px;
  font-weight: 700;
  font-family: 'Fraunces', serif;
}
.card__description{
  margin-bottom: 20px;

  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--grayish-blue);
}

/* price */
.price{
  display: flex;
  align-items: center;
  margin-bottom: 20px;

  font-family: 'Fraunces', serif;
}
.price__discount{
  font-weight: 700; 
  font-size: 35px;
  color: var(--Dark-cyan);
}
.price__cell{
  margin-left: 20px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: line-through;
  color: var(--grayish-blue); 
}

/* btn */
.btn{
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  color: var(--white);
  border: 0;
  border-radius: 10px;
  background-color: var(--Dark-cyan);
  border-color: var(--white);

  transition: background-color .2s ease;
}
.btn__img{
  display: block;
  width: 15px;
  height: 20px;
  margin-right: 10px;  

  background-image: url(../images/icon-cart.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  background-color: transparent;
  background-size: 15px;
}
.btn:hover{
  background-color: hsl(157, 35%, 16%);
}