/* ==========================================================
   PHIUM Luxury Card Component
========================================================== */

.phium-card{
    background:#fff;
    border:1px solid #ece4dc;
    border-radius:18px;
    padding:30px;
    transition:.35s ease;
    box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.phium-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 36px rgba(0,0,0,.08);
}

.phium-card-title{
    font-family:"Cormorant Garamond",serif;
    font-size:28px;
    color:#2b1c15;
    margin-bottom:18px;
}

.phium-card-text{
    color:#6b5d55;
    line-height:1.8;
}

.phium-card-center{
    text-align:center;
}

.phium-card-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#f8f3ee;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:28px;
    color:#c28b68;
}