.prices{

    padding:160px 0;

    background:var(--bg-main);

}

.prices-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.price-card{

    background:#fffdfd;

    padding:45px;

    border-radius:30px;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

    transition:.35s;

}

.price-card:hover{

    transform:translateY(-12px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.08),
        0 40px 100px rgba(212,160,178,.35);

}

.price-icon{

    font-size:42px;

    margin-bottom:20px;

}

.price-card h3{

    font-size:38px;

    margin-bottom:35px;

    font-family:"Cormorant Garamond",serif;

}

.price-line{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid #f0e7ea;

}

.price-line:last-child{

    border:none;

}

.price-line span{

    color:#7f6670;

}

.price-line strong{

    font-size:19px;

    color:#4b313b;

}

.offer-box{

    margin-top:90px;

    padding:80px;

    border-radius:35px;

    text-align:center;

    background:linear-gradient(135deg,#d98ca5,#bf6d8b);

    box-shadow:
        0 25px 70px rgba(191,109,139,.35);

    color:white;

}

.offer-box span{

    letter-spacing:4px;

}

.offer-box h2{

    margin:18px 0;

    font-size:84px;

    font-family:"Cormorant Garamond",serif;

    color:white;

}

.offer-box p{

    margin-bottom:35px;

    font-size:22px;

}

.offer-box .btn-book{

    background:white;

    color:#c46f8f;

}

.offer-box .btn-book:hover{

    background:#fff4f7;

}
@media (max-width:992px){

.prices-grid{

    grid-template-columns:1fr;

}

.price-card{

    max-width:850px;

    margin:auto;

}

}
@media (max-width:768px){

.price-card{

    padding:40px 30px;

}

.price-line{

    gap:15px;

}

.price-line span{

    font-size:16px;

}

.price-line strong{

    font-size:20px;

}

}