/* ========================================
   WHATSAPP ORDER BUTTON STYLING
   ======================================== */

.hover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.thumb:hover .hover-content {
    opacity: 1;
}

/* WhatsApp Order Button */
.whatsapp-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #25D366; /* WhatsApp green color */
    color: white !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-order-btn:hover {
    background: #128C7E; /* Darker WhatsApp green */
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white !important;
    text-decoration: none;
}

.whatsapp-order-btn i {
    font-size: 20px;
}

/* Animation on hover */
.whatsapp-order-btn:hover i {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-order-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .whatsapp-order-btn i {
        font-size: 18px;
    }
}