/* Tabs */
.rmc-vendas-tabs {
    margin-top: 10px;
}

.rmc-vendas-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rmc-vendas-tab {
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rmc-vendas-tab.is-active {
    background: #f1f1f1;
    border-color: #bbb;
}

.rmc-vendas-tab__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 12px;
    line-height: 1;
}

.rmc-vendas-tab-panel {
    display: none;
}

.rmc-vendas-tab-panel.is-active {
    display: block;
}






/* Grid View */
.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
    align-items: start;
}

/* Grid Item */
.grid-view .grid-item {
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

/* Row Break */
.row-break {
    grid-column: 1 / -1; /* Forces the row-break to span the entire grid width */
    height: 0; /* Keeps the row-break from adding unnecessary vertical space */
}

/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.store-locator-grid-item {
    padding: 15px;
    font-size: 16px;
}

.bot-menu-tire-suas-duvidas{
    background-color: #E62A44;
    padding: 10px 15px !important;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
}

/* Grid View - Two Columns by Default */
.store-locator-grid-view {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Spacing between items */
    align-items: stretch; /* Makes all items in a row the same height */
    max-width: 1200px; /* Restrict the total grid width */
    margin: 0 auto; /* Horizontally centers the grid container */
}


/* Adjust Grid for Small Screens */
@media (max-width: 991px) {
    .store-locator-grid-view {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 10px;
    }

    .store-locator-grid-item {
        padding: 15px;
    }
}
