/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/*
@media (max-width: 768px) {
    .breadcrumb {
        white-space: normal;
        overflow: visible;
    }
}
*/

.woocommerce-breadcrumbs {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* A animação de brilho */
@keyframes placeholderShimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

.skeleton-box {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 104px;
    display: inline-block;
    position: relative;
    animation: placeholderShimmer 1.2s linear infinite forwards;
}

/* Exemplo de bloco de produto esqueleto */
.skeleton-product-card {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 8px;
}


