.shop-root {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.shop-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shop-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.shop-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-empty {
    padding: 24px;
    border: 1px dashed #ccc;
    border-radius: 12px;
    text-align: center;
}
