/*font-family: "Montserrat", sans-serif;
  --second-family: "Playfair Display", sans-serif;*/
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
  
  body {
    font-family: 'Montserrat', sans-serif;
   
  }
     

  .product{
    padding-top: 60px;
    padding-bottom: 90px;
    
  }
.container{
    width: 1140px;
    padding:0 15px;
    margin:0 auto;
}
 

  .product__row{
    display: flex;
    justify-content: space-between;
  }

  .product__image{
    padding-top: 30px;
  }

  .img{
    display: block;
    max-width: 100%;
    height: auto;
  }

  .product__desc{
    width: 540px;
  }
  
 .product__title { margin-bottom: 15px;}

 .main-title{
    font-size:28px;
    font-weight: 700;
    line-height: 1.3;

    } 

 .product__price {
        line-height:1.2; 
        font-size: 24px;
        color:#7E9BBD;
        font-weight: 600;
        margin-bottom: 32px;
     }

 .product__price span {
        font-size: 16px;
 }

 .product__button { 
    margin-bottom: 40px;
    
}

.button{
    display:inline-block;
    height: 46px;
    background-color:rgba(255,255,255,0.3);
    border: 3px solid rgba(126,155,189,0.3);
    border-radius:6px;
    padding-left:17px;
    padding-right:17px;
    font-size: 16px;
    font-weight: 600; 
    
    line-height:40px;
    color:#7E9BBD;
    text-decoration:none;

}

 .button--dark {
    background-color: black;
    border: none;
    color:#fff;
    
    font-weight: 700; 
    line-height:  46px;
    padding-left: 20px;
    padding-right: 20px;
 }  

   
 .product__article {
    font-family: "Playfair Display", sans-serif;
    font-size:18px;
    
    line-height: 1.7;
    
  }

.product__article p{
    margin-bottom: 15px;
}
.product__article p:last-child{
    margin-bottom: 0px;
}
.link{
    color:black;
    text-decoration: underline;
}
.other-products{
    padding-bottom: 110px;
}

.other-products__title{
    margin-bottom: 46px;
    text-align: center;
}
.section-title{
    font-weight: 700;
    line-height: 1.3;
    font-size:28px;
    font-family:"Playfair Display", sans-serif;
}
.other-products__cards-row{
    display:flex;
   justify-content: space-between;
}
.card {
	padding: 31px 30px 23px;
	width: 350px;
	
	
	box-shadow: 0px 10px 40px rgba(126, 155, 189, 0.3);

}

.card__img {
	
	margin-bottom: 20px;
}

.card__title {
	margin-bottom: 10px;
    min-height: 48px;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	-webkit-line-clamp: 2;
    display:-webkit-box ;
    -webkit-box-orient: vertical;
    overflow:hidden;
}

.card__details {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.card__price {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	color: #7e9bbd;
}


