/*==================================================
        ROOFNEST V2
        BUTTONS
==================================================*/


/*=========================================
        Primary Button
=========================================*/

.view-btn,
.full-width-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:12px 18px;

    background:#2563eb;

    color:#fff !important;

    border:none;

    border-radius:8px;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:all .30s ease;

}

.view-btn:hover,
.full-width-btn:hover{

    background:#1d4ed8;

    color:#fff;

    transform:translateY(-2px);

}



/*=========================================
        Full Width Button
=========================================*/

.full-width-btn{

    width:100%;

    margin-top:18px;

}



/*=========================================
        Property Action Buttons
=========================================*/

.property-actions{

    display:flex;

    gap:10px;

    width:100%;

}

.property-action-btn{

    flex:1;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:12px;

    background:#f5f7fa;

    border:1px solid #dbe3ea;

    border-radius:8px;

    color:#555;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:all .30s ease;

}

.property-action-btn:hover{

    background:#e9eef5;

    border-color:#2563eb;

    color:#2563eb;

    transform:translateY(-2px);

}



/*=========================================
        Saved Button
=========================================*/

.property-action-btn.saved{

    background:#dc3545;

    border-color:#dc3545;

    color:#fff;

}

.property-action-btn.saved:hover{

    background:#c82333;

    border-color:#c82333;

}



/*=========================================
        Share Button
=========================================*/

.share-property{

    color:#2563eb;

}



/*=========================================
        Contact Buttons
=========================================*/

.call-btn,
.whatsapp-btn{

    display:block;

    width:100%;

    padding:15px;

    border-radius:10px;

    text-align:center;

    text-decoration:none;

    color:#fff;

    font-weight:600;

    transition:.30s;

}

.call-btn{

    background:#2563eb;

}

.call-btn:hover{

    background:#1d4ed8;

}

.whatsapp-btn{

    background:#22c55e;

}

.whatsapp-btn:hover{

    background:#16a34a;

}