/**
 * 2026 VibecommerceBr
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 *
 * @author    VibecommerceBr
 * @copyright 2026 VibecommerceBr
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

/* Loader visual no final da listagem */
.vbc-is-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px 0;
    width: 100%;
    clear: both;
    text-align: center;
}

.vbc-is-loader .vbc-is-spinner {
    font-size: 24px;
    color: #2fb5d2; /* Cor de destaque tema Classic */
    display: inline-block;
    vertical-align: middle;
    animation: vbc-spin 1s linear infinite;
}

@keyframes vbc-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.vbc-is-loader .vbc-is-loader-text {
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
    display: inline-block;
    vertical-align: middle;
}

/* Botão Carregar Mais */
.vbc-is-loadmore-wrapper {
    margin: 30px auto;
    text-align: center;
    width: 100%;
    clear: both;
}

.vbc-is-loadmore-btn {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.vbc-is-loadmore-btn.loading {
    opacity: 0.7;
    cursor: wait;
}

/* Mensagem de Término de Produtos */
.vbc-is-end-message {
    margin: 25px auto;
    padding: 12px 20px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    background-color: #f6f6f6;
    border: 1px solid #e1e1e1;
    color: #414141;
    font-size: 14px;
    border-radius: 4px;
    clear: both;
}

/* Botão Voltar ao Topo */
.vbc-gotop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: #232323;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vbc-gotop.is-visible {
    opacity: 0.9;
    visibility: visible;
    transform: translateY(0);
}

.vbc-gotop:hover {
    opacity: 1;
    background-color: #2fb5d2; /* Cor de destaque tema Classic */
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.vbc-gotop i {
    font-family: 'Material Icons', sans-serif;
    font-size: 24px;
    line-height: 1;
}
