/* Grid spacing */
.tomi-rewards-grid.row {
    margin: 0 -10px; /* match card gutters */
}


.tomi-rewards-grid.row > .col-6,
.tomi-rewards-grid.row > .col-sm-4,
.tomi-rewards-grid.row > .col-xl-3 {
    padding: 0 10px;
}

/* Card styling still uses product__inner */
.tomi-reward-card {
    margin-bottom: 20px; /* vertical spacing */
}

/* Button styling tweak: full width like product buttons */
.tomi-reward-card .add_to_cart_button {
    width: 100%;
    text-align: center;
    background-color: #fff !important;
    color: #000 !important;
} 

/* Disabled button style inherits product style */
.tomi-reward-card .add_to_cart_button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color:#000 !important;
}

/* Make points stand out a bit */
.tomi-reward-card .product__fornecedor {
    font-weight: 700;
    font-size: 16px;
    color: var(--mainColor, #000);
    margin-top: 6px;
}

/* Responsive adjustments */
@media only screen and (max-width: 1200px) {
    .tomi-reward-card {
        flex: 1 1 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media only screen and (max-width: 768px) {
    .tomi-reward-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media only screen and (max-width: 450px) {
    .tomi-reward-card {
        flex: 1 1 100%;
        max-width: 100%;
        margin-inline: 0;
    }
}