/**
 * Estilos para imagens de produtos não encontradas
 */
.wc-product-image-not-found {
    background-color: #f8f9fa;
    border: 1px dashed #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    padding: 20px;
    box-sizing: border-box;
}

.wc-product-image-not-found::after {
    content: "\f03e";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 3rem;
    color: #dee2e6;
}

.wc-product-image-not-found::before {
    content: "Imagem não disponível";
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    color: #6c757d;
}

.product img.wc-no-image {
    background-color: #f8f9fa;
    border: 1px dashed #ced4da;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    height: auto;
}
