/* Estilos para a listagem de coleções */
.colecoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.colecao-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    transition: transform 0.3s ease;
}

.colecao-item:hover {
    transform: translateY(-5px);
}

.colecao-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.colecao-title {
    font-size: 1.2rem;
    margin: 0 0 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.colecao-description {
    font-size: 0.9rem;
    color: #666;
}

/* Estilo específico para o botão Carregar Mais */
.colecoes-pagination {
    text-align: center;
    margin-top: 40px;
}

a.button.primary.load-more-colecoes {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 15px 40px; /* Ajustado para visibilidade, o user pediu 0px 40px mas 0px de padding vertical esconde o texto */
    line-height: 1;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 8px 8px 0 #57a8f2;
    border: none;
    transition: box-shadow 0.2s ease;
    cursor: pointer;
}

a.button.primary.load-more-colecoes:hover {
    box-shadow: 12px 12px 0 #57a8f2;
    color: #ffffff;
}

/* Loading state */
a.button.primary.load-more-colecoes.loading {
    opacity: 0.6;
    cursor: not-allowed;
}
