/*!
Theme Name: Suxnix
Theme URI: https://themegenix.net/wp/suxnix/
Author: ThemeGenix
Author URI: https://themeforest.net/user/themegenix/
Description: Suxnix - Health Supplement WordPress Theme
Version: 1.7
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: suxnix
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Grid de produtos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.products-grid[style*="--columns"] {
    grid-template-columns: repeat(var(--columns), 1fr);
}

@media (max-width: 992px) {
    .products-grid[style*="--columns"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid[style*="--columns"] {
        grid-template-columns: 1fr;
    }
}

/* Estilo dos itens de produto */
.product-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Paginação moderna com Flexbox */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
}

.pagination .dots {
    padding: 8px 6px;
    color: #999;
}