/* =====================================
   Grid / List View Toggle – eBuy.store
===================================== */

.eb-view-toggle {
    display: flex;
    align-items: center;
}

.eb-view-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--eb-radius-lg);
    border: 1px solid var(--eb-view-toggle-border);
    background: var(--eb-view-toggle-bg);
    color: var(--eb-view-toggle-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all .2s ease;
}

.eb-view-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    display: block;
}

.eb-view-btn:hover {
    background: var(--eb-view-toggle-hover-bg);
    color: var(--eb-view-toggle-hover-text);
}

.eb-view-btn.active {
    background: var(--eb-view-toggle-active-bg);
    color: var(--eb-view-toggle-active-text);
    border-color: var(--eb-view-toggle-active-border);
}

@media (max-width: 576px) {
    .eb-view-toggle form {
        margin: 0;
    }
}
