/* ============================================
   Advanced Store - Estilos Frontend
   ============================================ */

/* Botão WhatsApp Substituto */
.whatsapp-substituto {
    margin-top: 20px;
    display: inline-block !important;
    padding: 12px 24px;
    background-color: #25d366 !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none !important;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.whatsapp-substituto:hover {
    background-color: #128c7e !important;
    transform: translateY(-2px);
}

.whatsapp-substituto:active {
    transform: translateY(0);
}

/* Texto de Produto Esgotado */
.ast-shop-product-out-of-stock {
    color: #000 !important;
    font-weight: bold;
}

/* Tarja de Esgotado na Imagem */
.tarja-esgotado {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 9;
    animation: fadeIn 0.3s ease-in;
}

/* Animação de Entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
    .whatsapp-substituto {
        padding: 10px 20px;
        font-size: 14px;
    }

    .tarja-esgotado {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .whatsapp-substituto {
        padding: 8px 16px;
        font-size: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .tarja-esgotado {
        font-size: 14px;
    }
}