/* =============================================
   WhatsApp Button Styles
   ============================================= */

/* Card listing button (inline with View Details) */
.btn-whatsapp-card {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.btn-whatsapp-card:hover {
    background: #1fba58;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* Gallery overlay button (transparent/glass style) */
.gallery-whatsapp-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    background: rgba(37, 211, 102, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.gallery-whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.55);
    color: white;
    transform: translateY(-2px);
}

/* Full-width solid WhatsApp button (sidebar / CTA) */
.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.875rem 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #1fba58;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Container for card action buttons */
.card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
