/* ============================================================
   WhatsApp Order Button – whatsapporder module
   Designed for PrestaShop 9.x + Warehouse theme (Style 9)
   ============================================================ */

.btn-whatsapp-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 3px; /* Warehouse uses slightly squared corners */

    padding: 10px 24px;
    margin-top: 10px;
    width: auto;
    max-width: 280px;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-decoration: none !important;

    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;

    /* Sit naturally alongside the Add to Cart button */
    box-sizing: border-box;
}

.btn-whatsapp-order:hover,
.btn-whatsapp-order:focus {
    background-color: #1ebe5d;
    border-color: #1ebe5d;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-order:active {
    transform: translateY(0);
    box-shadow: none;
}

/* SVG icon */
.btn-whatsapp-order .wa-icon {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    flex-shrink: 0;
}

/* ── Pulse animation on page load to draw attention ── */
@keyframes wa-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-whatsapp-order {
    animation: wa-pulse 2s ease-out 1.2s 2;
}

/* ── Mobile tweak ── */
@media (max-width: 767px) {
    .btn-whatsapp-order {
        padding: 12px 16px;
        font-size: 13px;
    }
}
